I have two panels and two buttons. When button 1 is pressed I want panel one to show and when I press panel2 I want panel two to show. The problem arises when I put controls on each of the panels and the controls aren't showing properly within their respective panels. Could someone give a small clue on how to make this work??
public sub Button1_Click()
If panel1.visible = false then
panel1.visible=True
panel2.Visible=False
End If
End
