Hi, Is there a way to return messages from my Active X DLL to my ASP application. I know msgbox dont work, I am looking for something similar!
Printable View
Hi, Is there a way to return messages from my Active X DLL to my ASP application. I know msgbox dont work, I am looking for something similar!
Well you can use Functions. Or Callbacks. But i have yet to fully understand the logic behind CallBacks so i can't advise further:(
But depending on what you are trying to do, a Function may work out:D
You can use an Event.
An event is when an object calls your object. A function is when you call a object.
This is how to use an event in your object.
-----------------
Public Event Myevent
RaiseEvent MyEvent
--------------------
A Callback is when you set a reference to your object in the other object. And then from the "other object" call a public function back on your object.
Maybe this will help.
:D