AccessVandal via AccessMonster.com replied to KRR
23-Nov-09 01:48 AM
You insert a pagebreak control after/before near the last control where you
want to break the page.
In the last control where you break the page, use the on lost focus event
like
Private Sub ControlName_LostFocus()
DoCmd.GoToPage 2 ' go to page 2
End Sub
ControlName is the last control/textbox at the bottom of the page.
If you have more than two page, insert another pagebreak control. Again Docmd.
GoToPage 3.
As you can guess, you can also go back to page 1.
--
Please Rate the posting if helps you.
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/access-formscoding/200911/1