Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/FormatNetWt


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

--

Legend:

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

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