If you want it to be a control in your window, to show it like you would an image or a button on the form use the Web Browser com control. If you want to click a button and have an IE box popup, there are several ways you can do this, you can go the managed route:
System.Diagnostics.Process.Start("
http://www.vbdotnetforums.com")
that will start the default browser at the link given. If you want to start in ONLY IE try
With New System.Diagnostics.Process
.StartInfo.FileName = "iexplore"
.StartInfo.Arguments = http://www.vbdotnetforums.com
.Start()
End With
If its a local file, say an html file in your programs root dir... switch th url out with that.
IF the HTML file is EMBEDDED within the DLL. you can use any of thos methods but. to access the file withing the dll use the res:// protocol. For example when you stop a page from loading in ie youd actually be pulling the "Navigation Cancled" page from a dll. Like so.
res://C:\WINDOWS\System32\shdoclc.dll/navcancl.htm
Theres also a list of unmanaged Windows API to do simular.
Hope i answered all possibilites of the meaning to your question... its kinda confusing since theres so many ways of doing this stuff.