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


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

--

Legend:

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

    v5 v6  
    2626void IDScreen(void)
    2727{
    28     string strID;
     28    string strID1;
     29    string strID2;
    2930
    3031    FORM_INIT(ID, EventIDShow, NULL, NULL, NULL, nFormFlgShowHelp);
    31     FORM_ADD_INPUT(ID, ID, 0, 50, "ID: ", 10, 0, 0, NULL, strID, 0, NULL, "Enter the ID");
     32    FORM_ADD_INPUT(ID, ID1, 0, 50, "ID 1: ", 10, 0, 0, NULL, strID1, 0, NULL, "Enter the ID 1");
     33    FORM_ADD_INPUT(ID, ID2, 0, 80, "ID 2: ", 10, 0, 0, NULL, strID2, 0, NULL, "Enter the ID 2");
    3234
    3335    FORM_SHOW(ID);
     
    3537    FORM_HIDE(ID);
    3638
    37     // strID now contains the entered data
     39    // strID1 and strID2 now contain the entered data
    3840}
    3941
     
    4143{
    4244    ClearLCD();
    43     DisplayText(0, 0, "Enter ID Screen");
     45    DisplayText(0, 0, "ID Input Screen");
    4446    return 0;
    4547}