Hello,
I am getting "Type Mismatch" when passing an objects from my ASP page to my DLL.
my ASP code:
and my DLL code (receiving):Code:
Set oTimeSheet = Server.CreateObject("TimeTrack.cTimeSheet")
....
.... do something with object
....
oTimeSheets.Additem oTimeSheet
Code:
Public Function AddItem(vTimeSheet As cTimeSheet)
What is wrong with this? Please help!!!!!
