Hi All,
I have a very simple question. I have a command button that triggers a GUI:
Private Sub CommandButton1_Click()
TradeEntryUserForm.Show
End Sub
MY GUI automatically displays four different frames. There are four different checkboxes on the GUI such that if you select 1, frame 1 appears, if you select 2, frame1 + frame 2 appears, if you select 3, frame 1+frame2+frame3 appears.
I want to preload my GUI such that checkbox 1 is selected and that only 1 frame appears. If I click on checkbox1 after the GUI pops up this occurs.
I tried this but it didn't work:
Private Sub CommandButton1_Click()
TradeEntryUserForm.Show
TradeEntryUserForm.CheckBox1 = True
End Sub
Any thoughts?
Much appreciated,
L
Bookmarks