Changes between Version 18 and Version 19 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Ticket/CTktFlds
- Timestamp:
- 03/12/25 07:50:32 (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Ticket/CTktFlds
v18 v19 5 5 == Constructor == 6 6 7 {{{ 7 {{{#!c++ 8 8 CTktFlds(void); 9 9 }}} … … 15 15 ==== Examples ==== 16 16 17 {{{ 17 {{{#!c++ 18 18 CTktFlds flds; 19 19 }}} … … 26 26 Clears all references or a specified item. 27 27 28 {{{ 28 {{{#!c++ 29 29 void Clear(void); 30 30 … … 46 46 ==== Examples ==== 47 47 48 {{{ 48 {{{#!c++ 49 49 CTktFlds flds; 50 50 flds.Set(TKT_FLD_TIME, strTime); … … 53 53 }}} 54 54 55 {{{ 55 {{{#!c++ 56 56 CTktFlds flds; 57 57 flds.Set(TKT_FLD_TIME, strTime); … … 66 66 }}} 67 67 68 {{{ 68 {{{#!c++ 69 69 CTktFlds flds; 70 70 flds.Set(TKT_FLD_TIME, strTime); … … 80 80 === Set === 81 81 Sets a reference 82 {{{ 82 {{{#!c++ 83 83 void Set(int nFld, string& str); 84 84 void Set(int nFld, char* psz);