combo box & check box

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

fredg

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top