If I make a selection from a combo box and then in code set it to = "", and then test for Not IsNull() on that combo box will it be null?
Or should I be checking some other way, other than isnull()?
Dim X As Integer
For X = 2 To 6
Me("cbotbl" & (X)).Visible = False
Me("cbotbl" & (X)) = ""
Next X
'Now if I check for Not IsNull with it be null or not?
If Not IsNull(Me.cbotbl2) And Not IsNull(Me.cbotbl3) And Not IsNull(Me.cbotbl4) And Not IsNull(Me.cbotbl5) And Not IsNull(Me.cbotbl6) Then
strSQL = strSQL & " FROM ((((" & Me.cbotbl1.Column(0)
Or should I be checking some other way, other than isnull()?
Dim X As Integer
For X = 2 To 6
Me("cbotbl" & (X)).Visible = False
Me("cbotbl" & (X)) = ""
Next X
'Now if I check for Not IsNull with it be null or not?
If Not IsNull(Me.cbotbl2) And Not IsNull(Me.cbotbl3) And Not IsNull(Me.cbotbl4) And Not IsNull(Me.cbotbl5) And Not IsNull(Me.cbotbl6) Then
strSQL = strSQL & " FROM ((((" & Me.cbotbl1.Column(0)