Article # 464, added by Geoworks, historical record
| first |
previous |
index |
next |
last |
How can I make a Table cell accept ink input?
Q. How can I make a Table cell accept ink input? A. Add a line like this to your MSG_TABLE_START_EDIT_CELL_TEXT method: @call MyTableView::MSG_GEN_VIEW_SET_INK_TYPE(GVIT_QUERY_OUTPUT); Then do something similar for MSG_TABLE_STOP_EDIT_CELL_TEXT: @call MyTableView::MSG_GEN_VIEW_SET_INK_TYPE(GVIT_PRESSES_ARE_NOT_INK); Make sure to @callsuper() before each of the above.