G
Gojavid
I have a form with a multipage with pages names page1, page2, etc...
and I have a button on the form that makes the next page visible if
information is entered onto the first page. Is there code to make
page2 as the focus when the button is pushed.
I have code:
Dim page2 As Object
Set page2 = MultiPage1.page2
If page1.visible = False And ComboBox1 <> "" Then
page2.visible = True
currently all it does is add the page, it doesn't change the focus
from page1
I'm looking for something like this...
Dim page2 As Object
Set page2 = MultiPage1.page2
If page1.visible = False And ComboBox1 <> "" Then
page2.visible = True
??page2.activate??
Any ideas?
and I have a button on the form that makes the next page visible if
information is entered onto the first page. Is there code to make
page2 as the focus when the button is pushed.
I have code:
Dim page2 As Object
Set page2 = MultiPage1.page2
If page1.visible = False And ComboBox1 <> "" Then
page2.visible = True
currently all it does is add the page, it doesn't change the focus
from page1
I'm looking for something like this...
Dim page2 As Object
Set page2 = MultiPage1.page2
If page1.visible = False And ComboBox1 <> "" Then
page2.visible = True
??page2.activate??
Any ideas?