Board index » delphi » What is the "Cell Edit" event?
Roland
![]() Delphi Developer |
Roland
![]() Delphi Developer |
What is the "Cell Edit" event?2004-09-05 12:45:38 AM delphi80 While manually entering/changing text in a cell, changing Application.Calculation (for example) causes MSProject to crash. My question is, what is the event that signals that a cell is being edited? And correspondingly, which event occurs when edit mode is finished/cancelled. TIA. |
JackD
![]() Delphi Developer |
2004-09-08 12:49:01 AM
Re:What is the "Cell Edit" event?
There is no publically available "event" that signals that an edit is in
process. I also can't get project to change application.calculation while an edit is in progress. My advice is to not do that. -Jack "Roland" <roland@nospam>writes QuoteWhile manually entering/changing text in a cell, changing |
Roland
![]() Delphi Developer |
2004-09-08 04:07:37 AM
Re:What is the "Cell Edit" event?
Well, obviously ;)
Problem is the Application.Calculation is changed when the user presses a button, and s/he can do that even when an edit is in progress! Even a TRY...EXCEPT clause won't 100% help, since the error may not actually be related to an edit-in-progress. "JackD" <momokuri@gmail>writes QuoteThere is no publically available "event" that signals that an edit is in |