Click to See Complete Forum and Search --> : Executing DHTML Applications


din3000
November 9th, 2000, 03:05 AM
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?

Vladdy
November 17th, 2000, 04:14 PM
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