Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_SHOW
- Timestamp:
- 03/12/25 08:28:09 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_SHOW
v6 v7 2 2 Shows a form. 3 3 4 {{{ 4 {{{#!c++ 5 5 void FORM_SHOW(formName name); 6 6 }}} … … 17 17 18 18 FORM_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++ 20 20 #define FORM_SHOW(f) form##f.Show() 21 21 }}} … … 23 23 == Examples == 24 24 25 {{{ 25 {{{#!c++ 26 26 void IDScreen(void) 27 27 {