jimlef Messages: 90 Registered: September 2020 Location: US
Member
Thank you, Koldo, for that. I'm not sure how I'd implement any of those with
the TopWindow classes as I don't have much experience with all of this.
I'm using one window class to modify linked tables in my db. I have other window
classes that can view and manipulate those tables individually.
If I create a new record, it will affect at least 2 tables. I want the views of
each of the affected tables to requery each time they are accessed. Currently, if
I create a new record, and then go to view one of the affected tables, it does not
show the new record. I have to exit the program, then rerun to see it.
I haven't found a function that relates to the Open() command that causes it to
re validate it's data... so when I lineitemview.Open(this) it should requery each
time, which is why I was looking for a way for the one class to access functions
from the other classes (ie. ReQuery).