Put PROPERTY PageControlID ACTIVEPAGEINDEX 1
in the ON EXIT EEP of the last control to move to the second page. Page counting starts with 0, so page 1 is index 0, and so on. Actually, you probably want to put a dummy control after the last one, and put the code in the ON ENTRY EEP of that control, to allow backtabbing from the last control on your page. You can take all kinds of clever action this way, like skipping directly to the third page if some data on the first page tells you that the second page is not needed. -- Larry
