PDA

Click to See Complete Forum and Search --> : Returing messages from ActiveXDLL


wernerh
May 2nd, 2002, 02:17 AM
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!

Arc
May 2nd, 2002, 02:22 AM
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

wolfofthenorth
May 9th, 2002, 10:54 AM
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