grid_event_call in wxEuphoria
- Posted by SDPringle Mar 21, 2014
- 1300 views
procedure onClick_CellInTimeTable( atom this, atom event, atom it, atom event_type ) printf( 1, "Cell in table clicked : ", {} ) ? grid_event_cell( event ) end procedure set_event_handler( TimeTable, get_id( TimeTable ), wxEVT_GRID_CELL_LEFT_CLICK, routine_id("onClick_CellInTimeTable") )
I am trying to get the coordinates of a grid cell in an event handler in wxEuphoria. This call though only results in a crash. Anybody know how to do this?