Form filters Aghhh! (1 Viewer)

paulmcdonnell

Ready to Help
Local time
Today, 12:48
Joined
Apr 11, 2001
Messages
167
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

Banned
Local time
Today, 12:48
Joined
May 16, 2001
Messages
25
Paul,
Try
Me.Filter = "App_Date = #" & ActiveXCtl134.Value & "#"
Jon
 

Users who are viewing this thread

Top Bottom