Hi (again!)
I am getting there with my new database, however one thing eludes me. I have a tabbed control <TabCtl0> with 4 pages which are related to the first page. Two of the pages only contain a subform (nothing else). I have a "Next" button which navigates through all the pages using the following code:
If Me.TabCtl0 < Me.TabCtl0.Pages.Count - 1 Then
Me.TabCtl0 = Me.TabCtl0 + 1
Else
Me.TabCtl0 = 0
This works perfectly, however, on the pages with the subforms on them it is not visible because the subforms are on top of it; which is fine and that is the way I need it to be. (I do not want to move the button)
The problem is, how do I create another button within the subforms that does the same as the code above.
Thanks,
cG
I am getting there with my new database, however one thing eludes me. I have a tabbed control <TabCtl0> with 4 pages which are related to the first page. Two of the pages only contain a subform (nothing else). I have a "Next" button which navigates through all the pages using the following code:
If Me.TabCtl0 < Me.TabCtl0.Pages.Count - 1 Then
Me.TabCtl0 = Me.TabCtl0 + 1
Else
Me.TabCtl0 = 0
This works perfectly, however, on the pages with the subforms on them it is not visible because the subforms are on top of it; which is fine and that is the way I need it to be. (I do not want to move the button)
The problem is, how do I create another button within the subforms that does the same as the code above.
Thanks,
cG