CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Runnig a DLL

  1. #1
    Join Date
    Jul 2001
    Location
    Argentina
    Posts
    30

    Runnig a DLL

    Does anyone knows if the Run Button on VB does anything when creating an activex dll

    thanks
    jorge


  2. #2
    Join Date
    Jan 2000
    Location
    Olen, Belgium
    Posts
    2,477

    Re: Runnig a DLL

    Well, it does.
    When you press the run button, you will be promped (the first time) to select what you want to do. You have 3 options.

    1) Wait until component is created.
    This can be used when you need to monitor the dll during execution. You can add break points in your code, and when some program calls the dll, it will call the version you have open in your VB IDE. This way you can follow the code executed in the dll even if the dll isn't called from your program.

    2) Start program.
    This will start the program you specified. Same as above, you can place breakpoints. Most likely, you will specify a program that uses your dll, to see what happens.

    3) Start browser with url.
    This does what it says it does, very usefull when you are calling the dll from an internet page, via an axtivex control, or asp for instance.

    Tom Cannaerts
    [email protected]

    Programming today is a race between software engineers striving to build bigger and better idot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
    Tom Cannaerts
    email: [email protected]
    www.tom.be (dutch site)

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

Featured