Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can I create a VIEW from a free table?
Message
 
To
19/04/1999 13:42:25
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00209037
Message ID:
00209774
Views:
37
It sounds like what you are doing is fine for network apps, but you don't need views if you are just buffering the changes for updates.

For Example:

#DEFINE TableBuffer 5
USE FREE.DBF
=CursorSetProp('Buffering',TableBuffer,'FREE')

* Code to make changes

IF MessageBox("Commit Changes?",36) = 6
=TableUpdate(.T.,.T.,'FREE')
ELSE
=TableRevert(.T.,'FREE')
ENDIF
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform