J
James
I have a function that works fine when based off a database. When I want to
base the function off a query it runs into a problem....2 parameters
expected
This is what I'm using
Function AddTimes()
Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("WebProxyLog1")
When I change webproxylog1 to the querys name, it has a problem cause its
not getting the 2 parameters the query needs. How do i solve this?
Thanks
base the function off a query it runs into a problem....2 parameters
expected
This is what I'm using
Function AddTimes()
Dim db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("WebProxyLog1")
When I change webproxylog1 to the querys name, it has a problem cause its
not getting the 2 parameters the query needs. How do i solve this?
Thanks