Do you know anything about this error. I get it when i try to use my own dll from an ASP page.
****************************************************
'800a005b'
Object variable or With block variable not set
****************************************************
This dll works fine from the VB 6.0 IDE. I even registered this .dll with MTS and have the following code in my dll:
*****************************************************
Implements ObjectControl
Private objContext As ObjectContext
Private Sub ObjectControl_Activate()
Set objContext = GetObjectContext()
End Sub
Private Function ObjectControl_CanBePooled() As Boolean
ObjectControl_CanBePooled = False
End Function
Private Sub ObjectControl_DeActivate()
Set objContext = Nothing
End Sub
**********************************************
It still doesn't work. BTW, i'm on Windows 98 using PWS. I hope someone has some suggestions for me cause i'm at my wits end! Thanks!
-Hinchdog