I'm trying to hook into an event generated when the sheet cell contents are changing - such as when the user is typing something in.
The obvious suspect is:
wxEVT_SHEET_CELL_VALUE_CHANGING
But hooking into that seems to give identical behaviour to
wxEVT_SHEET_CELL_VALUE_CHANGED
So as it stands, unless the user clicks another cell or tabs out of the cell, the program remains unaware that cell contents were being modified.
The end result is that the app can miss the last change the user made before say, quitting a dialog.
Any ideas much appreciated. Thanks.
The obvious suspect is:
wxEVT_SHEET_CELL_VALUE_CHANGING
But hooking into that seems to give identical behaviour to
wxEVT_SHEET_CELL_VALUE_CHANGED
So as it stands, unless the user clicks another cell or tabs out of the cell, the program remains unaware that cell contents were being modified.
The end result is that the app can miss the last change the user made before say, quitting a dialog.
Any ideas much appreciated. Thanks.