I have a table with column update - c(1)
I have a opened this table in 1 vfp window with the record pointer on record no. 1 with Update = 'Y'.
Now in another VFP window I open same table and manually changed Update to 'N' .
Now in the first window, run command ->
Locate for Code = 1(which is first record.)
If found()
>> Still I get Update = 'Y' in messagebox though value of column 'update' has been changed from another window.
What is the reason for such behaviour ? Does it mean that I have to write Go Top command before every locate command ?
I have a opened this table in 1 vfp window with the record pointer on record no. 1 with Update = 'Y'.
Now in another VFP window I open same table and manually changed Update to 'N' .
Now in the first window, run command ->
Locate for Code = 1(which is first record.)
If found()
messagebox(Update)
Endif >> Still I get Update = 'Y' in messagebox though value of column 'update' has been changed from another window.
What is the reason for such behaviour ? Does it mean that I have to write Go Top command before every locate command ?