View Full Version : Form filters Aghhh!


paulmcdonnell
05-26-2001, 07:54 AM
Forgive my ignorance but all I'm trying to do is filter a form using the dates on my continuous form being equal to a text box (which has teaken a date from a CALENDAR). I use this

Private Sub Command141_Click()
Me.[Text139] = ActiveXCtl134.Value
Me.Filter = "App_date = [Text139]"
Me.FilterOn = True
End Sub

Obviously this isn't working but any Gurus out there who know how I have to change this?

Many thanks
Paul

Jon Holmes
05-28-2001, 07:08 AM
Paul,
Try
Me.Filter = "App_Date = #" & ActiveXCtl134.Value & "#"
Jon