Results 1 to 3 of 3

Thread: Returing messages from ActiveXDLL

  1. #1

    Thread Starter
    Addicted Member wernerh's Avatar
    Join Date
    Sep 2000
    Posts
    170

    Question 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!

  2. #2
    PowerPoster Arc's Avatar
    Join Date
    Sep 2000
    Location
    Under my rock
    Posts
    2,336
    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
    -We have enough youth. How about a fountain of "Smart"?
    -If you can read this, thank a teacher....and since it's in English, thank a soldier.


  3. #3
    Addicted Member wolfofthenorth's Avatar
    Join Date
    Jan 2001
    Location
    Tatooine
    Posts
    169
    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
  •  



Click Here to Expand Forum to Full Width