First of all, hi to everyone of u.
I 'm facing a problen in an ActiveX file.
I 've created a DLL,that it does some things, like executing SQLs etc.
In a specific line...I need to call again my DLL file...But i don't know
how!
Actually, i'm doing this:
Public MyCategoryLister As New CategoryLister
[the name of dll, is CategoryLister]
If MakeSubCategories Then
MyCategoryLister.Root [a variable from CategoryLister] = NewRoot
(new value)
MyCategoryLister.Column = 2
MyCategoryLister.LinkColor = "yellow"
....
And now i want to call my DLL
How can i do it?
End if
In asp, i'm doing this: Execute = Execute & MyCategoryLister.Execute
"Execute" is My Public Function
And it works...But in VB it returns this:
"Object variable or With block variable not set"
What can i do?
Thank u in advance
Marianna