Not quite sure how to load up internet explorer, but seeing as you said you were good in VB, im sure you can figure that one out.
In this example im using a form called FrmBrowser which displays the page you want. If you want the code for the custom browser in VB just ask.
Private Sub mnuViewWebBrowser_Click()
Dim frmB As New frmBrowser
frmB.StartingAddress = "http://www.axeuk.com"
frmB.Show
End Sub
It uses a sub menu which im assuming that's what you'll be using anyway.