求打开指定网址后全屏显示IE浏览器的代码
发布网友
发布时间:2022-05-12 00:35
我来回答
共3个回答
热心网友
时间:2022-04-24 12:48
Dim oIE
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Navigate "http://zhidao.baidu.com"
oIE.TheaterMode = True
oIE.Visible = True
热心网友
时间:2022-04-24 14:06
这样写。
Shell "iexplore -k zhidao.baidu.com"