[quote=sreekanth chilam]
Hi srikanth,
when i was trying to method 1 it isworking fine.
Method 1 :
Systemutil.Run "www.google.com"
but when i tried to method 2 system throw error.
Method 2 :
Dim br
Set br=CreateObject("InternerExplorer.Application")
br.Navigate "www.google.com"
Set br=Nothing
I have attached the screenshot.
It would be great if you resolve that one
vaigundamoorthy Wrote:[quote=sreekanth chilam]
Hi srikanth,
when i was trying to method 1 it isworking fine.
Method 1 :
Systemutil.Run "www.google.com"
but when i tried to method 2 system throw error.
Method 2 :
Dim br
Set br=CreateObject("InternerExplorer.Application")
br.Navigate "www.google.com"
Set br=Nothing
I have attached the screenshot.
It would be great if you resolve that one
===========================================
Moorthy,
Use this function and it can work.
Code:
Public Sub gen_Open_Browser(sURL)
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate sURL
IE.TheaterMode = True
End Sub