CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Jun 2001
    Posts
    5

    How to put my VB program onto IE?

    I have written a form-based VB program, which can run as a standalone EXE in Windows. Now, I would like to make the VB program run inside IE. Is it possible? Could someone suggest me how to do that?

    Thanks in advance.



  2. #2
    Join Date
    Jun 2001
    Location
    Memphis, TN
    Posts
    146

    Re: How to put my VB program onto IE?

    What you'll probably need to do is create the project as an ActiveX Document... those work a lot like standard apps but they run inside a "container" application like IE.


  3. #3
    Join Date
    Jun 2001
    Posts
    5

    Re: How to put my VB program onto IE?

    Thanks for the information. I think putting in ActiveX is exactly what I want.

    Could some one give me rough idea on the effort of converting a standard window EXE to ActiveX? And where could I find the related information?

    Thanks in advance.


  4. #4
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: How to put my VB program onto IE?

    1.Start new project ActiveX Control
    2.Create Control (write all codes)
    3.Close design window -> click X in the top corner
    4.Compile ActiveX to the .ocx

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

  5. #5
    Join Date
    Jun 2001
    Location
    Memphis, TN
    Posts
    146

    Re: How to put my VB program onto IE?

    Actually, for this project, you don't want to create an ActiveX control as was suggested. You'll want to create the project as the ActiveX Document type.

    ActiveX control projects allow you to create new controls to use in VB to apply to your forms and whatnot.

    ActiveX documents let you create applications that reside inside a container app like IE.


  6. #6
    Join Date
    Sep 2000
    Posts
    200

    Re: How to put my VB program onto IE?

    Use the ActiveX Document Migration Wizard. MS has pretty good help on the topic.


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