I will like to know how can I open the file (Index.html) with code VB.
Thanks
Redg
Printable View
I will like to know how can I open the file (Index.html) with code VB.
Thanks
Redg
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
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