2,748
社区成员




strURL = "http://www.google.com"
*!* Open Internet Explorer and Display the Route
IEapp = Createobject('InternetExplorer.Application')
With IEapp
.Visible = .T.
.Navigate(strURL)
Endwith
Do While IEapp.ReadyState <> 4
DoEvents
Enddo
*!* Open Google Chrome Web Browser and Display the Route
CHromeapp = Createobject("Chrome.Application")
*!* Or
*!* CHromeapp = CreateObject("ChromeTab.ChromeFrame")
With CHromeapp
.Visible = .T.
.Navigate(strURL)
Endwith
Do While CHromeapp.ReadyState <> 4
DoEvents
Enddo
Wait Window "等待中......"
ox.Quit()