Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Table doesn't update? 1

Status
Not open for further replies.

shanzen

Programmer
Apr 1, 2001
9
GB
Hi

I would like to know if Table.Post would do the update once I insert or edit or append? Cause it doesn't seem to refresh itself through retrieving codes.

I had to quit the entire program, then execute it again for it to work. So, I guess the update isn't applied yet.

Can anyone help me please? Thank you for your kind attention.
 
I've had the same problem
What seemed to works was

table1.post;
table1.active := true;

even if it was true, this appears to refresh the table
 
Thanks a million, it did the trick.

table1.post;
table1.active := false;
table1.active := true;

:-V
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top