Changes between Version 8 and Version 9 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/FormatGrossWt
- Timestamp:
- 03/12/25 07:40:04 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/FormatGrossWt
v8 v9 2 2 Format a string representation of the gross weight 3 3 4 {{{ 4 {{{#!c++ 5 5 string FormatGrossWt(int nScale, int nLen = 7); 6 6 … … 25 25 == Examples == 26 26 27 {{{ 27 {{{#!c++ 28 28 string strWt = FormatGrossWt(1); 29 29 DisplayText(0, 0, strWt); 30 30 }}} 31 31 32 {{{ 32 {{{#!c++ 33 33 char szWt[20]; 34 34 FormatGossWt(1, szWt);