Re: VB6 is this possible?
Hi,
The only way is to copy your website into a folder you'll create in the install directory of you application. You will have to replace your paths into you application by paths beginning by App.Path.
e.g your page was on your floppy disk and was called index.html.
Create a directory where your app is installed, e.g. if your app is in "C:\VB\MyApp\", then create "C:\VB\MyApp\MySite"
Copy your web pages in it.
Replace all your paths like the follwing :
If your path was : MyPath = "A:\Index.html"
then replace it by MyPath = App.Path & "\MySite\Index.html"
Of course, if you create an install package of your application, don't forget to include your directory and you site in it.
Regards.
Hastur
Re: VB6 is this possible?
Thank you! I'll try it out.
James
[email protected]