|
本帖最后由 love5173 于 2011-4-11 23:59 编辑
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#NoTrayIcon
$Form1 = GUICreate("Form1", 1040, 750, (@DesktopWidth - 1033) / 2, (@DesktopHeight - 775) / 2, $WS_POPUPWINDOW, $WS_EX_TOOLWINDOW)
$oIE = ObjCreate("Shell.Explorer.2")
GUICtrlCreateObj($oIE, -2, -2, 1040, 750)
$oIE.navigate("http://www.baidu.com/")
Do
Until $oIE.Busy = False
$oIE.Document.body.Scroll = "no"
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
在做一个网页显示的时候发现了滚动条影响了网页的显示,于是查阅资料,发现了以上代码,自己运行后发现没有在任务栏与提示栏有图标出现,请问上面程序是怎么实现的,另外
$oIE.navigate、Until $oIE.Busy、$oIE.Document.body.Scroll 这写代码我看不懂,希望有热心人讲解一下,不胜感激 |
|