Search the Community
Showing results for tags 'guictrlcreatecombo'.
-
#include <GuiComboBox.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <WinAPI.au3> #include <Array.au3> #include <WinAPITheme.au3> #include <GDIPlus.au3> #Region GUICtrlComboSetColors UDF Global $g__aWM_CTLCOLORLISTBOX[1][16] = [[0, 0, 0]] ; init. the Global array ; #FUNCTION# ==================================================================================================================== ; Name...........: GUICtrlComboSetColors ; Description ...: Change the colors and position/size of a ComboBox ; Synta
-
Hi guys, I would like to implement the words in GuiCtrlCreateEdit through the choices the GuiCtrlCreateCombo. Each item in the GuiCtrlCreateCombo must contain the words that are to be reported later in the GuiCtrlCreateEdit. I have attached an example , I added just a GuiCtrlCreateCombo , then it will insert more. Thanks for the attention
-
Hello, Hereby I'd like to ask for the devs proffesional help cause there is something I can not get to work. I have an Combobox containing 3 strings. When I choose one, I'd wish for the 'readonly'editbox to hold some data from each string, a different data. string 1-> GUICtrlEdit /Edit1 : data ; blabla string 2-> GUICtrlEdit /Edit1 : data ; random typin string 3-> GUICtrlEdit /Edit1 : data ; other info Just to give an example I have a hunge it has something to do with Case $Combo1, GuiCtrlSetData and a read command. I shall provide a KodaForm generated code script.au3 below but I'm
-
is there a way to tell if the GUICtrlCreateCombo is open or closed (currently being chosen). I have a logic set that reads GUICtrlCreateCombo and then does a database query. I would rather wait until the drop down closes, before the real time query is made instead of cycling though the choices. is there a way to tell if its open or closed for a read?
-
;I'd like to on the end of the function, script changed for another option in the combolist. This will be part of the loop #include <ButtonConstants.au3> #include <ComboConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("Form1", 418, 177, 192, 114) $Combo1 = GUICtrlCreateCombo("exe Files", 16, 24, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL)) GuiCtrlSetData(-1,'ini Files|Txt Files|Cfg files') $Combo2 = GUICtrlCreateCombo("Find A", 176, 24, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
-
Hello, i have question. How put data from _FileListToArray to Combo ? I want fill combo with names of files from folder.
-
Sample code: ; Enter username to transfer item to Input $newUserInput = GUICtrlCreateCombo("", 180, 170, 350, 35, BitOR($CBS_DROPDOWNLIST, $WS_VSCROLL, $CBS_SORT)) GUICtrlSetFont(-1, 14, 400, 0, "Tahoma") GUICtrlSendMsg(-1, $CB_SETMINVISIBLE, 10, 0) Part 2 of sample code: If $itemString <> "" Then Local $mySQLstatement = "SELECT * FROM Inventory WHERE Name = '" & $itemString & "' AND Status = 1" $executeStatement = _Query($global_SQLInstance, $mySQLstatement) $internalName = $executeStatement.Fields("Name").value $usernameID = $executeStatement.Fields("UserID").va
- 1 reply
-
- GUICtrlSetData
- GUICtrlCreateCombo
-
(and 1 more)
Tagged with: