I wonder if anyone can help. I have a user form with two pages and a number of controls including text boxes and check boxes. I'm trying to give focus to the first page (page0) on intialization by using the procedure
Sub UserForm_Initialize()
MyMulti.Value = 0
End Sub
This produces a run error 242 stating object is required. If I then try to give focus to a ComboBox on the first page using
Ip_Cmb_Volt.SetFocus
I get another runtime error 2110 stating the control is invisible or not enabled. I've tried changing the properties to no avail. Can anyone help?
DaveFish
Sub UserForm_Initialize()
MyMulti.Value = 0
End Sub
This produces a run error 242 stating object is required. If I then try to give focus to a ComboBox on the first page using
Ip_Cmb_Volt.SetFocus
I get another runtime error 2110 stating the control is invisible or not enabled. I've tried changing the properties to no avail. Can anyone help?
DaveFish