On Nov 21, 2006, at 1:29 AM, Rubber Chicken Software Co. wrote:
I'm kind of hijacking this thread a bit (forgive me), but how do you make the Row highlighted BEFORE the CellClick event ends? I often have code in the CellClick that creates a delay, and I think the user would want to at least see that he selected SOMETHING, instead of waiting for some operation to finish.
You could put your code in the action event of a timer and it would then run after the event is finished. You would set the Mode of the timer to 1 during the CellClick event.
It is generally not a good idea to interrupt the built in events in many cases. This might be one. You can also use properties to set the flow of your code after the event has finished.
Terry _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
