Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is there a simple way to save non-default properties?
Message
From
10/07/2009 11:56:35
 
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01411416
Message ID:
01411422
Views:
90
This message has been marked as a message which has helped to the initial question of the thread.
>Hi everybody,
>
>Is there a simple way to get all properties that are changed on the form for some control into a convenient format? Say, I want to post a question and list all changed properties. I know I can hack the form and grab this info from there, but is there a simpler method?
>
>Thanks a lot in advance.

You could do something like (didn't test)
ln_props = AMEMBERS(la_props, lo_object, 0)
FOR EACH lc_prop IN la_props
   IF PEMSTATUS(lo_object, lc_prop, 0)
      *-- Property changed
      ? lc_prop + " Has Changed"
   ENDIF
ENDFOR
Charles

"The code knows no master." - Chuck Mautz
"Everybody is ignorant, only on different subjects." - Will Rogers
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform