Query on table
Posted: Fri Aug 07, 2009 2:16 pm
by Alan Thomson >> Tue, 27 Jul 1999 23:29:02 GMT
Hi
I have a query on the use of tables --- there's probably an easy answer but it don't stare me in da face.
If I change cells in a table then the rowColumnChg event is triggered.
What I want to do is update the UI in the current form throughout execution of this event -- but I'm finding that all updates to the UI are not enacted until the event has completed.
For example if I have a statusLine1 control on the form and during execution of rowColumnChg I want to refresh what's displayed how do I do it ???
statusLine1.caption := "Loading HeeBees ..."
loadHeeBees;
statusLine1.caption := "Loading GeeBees ..."
loadGeeBees;
statusLine1.caption := "Completed loading ..."
In the above example all the user would see in the statusLine would be "Completed loading ..." instead of having the message changed throughout execution.
Regards
Alan
Hi
I have a query on the use of tables --- there's probably an easy answer but it don't stare me in da face.
If I change cells in a table then the rowColumnChg event is triggered.
What I want to do is update the UI in the current form throughout execution of this event -- but I'm finding that all updates to the UI are not enacted until the event has completed.
For example if I have a statusLine1 control on the form and during execution of rowColumnChg I want to refresh what's displayed how do I do it ???
statusLine1.caption := "Loading HeeBees ..."
loadHeeBees;
statusLine1.caption := "Loading GeeBees ..."
loadGeeBees;
statusLine1.caption := "Completed loading ..."
In the above example all the user would see in the statusLine would be "Completed loading ..." instead of having the message changed throughout execution.
Regards
Alan