I'm having problems with a class in my project that was written by someone else--base class: TextBox. It's worked fine when the ControlSource has been a field in a table, but now I'm trying to use it with a cursor. I'm getting the error: #109 - Record is in use by another user.
I'm sure this is related to my cursor being created with a CREATE CURSOR command and something about it that I'm not setting correctly. There are TABLEUPDATEs performed on the cursor, forwhich I'm using:
=CURSORSETPROP "Buffering",5,"crsMyCursor")"
after the CREATE CURSOR, but is there something else I need to set to make the cursor more like a table?
I've done some debugging on my cursor and table at runtime and found the following:
For CRS:
Sys(2011) [Current Lock Status] = "Exclusive"
ISFLOCKED=.T.
For TBL:
Sys(2011) = "Record Unlocked"
ISFLOCKED=.F.
Thank you.
...SLeeP-DeP'd
I'm sure this is related to my cursor being created with a CREATE CURSOR command and something about it that I'm not setting correctly. There are TABLEUPDATEs performed on the cursor, forwhich I'm using:
=CURSORSETPROP "Buffering",5,"crsMyCursor")"
after the CREATE CURSOR, but is there something else I need to set to make the cursor more like a table?
I've done some debugging on my cursor and table at runtime and found the following:
For CRS:
Sys(2011) [Current Lock Status] = "Exclusive"
ISFLOCKED=.T.
For TBL:
Sys(2011) = "Record Unlocked"
ISFLOCKED=.F.
Thank you.
...SLeeP-DeP'd