queria preguntar algo
como logro colocar el internet explorer dentro de cada tab , tome como base el _GUICtrlTab_Create , que viene dentro de la carpeta de autoit
Código: Seleccionar todo
#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiTab.au3>
#include <WindowsConstants.au3>
#include <ButtonConstants.au3>
Opt('MustDeclareVars', 1)
$Debug_TAB = False ; Check ClassName being passed to functions, set to True and use a handle to another control to see it work
Global $hTab
_Main()
Func _Main()
Local $hGUI
; Create GUI
$hGUI = GUICreate("(UDF Created) Tab Control Create", 400, 300)
$hTab = _GUICtrlTab_Create($hGUI, 2, 2, 396, 296)
GUISetState()
; Add tabs
_GUICtrlTab_InsertItem($hTab, 0, "Tab 1")
_GUICtrlTab_InsertItem($hTab, 1, "Tab 2")
_GUICtrlTab_InsertItem($hTab, 2, "Tab 3")
; Loop until user exits
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main
necesitaria que por ejemplo en los 3 tab o los que sean este la misma pagina , por ejemplo el hermoso y querido GOOGLE :)
gracias :D