I have an app with 3 panels that change from a menu (main, setup,about)
When I select a differnt menu, the panel changes (Hard coded color to make sure which panel is active) but the contents does not show when fired.
Here is a sample when I click the about menu item.
Sub mnuPage3_Click
pnlPage1.Visible = False
pnlPage2.Visible = False
pnlPage3.Visible = True
OS.Initialize("OS")
Label1.Text=OS.AvailableMemory
Label2.Text=OS.Codename
Label3.Text=OS.Device
Label4.Text=OS.Hardware
IF I used a message box instead of a label, it gets fired.
Why does the label not show the new value?
End Sub