AJMcChampion Posted December 23, 2013 Posted December 23, 2013 (edited) Hey guys, Great forum! I'm almost brand-spanking new to AUTOIT/KODA, and I need a little assistance. I'm using Koda to create a GUI. When someone selects an entry from my combo box I need it to populate an input box (Input2) with info depending on the combo box selection. I need the input box to stay open/active in case someone wants to add their own info and skip using the combo box selections. Any help would be greatly appreciated! Here's what I have for my gui #include <ButtonConstants.au3> #include <ComboConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("EXAMPLE", 398, 134, 254, 124) $Label1 = GUICtrlCreateLabel("Machine name", 8, 8, 74, 17) GUICtrlCreateInput("", 112, 8, 257, 21) GUICtrlSetTip(-1, "FQDN") $Button1 = GUICtrlCreateButton("Go", 152, 88, 97, 25) $District = GUICtrlCreateCombo("District", 8, 40, 81, 25) GUICtrlSetData(-1, "ONE|TWO|THREE|FOUR") GUICtrlCreateInput("", 112, 40, 257, 21) GUICtrlSetTip(-1, "NetApp") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Edited December 23, 2013 by AJMcChampion
Solution BrewManNH Posted December 23, 2013 Solution Posted December 23, 2013 This should do it, or at least help in figuring out what you need it to do. #include <ButtonConstants.au3> #include <ComboConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("EXAMPLE", 398, 134, 254, 124) $Label1 = GUICtrlCreateLabel("Machine name", 8, 8, 74, 17) $cInput1 = GUICtrlCreateInput("", 112, 8, 257, 21) GUICtrlSetTip(-1, "FQDN") $Button1 = GUICtrlCreateButton("Go", 152, 88, 97, 25) $District = GUICtrlCreateCombo("District", 8, 40, 81, 25) GUICtrlSetData(-1, "ONE|TWO|THREE|FOUR") GUICtrlCreateInput("", 112, 40, 257, 21) GUICtrlSetTip(-1, "NetApp") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit case $District GUICtrlSetData($cInput1, guictrlread($District)) EndSwitch WEnd If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
AJMcChampion Posted December 23, 2013 Author Posted December 23, 2013 ahh I see. Thanks so much for the quick response. This'll get me going!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now