Hello,

I am getting "Type Mismatch" when passing an objects from my ASP page to my DLL.

my ASP code:

Code:
Set oTimeSheet = Server.CreateObject("TimeTrack.cTimeSheet")
....
.... do something with object
....
oTimeSheets.Additem oTimeSheet
and my DLL code (receiving):

Code:
Public Function AddItem(vTimeSheet As cTimeSheet)

What is wrong with this? Please help!!!!!