Changes between Version 8 and Version 9 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/FormatGrossWt


Ignore:
Timestamp:
03/12/25 07:40:04 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/FormatGrossWt

    v8 v9  
    22Format a string representation of the gross weight
    33
    4 {{{
     4{{{#!c++
    55string FormatGrossWt(int nScale, int nLen = 7);
    66
     
    2525== Examples ==
    2626
    27 {{{
     27{{{#!c++
    2828string strWt = FormatGrossWt(1);
    2929DisplayText(0, 0, strWt);
    3030}}}
    3131
    32 {{{
     32{{{#!c++
    3333char szWt[20];
    3434FormatGossWt(1, szWt);