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


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

--

Legend:

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

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