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

Thread: HTML&ActiveX

  1. #1
    Guest

    HTML&ActiveX

    Can I start an ActiveX-Componente on a Webpage, without implementing it in the
    HTML-page?
    For example an ActiveX-Componente (which is embedded in a html-page) starts another ActiveX-Componente (this one isn't embedded in the html-text). I do not wish to start another Webpage for the new ActiveX-Componente!

    Thank you

    Stephan


  2. #2
    Join Date
    Feb 2000
    Location
    South Carolina, US
    Posts
    36

    Re: HTML&ActiveX

    Can I start an ActiveX-Componente on a Webpage, without implementing it in the
    HTML-page?
    Yes.

    ActiveX controls can't appear on their own, but must be in an "ActiveX Container". IE is only one of these. Write a VB program that can dynamically load the control passed to it as an argument, and display the control for use. Have the original control use a SHELL command to start this program.

    To do this without frames you'd need to let the ActiveX control


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