I am getting the error Arguements are of the wrong type, invalid, or out of acceptable range.
I have an ActiveX DLL that I created with VB and am calling from ASP. I have tracked the problem down to this procedure but I don't see what is wrong with it.
Here is my ASP Code
dim objbustag
dim colTag
set objbustag = server.CreateObject("Tags.BusTag"
set colTag = server.CreateObject("Tags.colTags"
objbustag.LoadTagCollection request.form("txtLicenseNumber",colTag
I thought that maybe my VB Code was not working so I commented all the code and all I am doing is passing the parameters, This is my Business object...
Public Sub LoadTagCollection(ByVal DriversLicense As Variant, colTags As Variant)
m_objDBTag.LoadTagCollection DriversLicense, colTags
End Sub
here is my Database object that the business object calls above...
Public Sub LoadTagCollection(ByVal DriversLicense As Variant, colTags As Variant)
End Sub
Like I said there is no code in the Database object So I don't see why the data types could be invalid. If you see anything wrong let me know.
thanks,
Adam
I have an ActiveX DLL that I created with VB and am calling from ASP. I have tracked the problem down to this procedure but I don't see what is wrong with it.
Here is my ASP Code
dim objbustag
dim colTag
set objbustag = server.CreateObject("Tags.BusTag"
set colTag = server.CreateObject("Tags.colTags"
objbustag.LoadTagCollection request.form("txtLicenseNumber",colTag
I thought that maybe my VB Code was not working so I commented all the code and all I am doing is passing the parameters, This is my Business object...
Public Sub LoadTagCollection(ByVal DriversLicense As Variant, colTags As Variant)
m_objDBTag.LoadTagCollection DriversLicense, colTags
End Sub
here is my Database object that the business object calls above...
Public Sub LoadTagCollection(ByVal DriversLicense As Variant, colTags As Variant)
End Sub
Like I said there is no code in the Database object So I don't see why the data types could be invalid. If you see anything wrong let me know.
thanks,
Adam