11-08-2010, 04:37 PM
Hi two ways of launching Google in IE is:
1.
2.
1.
Code:
SystemUtil.Run "http://www.google.co.in/"
2.
Code:
Set oIE=CreateObject("InternetExplorer.Application")
oIE.Visible=True
oIE.Navigate "http://www.google.co.in/"