Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Refresh order for shapes
Message
From
15/08/2005 19:06:45
 
 
To
15/08/2005 18:59:17
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
01041107
Message ID:
01041180
Views:
25
This message has been marked as the solution to the initial question of the thread.
>** page.click
>this.refresh
>
>I also tried deleteing the above code and replacing it with
>
>** page.activate
>this.refresh
>
this is ok
>
Well:
* Page refresh Method
NODEFAULT
Thisform.Lockscreen = .T.
Page::Refresh
Thisform.Lockscreen = .F.
You can leave the Form.Refresh code.

The nature of LockScreen is of a semaphore,
but unfortunately VFPT implement it as a simple flag.

If you want, you can use this:
* Page refresh Method
NODEFAULT
IF m.Thisform.Lockscreen
 Page::Refresh
ELSE
 Thisform.Lockscreen = .T.
 Page::Refresh
 Thisform.Lockscreen = .F.
ENDIF
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform