Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am calling IE from an excel application (...hyperlink.follow)
Is there a way to automatically close that occurence of IE once the page I called is displayed? Or after a small amount of time? thanks AG |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this
It close IE after 3 seconds Sub LoadWebPage1() Dim oleIE As Object Set oleIE = CreateObject("InternetExplorer.Application") With oleIE '.TheaterMode = True 'dit is volledig scherm .Visible = True .Navigate "http://www.rondebruin.nl/Google.htm" Application.Wait (Now + TimeValue("0:00:03")) .Quit End With End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "ag" wrote in message ... I am calling IE from an excel application (...hyperlink.follow) Is there a way to automatically close that occurence of IE once the page I called is displayed? Or after a small amount of time? thanks AG |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
it works
thank you AG "Ron de Bruin" a écrit dans le message de news: ... Try this It close IE after 3 seconds Sub LoadWebPage1() Dim oleIE As Object Set oleIE = CreateObject("InternetExplorer.Application") With oleIE '.TheaterMode = True 'dit is volledig scherm .Visible = True .Navigate "http://www.rondebruin.nl/Google.htm" Application.Wait (Now + TimeValue("0:00:03")) .Quit End With End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "ag" wrote in message ... I am calling IE from an excel application (...hyperlink.follow) Is there a way to automatically close that occurence of IE once the page I called is displayed? Or after a small amount of time? thanks AG |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do i call internet explorer from excel using macro | Excel Discussion (Misc queries) | |||
spreadsheet with macro does not work in Excel 2000 opened in Internet Explorer | Excel Programming | |||
Need macro bring internet explorer window to front | Excel Programming | |||
Excel Macro cannot Run at Internet Explorer 6 | Excel Programming | |||
Macro not found when spreadsheet viewed in Internet Explorer? | Excel Discussion (Misc queries) |