Changes between Version 18 and Version 19 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Ticket/CTktFlds


Ignore:
Timestamp:
03/12/25 07:50:32 (4 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Ticket/CTktFlds

    v18 v19  
    55== Constructor ==
    66
    7 {{{
     7{{{#!c++
    88CTktFlds(void);
    99}}}
     
    1515==== Examples ====
    1616
    17 {{{
     17{{{#!c++
    1818CTktFlds flds;
    1919}}}
     
    2626Clears all references or a specified item.
    2727
    28 {{{
     28{{{#!c++
    2929void Clear(void);
    3030
     
    4646==== Examples ====
    4747
    48 {{{
     48{{{#!c++
    4949CTktFlds flds;
    5050flds.Set(TKT_FLD_TIME, strTime);
     
    5353}}}
    5454
    55 {{{
     55{{{#!c++
    5656CTktFlds flds;
    5757flds.Set(TKT_FLD_TIME, strTime);
     
    6666}}}
    6767
    68 {{{
     68{{{#!c++
    6969CTktFlds flds;
    7070flds.Set(TKT_FLD_TIME, strTime);
     
    8080=== Set ===
    8181Sets a reference
    82 {{{
     82{{{#!c++
    8383void Set(int nFld, string& str);
    8484void Set(int nFld, char* psz);