search using text box

E

EdwardA

Im trying to do a wildcard search with an unbound text box
to access data out of many tables. My basic search works
fine, but when I add the ability to search with the
criterion * before or after the known values, the data
table returns no results at all on open.

Here is my code.
================================

Dim stDocName As String
Dim stLinkCriteria As String

stDocName = "STOCK_WHSE27"
ssDocName = "STOCK_OUT"
srDocName = "TECH_RMA_Log"

ssLinkCriteria = "[Model Number]=" Like "*" & Me!
[Text1] & "*"
DoCmd.OpenForm ssDocName, , , ssLinkCriteria

stLinkCriteria = "[Model Number]=" Like "*" & Me!
[Text1] & "*"
DoCmd.OpenForm stDocName, , , stLinkCriteria

DoCmd.RunCommand acCmdTileHorizontally

Exit_Command3_Enter:
Exit Sub
=================================

Any help on this would be appreciated. Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top