Combo Box

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
 
M

Marshall Barton

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.
 
Top