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


Ignore:
Timestamp:
08/25/10 08:04:39 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v2  
    11= ResetPrevGrossWt =
     2Resets the previous time so the next call to IsTimeChanged will return true.
     3
     4{{{
     5void ResetPrevGrossWt(void);
     6
     7void ResetPrevGrossWt(int nScale);
     8}}}
     9
     10== Parameters ==
     11
     12 * nScale - scale to reset
     13
     14Version with no parameter will reset all scales.
     15
     16== Return Value ==
     17
     18This function does not return any result.
     19
     20== Remarks ==
     21
     22
     23== Examples ==
     24
     25{{{
     26// After clearing a menu display reset the previous gross weight so the gross will be redrawn right away
     27ResetPrevGrossWt();
     28}}}
     29
     30
     31== See Also ==
     32
     33 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/IsGrossWtChanged IsGrossWtChanged]
     34 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/ResetPrevTareWt ResetPrevTareWt]
     35 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/ResetPrevNetWt ResetPrevNetWt]
     36