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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error 1099 "Procedure cancelled"

Status
Not open for further replies.

Paco75

Programmer
Oct 11, 2001
239
US
Hi,

I got this error message but it is not documented anywhere! I looked in the msdn error messages list and it's not part of that list! o_O

any idea what this error is?

thanks
 
This seems to happen when someone is trying to access a table that is opened in exclusive... i was expecting to receive a 1705 error message but i get 1099 instead.
 
I dont use triggers in this program
 
its an old program and it use free tables. Im trying to adapt it to trap 1705 errors (someone is locking table) to allow them to wait and retry instead.
 
Ok i found the problem... it was my error handling trying to resume something inside a try/catch... the try/catch was cancelling the procedure so i could not return on the line to try again the USE command.

still strange that this error is not documented in vfp.

anyway thanks for helping! :)
 
I had this error recently - I was trying to refer to a top level form from a top level menu I used _vfp.activeform..... and it threw the error - in the end I used _screen.activeform... (vfp9 sp2) which I thought was deprecated now .. ho hum
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top