|
-
February 2nd, 2000, 11:16 AM
#1
Open Helpfile (Index.html)
I will like to know how can I open the file (Index.html) with code VB.
Thanks
Redg
-
February 2nd, 2000, 11:23 AM
#2
Re: Open Helpfile (Index.html)
Take a look at http://codeguru.developer.com/vb/articles/1997.shtml - unless you mean 'open the file index.htm and read from it'.... ?
Chris Eastwood
CodeGuru - the website for developers
http://codeguru.developer.com/vb
-
February 2nd, 2000, 11:27 AM
#3
Re: Open Helpfile (Index.html)
if you do the following
dim mypage as string
mypage="full pathname of whatever Html File you want to open"
ShellExecute 0, vbNullString,mypage, vbNullString, vbNullString, 1
this will open the htlm file in whatever is the default browser on your machine
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|