Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Stored Proceedure and Failed Trigger
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00178832
Message ID:
00178936
Views:
42
When you are working with buffering, no rules and data stores are produced until you no run a TableUpdate() (or TableRevert() to discard the changes)

To activate buffering do the follow:
Open Database mydatabase
Use mytable In 0 Alias mytable Shared
CursorSetProp( "buffering", 5, "mytable" ) && This line activate the buffering
...
***** Work with the table like you need it
...
*** When no more changes
If AcceptChanges  && thats means if you (or user) want to save the changes
    TableUpdate()
Else
    TableRevert()
EndIf
For more and best information go to VFP help index and take a look to TableUpdate, TableRevert, CursorSetProp, And every "See Also" theme.

Good Luck!
Lic. Esteban Bruno
Gerente de Sistemas
TASSO S.R.L.
Previous
Reply
Map
View

Click here to load this message in the networking platform