Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Ticket/PrintTkt
- Timestamp:
- 08/26/10 09:03:03 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Ticket/PrintTkt
v2 v3 24 24 25 25 {{{ 26 string strMnt = "/mnt/fl1"; 27 if(IsMounted(strMnt) == 0) 28 { 29 DisplayText(0, 0, "Flash is not mounted"); 30 } 26 CTktFlds flds; 27 flds.Set(TKT_FLD_TIME, strTime); 28 flds.Set(TKT_FLD_GROSS, strGross); 29 PrintTkt(TKT_STD, flds); 31 30 }}} 32 31