tsys 发表于 2014-7-10 14:36:30

[已解决]请教关于调整Internet Explorer_Server 滚动条位置的方法

本帖最后由 tsys 于 2014-7-11 16:36 编辑

Question:如题
Example: 如下#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <IE.au3>

_IEErrorHandlerRegister()

Local $oIE = _IECreateEmbedded()
GUICreate("Embedded Web control Test", 640/2, 768, _
                (@DesktopWidth - 640) / 2, (@DesktopHeight - 768) / 2, _
                $WS_OVERLAPPEDWINDOW + $WS_VISIBLE + $WS_CLIPSIBLINGS + $WS_CLIPCHILDREN)
GUICtrlCreateObj($oIE, -1, -1, 300, 760)
GUISetState() ;显示GUI

_IENavigate($oIE, "www.baidu.com")

; 等待用户关闭窗口
While 1
        Local $msg = GUIGetMsg()
        Select
                Case $msg = $GUI_EVENT_CLOSE
                        ExitLoop
        EndSelect
WEnd

GUIDelete()

Exit
想通过_IEPropertySet 去调整滚动条位置,但发现没有scroll属性的支持

foxdcj 发表于 2014-11-2 11:41:12

这个怎么算成已解决了呢?
页: [1]
查看完整版本: [已解决]请教关于调整Internet Explorer_Server 滚动条位置的方法