|
-
May 2nd, 2002, 02:17 AM
#1
Thread Starter
Addicted Member
Returing messages from ActiveXDLL
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!
-
May 2nd, 2002, 02:22 AM
#2
PowerPoster
-
May 9th, 2002, 10:54 AM
#3
Addicted Member
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.
That which does not kill us, only makes us stronger. 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|