El combo1 selecciona un link de la web y el combo 2 lo unico que hace es setear un combo en la web en"15 30 o 60". Pero nose como capturar el valor que seleccionaria el usuario en la GUI
Adjunto el codigo:
Código: Seleccionar todo
#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Mineria = GUICreate("Mineria", 390, 158, 239, 127)
$Label1 = GUICtrlCreateLabel("MINERAL:", 32, 16, 84, 22)
GUICtrlSetFont(-1, 12, 400, 0, "Arial Rounded MT Bold")
$Label2 = GUICtrlCreateLabel("BUSCAR DURANTE:", 32, 64, 165, 22)
GUICtrlSetFont(-1, 12, 400, 0, "Arial Rounded MT Bold")
$Combo1 = GUICtrlCreateCombo("", 208, 16, 153, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "A|B|C|D", "D")
$Combo2 = GUICtrlCreateCombo("", 208, 64, 73, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "15|30|60", "60")
$OK = GUICtrlCreateButton("OK", 80, 112, 75, 25)
$SALIR = GUICtrlCreateButton("SALIR (esc)", 232, 112, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
HotKeySet("{ESC}", "Terminate")
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $OK
Case $SALIR
Terminate()
Case $GUI_EVENT_CLOSE
Terminate()
EndSwitch
WEnd
Func Terminate()
Exit 0
EndFunc
Muchas gracias