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

    Executing DHTML Applications

    I have developed a DHTML Page using the DHTML Application of VB. How do I execute on the browser without having it to run from the VB Application Wizard.
    (I would like to execute this as my Normal HTML page). What is the work around?


  2. #2
    Join Date
    Nov 2000
    Location
    Moscow, Russia
    Posts
    32

    Re: Executing DHTML Applications

    So you developed HTML page and code in VB right?

    So you got the following after compilation of your code:
    1) After you compile your project you get DLL
    2) This compiled DLL is now *registered* on your computer and besides that your HTML page contains special tags "OBJECT ..... " "/OBJECT" with class id of just compiled DLL.
    4) When you start your browser with that HTML your code works!

    There is one problem. How you should distribute your project (your DLL with a page). Easy! Use Package and Deployment Wizard from Visual Studio Tools.

    Vladdy


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