Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
PageFrames and Page events.
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00015304
Message ID:
00015376
Views:
28
>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

Sometimes I use the simple trick to prevent from clicking on something.
I put the transparent (or opaque) shape with transparent BorderStyle over those objects, and, when I need, I manipulate by shape's ZOrder method to bring it to front or send to back. That does the trick bu just one command:

thisform.shpOverMyObject.ZOrder(0)

Variations depend on your form, of course.

Nick
Nick Neklioudov
Universal Thread Consultant
3 times Microsoft MVP - Visual FoxPro

"I have not failed. I've just found 10,000 ways that don't work." - Thomas Edison
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform