| Version 3 (modified by , 8 years ago) ( diff ) |
|---|
FORM_RUN
Runs a form.
int FORM_RUN(formName name);
Parameters
- formName - name of the form
Return Value
- Returns a result value based on the input
Remarks
Examples
void IDScreen(void)
{
string strID = "";
float fVal = 0.0;
FORM_INIT(ID, EventIDShow, NULL, NULL, NULL, nFormFlgShowHelp);
FORM_ADD_INPUT(ID, ID, 0, 50, "ID: ", 10, 0, 0, NULL, strID, 0, NULL, "Enter the ID");
FORM_ADD_INPUT(ID, Val, 0, 80, "Value: ", 10, 0, 9999, NULL, fVal, 0, NULL, "Enter the value");
FORM_SHOW(ID);
FORM_RUN(ID);
FORM_HIDE(ID);
// strID and fVal now contain the entered data
}
EVENT(IDShow)
{
ClearLCD();
DisplayText(0, 0, "ID/Value Screen");
return 0;
}
See Also
Note:
See TracWiki
for help on using the wiki.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/cardinal.gif)