My first attempt on this board for help was trying to create a method to search using Access 10. After no response I noticed on the bottom of the topic this link which was very helpful:
<http://datapigtechnologies.com/flash...tomfilter.html>
This was my first attempt at code with Access 2010 or for that matter any program. It was easy to follow and the result was pretty decent considering I have zip experience. I did come up with a problem that's beyond me, no surprise there.
I have a button to clearer the filter and when I click on it I get this error message: "Enter a parameter value" Forms!form!myselector
Here is a code for the button (On Click):
Option Compare Database
Private Sub Command89_Click()
Me.myselector.Value = ""
Me.Requery
End Sub
______________________________
Private Sub myselector_AfterUpdate()
Me.Requery
End Sub
The following is the Query:
SELECT PERMIT.SEQNO, PERMIT.SEAL, PERMIT.PER_DATE, PERMIT.IPDATE, PERMIT.SC, PERMIT.TYPECITY, PERMIT.BLD, PERMIT.BLDNAME
FROM PERMIT
WHERE (((PERMIT.SEAL) Like [forms]![form1].[myselector] & "*"));
Hope to find some help on this forum.
I also would like to know how to create a button that will let me toggle between column view and forum view. My company was vandalized by former employee. I need this program to research the thousands of permits to determine whether the piles of documents are in the system or not. Since she also embezzled thousands of dollars I have to take it upon my self to accomplish the necessary programming. 18 years of trust down the drain.
Bob