AndrewMozley
Programmer
I have a class MyClass with a private data session; in its INIT() method, mytable.dbf is opened (USE Mytable in 0).
There is a screen Myscreen.scx which itself opens Mytable (In Datasession #1, perhaps). It then creates an instance of MyClass (with Datasession #8, say). In due course MyScreen makes changes, perhaps adding a record NewRec1 to Mytable in DataSession #1.
When Myscreen calls a function in MyClass - say MyClass.Search() - the Search() function cannot see record NewRec1. I understand that; However I would like Search() to be able to see record NewRec1.
Is that possible? Is there a facility for refreshing the cursor for MyTable in DataSession #8?
Thank you