G
Greg Staley
Can someone tell me why I'm getting a run time error 2455 here?
Private Sub cboFilterDate_AfterUpdate()
Dim strWhere As String
If Me.Dirty Then
Me.Dirty = False
End If
If IsNull(Me.cboFilterDate) Then
Me.FilterOn = False
Else
strWhere = "date=" & _
Format(Me.cboFilterDate, "\#mm\/dd\/yyyy\#")
Me.Filter = strWhere
Me.FilterOn = True
End If
End Sub
This is an attempt to use a combo ox to locate records that I can update on
a form.
Greg
The Always Access Confused
Private Sub cboFilterDate_AfterUpdate()
Dim strWhere As String
If Me.Dirty Then
Me.Dirty = False
End If
If IsNull(Me.cboFilterDate) Then
Me.FilterOn = False
Else
strWhere = "date=" & _
Format(Me.cboFilterDate, "\#mm\/dd\/yyyy\#")
Me.Filter = strWhere
Me.FilterOn = True
End If
End Sub
This is an attempt to use a combo ox to locate records that I can update on
a form.
Greg
The Always Access Confused