Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/IsGrossWtChanged


Ignore:
Timestamp:
08/21/10 09:24:37 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v2  
    11= IsGrossWtChanged =
     2Checks whether the formatted gross weight is different from the last time IsGrossWtChanged was called.
     3
     4{{{
     5bool IsGrossWtChanged(int nScale, int nLen = 7);
     6}}}
     7
     8== Parameters ==
     9
     10 * nScale - scale number
     11 * nLen - length to format the weight
     12
     13== Return Value ==
     14
     15 * Returns true if the formatted gross weight of the specified scale is changed, or false if the formatted weight is the same as the last time IsGrossWtChanged was called.
     16
     17== Remarks ==
     18
     19
     20== Examples ==
     21
     22{{{
     23if(IsGrossWtChanged(1))
     24{
     25    DisplayText(0, 0, GetChangedGrossWt(1));
     26}
     27}}}
     28
     29
     30== See Also ==
     31
     32 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/GetChangedGrossWt GetChangedGrossWt]
     33 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/IsTareWtChanged IsTareWtChanged]
     34 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/IsNetWtChanged IsNetWtChanged]