Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
PageFrames and Page events.
Message
De
17/12/1996 00:02:50
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
PageFrames and Page events.
Divers
Thread ID:
00015304
Message ID:
00015304
Vues:
75
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform