Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Un COmmited changes

Status
Not open for further replies.

rclarke

Technical User
May 14, 2001
78
0
0
GB
Hello How is every body

Could somebody explain what the error table contains uncommitted changes are and how I committ changes please.

I have tried =tableupdate() to no avail all seems to work well in VFP I only get this error when I run the exe.
 
Hi there,
Try to check the return value of tableupdate() and if it fails just issue tablerevert().
 
Hi,

IF ! TABLEUPDATE()
TABLEREVERT()
MESSAGEBOX("ERROR !!! DATA rejected.", ;
0+48,"You are saved")
ENDIF
****
Alternative...

LOCAL lDone
lDone = TABLEUPDATE()

Then do whatever you want from the value obtained in lDone.
Hope this helps
ramani :-9
(Subramanian.G)
FoxAcc
ramani_g@yahoo.com
LET KNOW IF THIS HELPED. ENOUGH EXPERTS ARE HERE TO HELP YOU OUT! BEST OF LUCK :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top