Thank All Whoever Try To Help Me The Problem is At The End Of The MsgBox(0, $UserData1, $UserData2) Dosent return anything and ım using msgbox understand is it gettin my Datas #include <StaticConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <GuiButton.au3>
#include <EditConstants.au3>
#include <ComboConstants.au3>
$Forma = GUICreate("Form", 291, 261, -1, -1, -1, -1)
$Ext = GUICtrlCreateCombo("..", 50, 50, 193, 21, -1, -1)
GUICtrlSetData(-1, "")
GUICtrlCreateLabel("Manager", 70, 20, 193, 15, -1, -1)
GUICtrlSetFont(-1, 10, 900, 0, "Arial Black")
GUICtrlSetColor(-1, "0x008000")
GUICtrlSetBkColor(-1, "-2")
GUICtrlCreateLabel("Enter HexCode", 80, 80, 193, 15, -1, -1)
GUICtrlSetFont(-1, 10, 900, 0, "Arial Black")
GUICtrlSetColor(-1, "0x008000")
GUICtrlSetBkColor(-1, "-2")
$HexCode = GUICtrlCreateInput("", 50, 109, 193, 20,)
GUICtrlSetState(-1, BitOR($GUI_SHOW, $GUI_ENABLE, $GUI_ONTOP))
Global $BilgiGonder = GUICtrlCreateButton("Bilgileri Gönder", 50, 212, 193, 30, -1, -1)
GUICtrlSetFont(-1, 12, 900, 0, "Arial Black")
GUICtrlSetColor(-1, "0x008000")
$Colour = GUICtrlCreateCombo("", 50, 169, 193, 21, -1, -1)
GUICtrlSetData(-1, "")
GUICtrlCreateLabel("Manager", 70, 142, 193, 15, -1, -1)
GUICtrlSetFont(-1, 10, 900, 0, "Arial Black")
GUICtrlSetColor(-1, "0x008000")
GUICtrlSetBkColor(-1, "-2")
GUISetState(@SW_SHOW, $Test)
; ------------------------------------------------------------------------------
;ComboBox() Değişkenlerini Ayarlar.
; ------------------------------------------------------------------------------
GUICtrlSetData($Ext, ".txt|.ini|")
GUICtrlSetData($Colour, "Red|Blue|Black|Pink|Dark Blue|Magenta|White|Brown")
While 1
$Msg = GUIGetMsg()
Switch $Msg
Case $GUI_EVENT_CLOSE
Exit
Case $BilgiGonder
$UserData1 = GUICtrlRead($Ext)
ExitLoop
Case $BilgiGonder
$UserData2 = GUICtrlRead($Colour)
ExitLoop
Case $BilgiGonder
$UserData3 = GUICtrlRead($HexCode)
ExitLoop
EndSwitch
WEnd
MsgBox(0, $UserData1, $UserData2)