why this code work on text box and is not working with combo box. I have form with text box when I insert this code is work.
If Me.text1 <= orderDate Then
MsgBox "my message ," & vbCrLf ""vbExclamation,
"title"
but when I insert same code on combo box is not working.
If Me.combo1 <= orderDate Then
MsgBox "my message ," & vbCrLf ""vbExclamation,
"title"
what I did wrong. please help.
If Me.text1 <= orderDate Then
MsgBox "my message ," & vbCrLf ""vbExclamation,
"title"
but when I insert same code on combo box is not working.
If Me.combo1 <= orderDate Then
MsgBox "my message ," & vbCrLf ""vbExclamation,
"title"
what I did wrong. please help.