How would I enable a html file into a form?
Printable View
How would I enable a html file into a form?
You could use the webbrowser control....... project > components > internet tools......... i think
I've brought up the internet control and have the blah.html file in the same directory as the program, anyone know why this ain't workin?
VB Code:
Private Sub Form_Activate() WebBrowser1.Navigate ("blah.html") End Sub
try specifying the whole path like
app.path & "\blah.html"
doh, thanks :)