Refresh IE

  • Thread starter Thread starter Nathan
  • Start date Start date
N

Nathan

Hi,

I'd want to be able to control an instance of Internet Explorer from a VB
app. I'd particularly like to refresh the page shown. Is there a way to do
this?

Thanks,
Nathan
 
June 21, 2005

Without calling unmanaged code, you can use the COM Microsoft Internet
Controls library to create an IE instance and control it. If the IE window
is already opened, then you would have to call unmanaged code to control it.
This is the only way I know how.... In the library you call:

dim IE as new shdocvw.internetexplorer
ie.navigate(address)
ie.refresh

I believe this is all that is required, but it might be Slightly
different.... :-) Hope this helps!

--
Joseph Bittman
Microsoft Certified Application Developer

Web Site: http://71.35.110.42
Dynamic IP -- Check here for future changes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Access Form Refresh 1
Help with strange WebBrowser control problem... 5
IE Monitor 2
How can I simulate an onclick event in IE? 1
Refresh Listbox1 items 5
Refresh DataGrid 4
Page refreshing in ie 0
Refreshing a query 1

Back
Top