Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Refresh on pageframes
Message
From
14/06/2001 14:13:45
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Refresh on pageframes
Miscellaneous
Thread ID:
00519586
Message ID:
00519586
Views:
57
A few years ago, we have found that Visual FoxPro doesn't refresh the pageframes when we call the Refresh() method. So, we came up with the following code in the Refresh() method:
=AMEMBER(laMember,ThisForm,2)
FOR lnCompteur=1 TO ALEN(laMember,1)
   IF UPPER(EVALUATE('ThisForm.'+ALLTRIM(laMember[lnCompteur])+'.BaseClass'))='PAGEFRAME'
      FOR lnCompteu2=1 TO EVALUATE('ThisForm.'+ALLTRIM(laMember[lnCompteur])+'.PageCount')

         * We refresh each page of the pageframe
         =EVAL('ThisForm.'+ALLTRIM(laMember[lnCompteur])+'.Page'+ALLTRIM(STR(lnCompteu2))+'.Refresh()')

      NEXT      
   ENDIF
NEXT
Any comment on that? Is that still needed? Any better approach?
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Next
Reply
Map
View

Click here to load this message in the networking platform