Combo Box

  • Thread starter Thread starter Dennis
  • Start date Start date
D

Dennis

How can I read the dirty value of a bound combo box. IE
after Ive changed the value but before the record is
saved..

Thanks in advance
 
Dennis said:
How can I read the dirty value of a bound combo box. IE
after Ive changed the value but before the record is
saved..


You can compare the combo box's Value property to its
OldValue property. If they're different, you know its
dirty.
 
Back
Top