CellClick However, if you have code in the change event, it will also execute because it's both being changed and clicked.
You could add a Boolean property to the window (WasClicked) that becomes true when the row is clicked. Then, in the Change event, if WasClicked is true, ignore the code in the Change event. If it's false, execute the code in the Change event. >From the CellClick event, call your method and at the end of the code in the method, set WasClicked to false. _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives: <http://support.realsoftware.com/listarchives/lists.html>
