how do i display HTML in my forms, is there ne ActiveX for this purpose ?
Printable View
how do i display HTML in my forms, is there ne ActiveX for this purpose ?
Yep...
look for "shdocvw.dll" in the system folder.
ok i have got the Shdocvw.dll, how do i initialize n use it now ?
go to project components and select microsoft internet control.
this will put an extra control on your toolbox, select that and add to form
rgds peter
well the internet control gives a browser in my application which can also do the job but would become an overhead for me
is there ne textbox kind of control for which i give HTML n it will parse it like a web browser
you can create an html file and navigate to that.
WebBrowser1.Navigate "http://www.google.com"
or if local to your app...
WebBrowser1.Navigate App.Path & "\myhtmlfile.htm"