regis
February 2nd, 2000, 10:16 AM
I will like to know how can I open the file (Index.html) with code VB.
Thanks
Redg
Thanks
Redg
|
Click to See Complete Forum and Search --> : Open Helpfile (Index.html) regis February 2nd, 2000, 10:16 AM I will like to know how can I open the file (Index.html) with code VB. Thanks Redg Chris Eastwood February 2nd, 2000, 10:23 AM 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, 10:27 AM 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 codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |