F
Froto
I would like to change the following Code to allow a user
to be able to uncheck the checkbox should they change
there mind, right now it's not allowing them to. Help
with the code would be very much appreciated.
If Me!Check55 = True Then
Thank you
to be able to uncheck the checkbox should they change
there mind, right now it's not allowing them to. Help
with the code would be very much appreciated.
If Me!Check55 = True Then
Me!MolecularWeight.BackColor = vbYellow
Me!MolecularFormula.BackColor = vbYellow
Else
Me!MolecularWeight.BackColor = vbWhite
Me!MolecularFormula.BackColor = vbWhite
End If
If Me.Check55 = -1 Then
MolecularWeight.SetFocus
End If
Thank you