Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Allow user to Filter on Form with Button 2

Status
Not open for further replies.

appelq

IS-IT--Management
Dec 28, 2004
72
0
6
US
There may be a better way to solve the problem and I am open to any ideas.
In short the problem:
I have a form that tracks "Containers" when they come to our yard.
A container may come and go many times or the course of time.
My user would like to enter the Container Number and have the form show him all of the Instances of that Container Number.

So I added a button on the form [Search] with this code:
Private Sub cmdSearch_Click()
Dim strSQL As String
Dim strName

strName = InputBox("Enter Container No to Find: ")

strSQL = "SELECT ContID FROM dbo_tblContainers " & _
" WHERE ContNo = '" & strName & "';"

Me!Filter = strSQL
Me!FilterOn = True

End Sub

I get an error:
Runtime error 2465 Can't find the field "Filter" referred to in your expression.
Debug drops me on the line : Me!Filer = strSQL

Will also need a way to easily remove the filter once they are done.

Thanks,
Chuck

 
The filter property should only be the stuff that immediately follows the "WHERE ". I would provide a combo box to allow the user to select a container number.

Code:
Sub cmdSearch_Click()
 Dim strSQL As String
 Dim strName
 
 strName = InputBox("Enter Container No to Find: ")
 
 strSQL = "ContNo = '" & strName & "';"

 Me!Filter = strSQL
 Me!FilterOn = True
 
End Sub

Duane
Hook'D on Access
MS Access MVP
 
Thanks! That did the trick.
Chuck
 
Thanks! That did the trick
That is not completely true. You had to fix something else.

The original problem was here
Me!Filter = strSQL
Me!FilterOn = True

The bang operator can be used with collections or field names, but not properties. Filter and FilterOn are properties.
That is exactly why the error says you cannot find a field named "filter", because Me!filter would mean you are referring to a field named filter. In order to make this work you would have also had to change it to
Me.Filter = strSQL
Me.FilterOn = True
 
appelq,
Now you need to give 2 stars for the help received.

Click on "Great Post? Star it" to award the stars

Have fun.

---- Andy

A bus station is where a bus stops. A train station is where a train stops. On my desk, I have a work station.
 
MajP,
You are correct. I noticed that as an aside and changed the ! to . on both lines.

Thanks,
Chuck
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top