在http://www.autoitx.com/forum.php ... ;highlight=ie%2Bgui中的3楼C.L给的代码表面上是没有滚动条,但事实上还是有的,只不过的IE的宽度大于GUI的宽度没显示出来而已,有没有办法真正的不出现上下滚动条.
这个没显示出来滚动条,但是用鼠标滚轮还是可以上下滚动的
$oIE = ObjCreate("Shell.Explorer.2")
GUICreate("Test", 390, 400, (@DesktopWidth - 640) / 2, (@DesktopHeight - 580) / 2)
$GUIActiveX = GUICtrlCreateObj ($oIE, -450, -80,860, 500)
GUISetState()
$oIE.document.body.scroll = "no"
$oIE.navigate("http://mail.163.com")
While 1
If GUIGetMsg () == -3 Then Exit
WEnd
当把GUI放宽之后就能看到滚动条了
$oIE = ObjCreate("Shell.Explorer.2")
GUICreate("Test", 500, 500, (@DesktopWidth - 640) / 2, (@DesktopHeight - 580) / 2)
$GUIActiveX = GUICtrlCreateObj ($oIE, -450, -80,860, 500)
GUISetState()
$oIE.document.body.scroll = "no"
$oIE.navigate("http://mail.163.com")
While 1
If GUIGetMsg () == -3 Then Exit
WEnd
|