sundeep Posted March 31, 2009 Posted March 31, 2009 Hi, I have created a combo box initially("Which has no text string") and later use it again to display the filename selected. But when I move the mouse curzor over the combo box, it removes the text momentarily and again redisplays after I minimize and maximize the GUI screen. Code: ;INPUT ;$input = GuiCtrlCreateInput($file, 10, 50, 260, 20) $input = GuiCtrlCreatecombo("", 10, 50, 260, 20) ;CHOOSE FILE $choosebutton = GuiCtrlCreateButton ("File", 10, 80, 70, 20) ; BUTTON $uploadbutton = GuiCtrlCreateButton("Upload", 105, 80, 70, 20) $cancelbutton = GUICtrlCreateButton("Cancel", 202, 80, 70, 20) GUISetState() While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Or $msg = $cancelbutton ExitLoop Case $msg = $choosebutton $file = FileOpenDialog("Choose file to upload...", "", "All (*.*)") GuiCtrlCreatecombo($file, 10, 50, 260, 20)
GEOSoft Posted March 31, 2009 Posted March 31, 2009 Because you are creating a new control instead of setting the data to the existing one ;INPUT ;$input = GuiCtrlCreateInput($file, 10, 50, 260, 20) $input = GuiCtrlCreatecombo("", 10, 50, 260, 20) ;CHOOSE FILE $choosebutton = GuiCtrlCreateButton ("File", 10, 80, 70, 20) ; BUTTON $uploadbutton = GuiCtrlCreateButton("Upload", 105, 80, 70, 20) $cancelbutton = GUICtrlCreateButton("Cancel", 202, 80, 70, 20) GUISetState() While 1 $msg = GUIGetMsg() Switch $Msg Case $GUI_EVENT_CLOSE, $cancelbutton ExitLoop Case $choosebutton $file = FileOpenDialog("Choose file to upload...", "", "All (*.*)") ;; There should be some error checking added here GuiCtrlSetData($Input, $file) EndSwitch Wend George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
Moderators Melba23 Posted March 31, 2009 Moderators Posted March 31, 2009 (edited) Melba23,You are recreating the combobox! Try using GUICtrlSetData instead (and if you then use the Combo UDF you can set the text as well :-) )#include <GUIConstantsEx.au3> #include <ComboConstants.au3> #Include <GuiComboBox.au3> GUICreate("Test", 500, 500) $input = GUICtrlCreateCombo("", 10, 50, 260, 20) ;CHOOSE FILE $choosebutton = GUICtrlCreateButton("File", 10, 80, 70, 20) ; BUTTON $uploadbutton = GUICtrlCreateButton("Upload", 105, 80, 70, 20) $cancelbutton = GUICtrlCreateButton("Cancel", 202, 80, 70, 20) GUISetState() While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Or $msg = $cancelbutton ExitLoop Case $msg = $choosebutton $file = FileOpenDialog("Choose file to upload...", "", "All (*.*)") GUICtrlSetData($input, $file) _GUICtrlComboBox_SetEditText($input, $file) EndSelect WEndM23P.S. Please try and post complete code - you do not make many friends by forcing us to add include files and close your loops!P.P.S. Please use Code tags. Put [code ] before and [/code ] after your posted code (but omit the trailing space - it is only there so the tags display here).Edit: Speeling! Edited March 31, 2009 by Melba23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
sundeep Posted April 1, 2009 Author Posted April 1, 2009 Thanks a lot guys, Melba, Il make sure of following your suggestions from next time and a long time to come :-). This was my first post. Cheers! Sun.
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