meaning of timer-- ??

Papabravo

Joined Feb 24, 2006
21,225
In this case it does not matter, but the decrementing of Timer1 happens AFTER the value of Timer1 is used in the expression. If the decrement operator is placed before the expression then the decrementing takes place BEFOR the expression is used.
Rich (BB code):
Timer1--     // A post-decremnt operation
--Timer1     // A pre-decremnt
 
Top