Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_INIT


Ignore:
Timestamp:
08/20/10 10:38:25 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_INIT

    v4 v5  
    2626void IDScreen(void)
    2727{
     28    string strID;
     29
    2830    FORM_INIT(ID, EventIDShow, NULL, NULL, NULL, nFormFlgShowHelp);
    2931    FORM_ADD_INPUT(ID, ID, 0, 50, "ID: ", 10, 0, 0, NULL, strID, 0, NULL, "Enter the ID");
     
    3234    FORM_RUN(ID);
    3335    FORM_HIDE(ID);
     36
     37    // strID now contains the entered data
    3438}
    3539