G
Guest
Hello!
I have a 'tab control' on a form. I have (3) pages for the tab control.
Page (1) has a form that I 'dragged & dropped' on the form. This form uses a
'table' set as the form's 'record source'. I can add & delete records on
this form. I want to 'requery' this form (i.e., after I have gone to another
page with forms to query the table for items I check and can delete from this
page). When I go back to the Page (1) form, of course it has the '#delete'
there. I want to 'update' the form on Page (1) with the 'current' table but
I want to do it 'on the fly' from the previous page (i.e., in the
'tab_Change()' event) .
I can get basically to this point...
Private Sub tabControlContainer_Change()
If (Me.tabControlContainer.Value = 0) Then
Me.tabControlContainer.Pages(0) ... 'Lost after this!!
End If
End Sub
I have a 'tab control' on a form. I have (3) pages for the tab control.
Page (1) has a form that I 'dragged & dropped' on the form. This form uses a
'table' set as the form's 'record source'. I can add & delete records on
this form. I want to 'requery' this form (i.e., after I have gone to another
page with forms to query the table for items I check and can delete from this
page). When I go back to the Page (1) form, of course it has the '#delete'
there. I want to 'update' the form on Page (1) with the 'current' table but
I want to do it 'on the fly' from the previous page (i.e., in the
'tab_Change()' event) .
I can get basically to this point...
Private Sub tabControlContainer_Change()
If (Me.tabControlContainer.Value = 0) Then
Me.tabControlContainer.Pages(0) ... 'Lost after this!!
End If
End Sub