Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Activating a page on a pageframe
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00754557
Message ID:
00754695
Views:
21
You undoubtedly have your reasons for doing it that way, but if possible you may find it more convenient to put the GoToNextPage method on the form, where it is easy to maintain. Thus your Next button click code never has to change:

ThisForm.GoToNextPage()

and your GoToNextPage code can be:

LOCAL lnActivePage
DO CASE
CASE lnActivePage=3
ThisForm.pgfWizard.ActivePage=10 && if there is an exception in the order
*** Other exceptions to the natural page order
CASE lnActivePage=27 && last page - do nothing
OTHERWISE
ThisForm.pgfWizard.ActivePage=ThisForm.pgfWizard.ActivePage+1
ENDCASE
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform