pedie
Well-known Member
- Joined
- Apr 28, 2010
- Messages
- 3,875
Hi!
Below is my current code:
I cant see my controls in page1 untill i manually click on it...
is there a to make it click or show my button[controls] as it starts up?
Thanks for hellping!
Below is my current code:
I cant see my controls in page1 untill i manually click on it...
is there a to make it click or show my button[controls] as it starts up?
Thanks for hellping!
Code:
[/FONT]
[FONT=Courier New]Private Sub UserForm_Initialize()
DISALL
Me.MultiPage1.Value = 0
Me.MultiPage1.Pages(0).Enabled = True
Me.Repaint
End Sub
Sub DISALL()
Me.MultiPage1.Pages(0).Enabled = False
Me.MultiPage1.Pages(1).Enabled = False
Me.MultiPage1.Pages(2).Enabled = False
Me.MultiPage1.Pages(3).Enabled = False
End Sub
[/FONT]
[FONT=Courier New]