4,007
社区成员
发帖
与我相关
我的任务
分享Set IE = CreateObject("InternetExplorer.Application")
IE.AddressBar = false
IE.MenuBar = false
IE.StatusBar = true
IE.ToolBar = false
IE.Visible = false
IE.Top = 0
IE.Left = 0
IE.FullScreen = True
W = IE.Width
H = IE.Height
IE.FullScreen = False
IE.Width = W
IE.Height = H
IE.Visible = true
IE.Navigate "http://www.powerjs.com/"With CreateObject("InternetExplorer.Application")
.Navigate "about:blank"
.Left = 0
.Top = 0
.Width = .document.parentWindow.screen.availWidth
.Height = .document.parentWindow.screen.availHeight
.Visible = True
End With