i have a form in access. one of it label is linked to a a site containing information about clients. when i run the form and click on the label the info opens up in an IE browser. when i click the label again it opens another info in a new IE browser is there a way i can keep clicking my label as many times as i want to get the info but in the same browser page not multiple pages. i need the old info replaced by the new info in the same page after i click on the label.

below is the code i am using.

Dim objBrowser As InternetExplorer
Set objBrowser = New InternetExplorer


objBrowser.Visible = True
objBrowser.Navigate2 ("my url")
Set objBrowser = Nothing
Exit Sub
End Sub

any help is appreciated

thanks

raineel