How to calculate the order in which the data was entered in textboxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

For exampl
Let us assume there are 3 textboxes bound to 3 different fields
These 3 textboxes automtatically get the value through automatic formula(summation of values from other textboxes
How to determine the order in which they got populated
If I know the order in which the textboxes got populated like first, second and third then I ca
write other events based on the order
Is this possible through only Arrays if so how
 
If all the textboxes are bound to Outlook properties, then you can use the
CustomPropertyChange and PropertyChange events to test the order. However, I
wouldn't assume that it would be consistent. You may be better off using
code rather than automatic formulas.
--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



Ravi said:
For example
Let us assume there are 3 textboxes bound to 3 different fields.
These 3 textboxes automtatically get the value through automatic
formula(summation of values from other textboxes)
 
Back
Top