Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_SHOW


Ignore:
Timestamp:
03/12/25 08:28:09 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v6 v7  
    22Shows a form.
    33
    4 {{{
     4{{{#!c++
    55void FORM_SHOW(formName name);
    66}}}
     
    1717
    1818FORM_SHOW is a macro to simplify the initial showing of a form. The preprocessor will convert this to a call to the specified form's Show() function.
    19 {{{
     19{{{#!c++
    2020#define FORM_SHOW(f) form##f.Show()
    2121}}}
     
    2323== Examples ==
    2424
    25 {{{
     25{{{#!c++
    2626void IDScreen(void)
    2727{