How can I pass a parameter into a stored procedure from some VBA?
I need to have a button on an entry form for file number lookups. It was previously done in a query with a user prompt.
The application is now Access2003 with SQL2005 as a back end and I cannot seem to be able to do the same thing with a view.
Thanks
John Fuhrman
I need to have a button on an entry form for file number lookups. It was previously done in a query with a user prompt.
The application is now Access2003 with SQL2005 as a back end and I cannot seem to be able to do the same thing with a view.
Code:
SELECT Tracking_ID, NetworkLogonID, MachineName, BoxNumber, FileNumber, TrackingDate
FROM dbo.tblTrackingTable
WHERE (FileNumber LIKE N'% & [Enter File Number]')
Thanks
John Fuhrman