19377708 发表于 2010-10-6 11:50:59

AU3如何在GUI窗体中嵌入一个IE窗体!

创建一个GUI窗口,将www.baidu.com嵌入到该GUI窗口中,自己研究好久还是没有成功,希望各位高手能帮忙解决问题,在这里先谢谢各位了!

kood481748 发表于 2010-10-6 13:19:55

查看GUICtrlCreateObj 函数,重要是看帮助的例子,还有就是要学会用论坛搜索功能

19377708 发表于 2010-10-6 13:35:57

回复 2# kood481748


    嗯嗯,谢谢你的回答,我要的就是这种结果,

1253322830 发表于 2010-10-8 22:39:44

学习了   呵呵{:face (317):}

村牛 发表于 2010-11-15 16:09:50

#NoTrayIcon
#Region ;**** 参数创建于 ACNWrapper_GUI ****
#EndRegion ;**** 参数创建于 ACNWrapper_GUI ****
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <ButtonConstants.au3>
#include <StaticConstants.au3>
#include <IE.au3>
#include <Debug.au3>

RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "WebView", "REG_DWORD", "00000000")
        $oIE = ObjCreate("Shell.Explorer.2")
        $Form1 = GUICreate("IE", 1024, 715, -1, -1)
        $GUIActiveX = GUICtrlCreateObj($oIE, -1, -1, 1024, 800)
        $oIE.navigate("http://www.ie925.com")
        GUISetState(@SW_SHOW)
       
        While 1
                $msg = GUIGetMsg()
                Select
                        Case $msg = $GUI_EVENT_CLOSE
                                Exit
                       
                EndSelect
        WEnd


Exit


不知道楼主是不是想要这样的效果呢

dsital 发表于 2010-11-29 21:15:51

{:face (427):}{:face (303):}

sj798 发表于 2010-12-4 14:56:21

围观,好好看

奈何天 发表于 2010-12-20 09:13:51

{:face (303):}

benz1979 发表于 2011-2-9 12:26:32

好好学习,收下了,慢慢研究!

zysanjing 发表于 2011-3-30 22:18:45

http://www.autoitx.com/?fromuid=7655462更多资料查看这里~

nnlenx 发表于 2011-4-12 13:28:34

学习了,正想学习这方面的内容

淡定开源 发表于 2011-4-12 20:16:39

有空学习一下。。

cocoazhang 发表于 2011-4-15 22:19:47

新手学习了

cumtljj 发表于 2011-4-23 12:33:05

回复 1# 19377708


    好像见有人发过

txbihai 发表于 2011-5-5 22:31:57

这是网内高手的代码,应该就是你要的效果

#include <IE.au3>
#include <WindowsConstants.au3>
Local $sIP= "www.autoitx.com"
Local $sURL = "http://" & $sIP & "/"
Local $hWnd = GUICreate("IE Embedded Windows", 1024, 716, 0, 0, BitOR($WS_SYSMENU, $WS_CAPTION, $WS_POPUP))
Local $oIE= _IECreateEmbedded()
$GUIActiveX = GUICtrlCreateObj($oIE,0 , 0,1024,700)
GUISetState()
_IENavigate($oIE, $sURL, 1)
Sleep(100*1000)
Exit
页: [1] 2 3
查看完整版本: AU3如何在GUI窗体中嵌入一个IE窗体!