nca_edit_click
| Edit and Edit Box Object Functions |
Clicks in an edit object.
int nca_edit_click( LPCSTR edit );
| edit | The logical name of the edit object. |
The nca_edit_click function clicks inside the specified edit object to place the cursor within the box. Once the cursor is in the box, the user can either type a value or select one from a list of values.
Return Values
Parameterization
The following variable can be parameterized using standard parameterization: edit
Example
In the following example, the nca_edit_click function clicks in the Currency edit box. The user then clicks Find and selects USD as a currency code.
nca_edit_click("GLXJEENT.FOLDER_QF.CURRENCY_CODE.0");nca_button_press("GLXJEENT.TOOLBAR.LIST.0");nca_lov_retrieve_items("Currencies",1,9);nca_win_close("Currencies");nca_edit_set("GLXJEENT.FOLDER_QF.CURRENCY_CODE.0", "USD");

