combo box & check box

  • Thread starter Thread starter LT
  • Start date Start date
L

LT

I have a check box (labeled "corrected") that I want to automatically become
checked when I make a different selection in the combo box next to it. Is
there a way to do this? Maybe a macro? Essentially, I just want some sort of
flag or indication that the information in the form has been changed.
 
I have a check box (labeled "corrected") that I want to automatically become
checked when I make a different selection in the combo box next to it. Is
there a way to do this? Maybe a macro? Essentially, I just want some sort of
flag or indication that the information in the form has been changed.

When you make "any" change in the combo box?
Code the combo Box AfterUpdate event:

Me.[Corrected] = -1

Of what value is this? What then happens the next time someone changes
the combo box value? What happens if someone changes the combo value
in error, then immediately set's it back to whatever the value was?
Is the [Corrected] value saved in a table? You could then make changes
all day long and then set it back to the original value and it will
show as Corrected = -1.
 
Back
Top