Action of Home button

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi EveryBody:
programtically

How can I make code that press the home icon in Internet Explorer

any help will be appreciated

regard's

Husam
 
Husam,

More and more is protected by the service packs that those things can be
done, why are you asking this? (In IE 7 it can again be different however
again less javascript to be allowed)

Cor
 
Husam said:
How can I make code that press the home icon in Internet Explorer

If you created the Internet Explorer window yourself:

\\\
Dim w As Object = CreateObject("InternetExplorer.Application")
w.Visible = True
w.GoHome()
///
 
Back
Top