Quote:
Originally Posted by davin2929
Here is what I have to test for Text Box and Combo box to both have values populated in them. It's not working. Any ideas why? (Items selected I received an error so I removed).
If IsNull(Me.txtOrg) Then
varResponse = MsgBox("Please populate Org ID Field, If you wish to continue without populating the field hit OK otherwise hit Cancel and populate the ORG ID field", vbOKCancel)
If varResponse = vbCancel Then
Me.txtOrg.SetFocus
Else
If (Me.Combo574 = 0) Then
typeResponse = MsgBox("Please populate Audit Type", vbOKOnly)
Else
DoCmd.GoToRecord , , acNewRec
End If
End If
|
Try
If IsNull(Me.Combo574.value) Then