ChrisHaynes
Technical User
I'm fairly new to Access but have been trying to create a hardware database for work.
I have one main form and then 3 separate forms for each type of hardware(Printers, Scanners, Routers). Each form contains records with relevant fields for each hardware type. For example, the printer form contains these fields:
-Department
-Printer Name
-Manufacturer
-Model
-Printer Type
-Colour Type
(This information is all linked to a table)
On the main form, I am trying to create a search tool for each hardware type. What I am trying to for each hardware type is:
-Have a combo box listing each field (Department, Printer Name, Manufacturer etc) with the label 'Printer Search By'
-and then a Text box in which you enter your search criteria called 'Printer Search For'
-and then a command button next to it called 'cmd_printergo' which will open the hardware form and look in the field chosen in the combo box and display all the records containing the criteria.
For example if I wanted to find all HP printers, I would select 'Manufacturer' in the 'Printer Search By' combo box, then type in 'HP' in the 'Printer Search For' text box.
I have tried using a macro in the command button (cmd_printergo) which opens the Printer form and then uses a filter. However I seem limited to only being able to use a particular field and can't get it to look in the 'Search by' combo box and search in only the corresponding field.
I have also tried using this code in visual basic behind the command button;
Private Sub cmd_printergo_Click()
DoCmd.OpenForm strfrm_printer, , , Me![Printer Search By combo name] & "='" & Me![Printer Search For control name] & "'"
End Sub
However this does not work and i'm getting another error as follows;
'Microsoft Access can't find the field 'Search By combo name' referred to in your expression'
Any help will be greatly appreciated!!!
I have one main form and then 3 separate forms for each type of hardware(Printers, Scanners, Routers). Each form contains records with relevant fields for each hardware type. For example, the printer form contains these fields:
-Department
-Printer Name
-Manufacturer
-Model
-Printer Type
-Colour Type
(This information is all linked to a table)
On the main form, I am trying to create a search tool for each hardware type. What I am trying to for each hardware type is:
-Have a combo box listing each field (Department, Printer Name, Manufacturer etc) with the label 'Printer Search By'
-and then a Text box in which you enter your search criteria called 'Printer Search For'
-and then a command button next to it called 'cmd_printergo' which will open the hardware form and look in the field chosen in the combo box and display all the records containing the criteria.
For example if I wanted to find all HP printers, I would select 'Manufacturer' in the 'Printer Search By' combo box, then type in 'HP' in the 'Printer Search For' text box.
I have tried using a macro in the command button (cmd_printergo) which opens the Printer form and then uses a filter. However I seem limited to only being able to use a particular field and can't get it to look in the 'Search by' combo box and search in only the corresponding field.
I have also tried using this code in visual basic behind the command button;
Private Sub cmd_printergo_Click()
DoCmd.OpenForm strfrm_printer, , , Me![Printer Search By combo name] & "='" & Me![Printer Search For control name] & "'"
End Sub
However this does not work and i'm getting another error as follows;
'Microsoft Access can't find the field 'Search By combo name' referred to in your expression'
Any help will be greatly appreciated!!!