Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Ticket/CTktFlds


Ignore:
Timestamp:
11/23/10 10:41:40 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v2 v3  
    5050flds.Set(TKT_FLD_GROSS, strGross);
    5151PrintTkt(TKT_STD, flds);
    52 
    53 // Clear the entire flds object to start over
    54 flds.Clear();
    55 flds.Set(TKT_FLD_TIME, strTime);
    56 flds.Set(TKT_FLD_NET, strNet);
    57 PrintTkt(TKT_ALT, flds);
    5852}}}
    5953
     
    6256flds.Set(TKT_FLD_TIME, strTime);
    6357flds.Set(TKT_FLD_GROSS, strGross);
    64 PrintTkt(TKT_STD, flds);
     58flds.PrintTkt(TKT_STD, flds);
     59
     60// Clear the entire flds object to start over
     61flds.Clear();
     62flds.Set(TKT_FLD_TIME, strTime);
     63flds.Set(TKT_FLD_NET, strNet);
     64flds.PrintTkt(TKT_ALT);
     65}}}
     66
     67{{{
     68CTktFlds flds;
     69flds.Set(TKT_FLD_TIME, strTime);
     70flds.Set(TKT_FLD_GROSS, strGross);
     71flds.PrintTkt(TKT_STD);
    6572
    6673// Clear the gross weight reference so it will not print on the alternate ticket, time will still print
    6774flds.Clear(TKT_FLD_GROSS);
    6875flds.Set(TKT_FLD_NET, strNet);
    69 PrintTkt(TKT_ALT, flds);
     76flds.PrintTkt(TKT_ALT);
    7077}}}
    7178