i will like if any one can help with the code to open html file on vb.net project to open on web broswer.
thanks
thanks
Dim BrowserPath As String '= get the path to the browser that you want to open Dim LocalURL As String '= the path to the html file you want to open...for example: = "file:///C:/users/userName/desktop/index.html" 'The following starts a process that opens the browser specified with the url provided Process.Start(DefaultBrowserPath, LocalURL)
Comment