Hi
I lock a record in a table (alias 5) with rlock().
Then I do the following code in a form to check no one is editing another record.
select 5
seek val(thisform.contractselect.value) order tag contractid
if found()
if rlock() = .t.
unlock record recno() in 5
endif
endif
However, this recently has stopped working.
Anyone know why?
I just do not know why.
Please help.
I lock a record in a table (alias 5) with rlock().
Then I do the following code in a form to check no one is editing another record.
select 5
seek val(thisform.contractselect.value) order tag contractid
if found()
if rlock() = .t.
unlock record recno() in 5
endif
endif
However, this recently has stopped working.
Anyone know why?
I just do not know why.