austin350s10
Active Member
- Joined
- Jul 30, 2010
- Messages
- 321
I am trying to write a script that when triggered opens IE fully maximized. Only problem is my script (below) only opens IE in a small window.
How do I make this script open IE maximized?
How do I make this script open IE maximized?
Code:
Dim iExplorer
Set iExplorer = CreateObject("InternetExplorer.Application") 'Late bound
iExplorer.navigate "http://www.google.com"
iExplorer.Visible = True