Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
PageFrames and Page events.
Message
From
17/12/1996 00:02:50
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Other
Title:
PageFrames and Page events.
Miscellaneous
Thread ID:
00015304
Message ID:
00015304
Views:
71
don't want to enable the user to go to another page if they are in edit mode. Can't seem to find the right combo of events/properties to go back to the page they were previously on when they are in edit mode.

Has anyone done this?

What i've got thus far is a form property which keeps track of the current page. It is set in the activate event of each page, after a check to see if they're in editmode and clicked on a different page. The message box shows okay, but the new page clicked retains focus.

If there were a PostEvent function like in PB this would be a piece o' cake. How is it done in VFP 5.0???

Thanks, Kim

IF thisform.editmode AND THISFORM.LastActivePage <> 1
MessageBox("Please Save or Cancel the current edit," + CHR(13) + ;
"before switching to this tab.", 16, "Sorry...")
DO CASE
CASE THISFORM.LastActivePage = 2
THISFORM.pgfOptions.Page2.Click()
CASE THISFORM.LastActivePage = 3
THISFORM.pgfOptions.Page3.Click()
ENDCASE
RETURN
ENDIF
Next
Reply
Map
View

Click here to load this message in the networking platform