I was given the task at my office of porting data from an Access Database into our SQL Server while keeping the data linked to an Access Project to use the forms already written.
This I have done, but in so doing created several problems in the code that I have not been able to quickly overcome.
The problem that I need help with is that, when a button is clicked on the main form, a report is supposed to open up based on the information put into the form. The report opens, but it does not filter the results based upon the where clause I put into it, it shows the entire table.
I have set a messagebox to show the query, and it is good SQL:
Has anyone else had this problem, and if so how did you work around it/fix it?
Thanks in advance.
This I have done, but in so doing created several problems in the code that I have not been able to quickly overcome.
The problem that I need help with is that, when a button is clicked on the main form, a report is supposed to open up based on the information put into the form. The report opens, but it does not filter the results based upon the where clause I put into it, it shows the entire table.
I have set a messagebox to show the query, and it is good SQL:
Code:
[item_no] = '19250' AND [Serial_No] = '0712345'
Has anyone else had this problem, and if so how did you work around it/fix it?
Thanks in advance.