Jump to content

ComboBox


SaeidN
 Share

Recommended Posts

Let's say I have 10 combobox and 10 items in each.

1- If one item in a combobox is selected, I don't want it to be selectable in another combobox. (Or if it is, remove the duplicate one)

2- When I click on button, I want 10 msgboxes to show, and each item showing in each msgbox in order they are selected. (from combobox1 to combobox10)

I'm confused whether to use select or switch or other loops.

Link to comment
Share on other sites

  • Moderators

SaeidN,

You might find this thread of interest. If you produce some runnable code to illustrate what you want to do I would be happy to develop something along those lines for you.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

2 hours ago, Melba23 said:

SaeidN,

You might find this thread of interest. If you produce some runnable code to illustrate what you want to do I would be happy to develop something along those lines for you.

M23

Thank you, that was a good guide. This code is a good one, but I don't want to be removed from the list, I want when a duplicate option is selected, the old one to get unselected from combobox.

I have this code. When I click the button, I want the selected items to run in order they are selected. I have a number from 1 to 9 in front of each, which means wait for 1-9 sec, then run the next one.

I appreciate your help

#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
Global $Form1 = GUICreate("RunProgs", 373, 283, 192, 124)
Global $Combo1 = GUICtrlCreateCombo("", 24, 40, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "Notepad|Paint|Calc|IE|AutoIt")
Global $Combo2 = GUICtrlCreateCombo("", 24, 72, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "Notepad|Paint|Calc|IE|AutoIt")
Global $Combo3 = GUICtrlCreateCombo("", 24, 104, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "Notepad|Paint|Calcu|IE|AutoIt")
Global $Combo4 = GUICtrlCreateCombo("", 24, 136, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "Notepad|Paint|Calc|IE|AutoIt")
Global $Combo5 = GUICtrlCreateCombo("", 24, 168, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "Notepad|Paint|Calc|IE|AutoIt")
Global $Combo6 = GUICtrlCreateCombo("", 200, 40, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "1|2|3|4|5|6|7|8|9")
Global $Combo7 = GUICtrlCreateCombo("", 200, 72, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "1|2|3|4|5|6|7|8|9")
Global $Combo8 = GUICtrlCreateCombo("", 200, 104, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "1|2|3|4|5|6|7|8|9")
Global $Combo9 = GUICtrlCreateCombo("", 200, 136, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "1|2|3|4|5|6|7|8|9")
Global $Combo10 = GUICtrlCreateCombo("", 201, 168, 143, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1, "1|2|3|4|5|6|7|8|9")
Global $RunBtn = GUICtrlCreateButton("Run selected in order", 112, 216, 131, 41)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit

    EndSwitch
WEnd

 

Link to comment
Share on other sites

  • Moderators

SaeidN,

Quote

I want when a duplicate option is selected, the old one to get unselected from combobox

Is this the behaviour you wish to see - any previous selections of the same app or order are cleared:

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <ComboConstants.au3>

#include <Array.au3>

Global $iCount = 5

Global $sCombo_Data = "|Notepad|Paint|Calc|IE|AutoIt" ; Note use of leading "|" so that previous loads are cleared
Global $sCombo_Order = "|1|2|3|4|5|6|7|8|9"
Global $aCombo_App[$iCount], $aCombo_Place[$iCount]
Global $iStyle = BitOR($CBS_DROPDOWN, $CBS_AUTOHSCROLL)


$Form1 = GUICreate("RunProgs", 373, 283, 192, 124)

For $i = 0 To $iCount - 1
    $aCombo_App[$i] = GUICtrlCreateCombo("", 24, 40 + (32 * $i), 145, 25, $iStyle)
    GUICtrlSetData(-1, $sCombo_Data)
    $aCombo_Place[$i] = GUICtrlCreateCombo("", 200, 40 + (32 * $i), 145, 25, $iStyle)
    GUICtrlSetData(-1, $sCombo_Order)
Next

$RunBtn = GUICtrlCreateButton("Run selected in order", 112, 216, 131, 41)

GUISetState(@SW_SHOW)

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $RunBtn

        Case Else
            For $i = 0 To $iCount -1
                ; Check if App combo
                If $nMsg = $aCombo_App[$i] Then
                    ; Recent app selection
                    $sChosen = GUICtrlRead($nMsg)
                    ; Now check all other combos and clear them if the same thing selected
                    For $j = 0 To $iCount - 1
                        If $j = $i Then
                            ; Do nothing
                        Else
                            ; Same content as recent selection
                            If GUICtrlRead($aCombo_App[$j]) = $sChosen Then
                                ; Clear the current combo selection
                                GUICtrlSetData($aCombo_App[$j], $sCombo_Data)
                            EndIf
                        EndIf
                    Next
                ElseIf $nMsg = $aCombo_Place[$i] Then
                    ; Recent order selection
                    $sChosen = GUICtrlRead($nMsg)
                    ; Now check all other combos and clear them if the same thing selected
                    For $j = 0 To $iCount - 1
                        If $j = $i Then
                            ; Do nothing
                        Else
                            ; Same content as recent selection
                            If GUICtrlRead($aCombo_Place[$j]) = $sChosen Then
                                ; Clear the current combo selection
                                GUICtrlSetData($aCombo_Place[$j], $sCombo_Order)
                            EndIf
                        EndIf
                    Next
                EndIf
            Next

    EndSwitch
WEnd

Or do you mean that once an option is chosen it is removed from the other combos options?

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <ComboConstants.au3>

Global $iCount = 5

Global $sCombo_Data = "|Notepad|Paint|Calc|IE|AutoIt" ; Note use of leading "|" so that previous loads are cleared
Global $sCombo_Order = "|1|2|3|4|5|6|7|8|9"
Global $aCombo_App[$iCount], $aCombo_Place[$iCount], $aCombo_App_Data[$iCount], $aCombo_Place_Data[$iCount]
Global $iStyle = BitOR($CBS_DROPDOWN, $CBS_AUTOHSCROLL)

For $i = 0 To $iCount - 1
    $aCombo_App_Data[$i] = $sCombo_Data
    $aCombo_Place_Data[$i] = $sCombo_Order
Next

$Form1 = GUICreate("RunProgs", 373, 283, 192, 124)

; Initial fill
For $i = 0 To $iCount - 1
    $aCombo_App[$i] = GUICtrlCreateCombo("", 24, 40 + (32 * $i), 145, 25, $iStyle)
    GUICtrlSetData(-1, $sCombo_Data)
    $aCombo_Place[$i] = GUICtrlCreateCombo("", 200, 40 + (32 * $i), 145, 25, $iStyle)
    GUICtrlSetData(-1, $sCombo_Order)
Next

$RunBtn = GUICtrlCreateButton("Run selected in order", 112, 216, 131, 41)

GUISetState(@SW_SHOW)

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
        Case $RunBtn

        Case Else
            For $i = 0 To $iCount -1
                ; Check if App combo
                If $nMsg = $aCombo_App[$i] Then
                    ; Recent app selection
                    $sChosen = GUICtrlRead($nMsg)
                    ; Now remove from all other combos
                    For $j = 0 To $iCount - 1
                        If $j = $i Then
                            ; Do nothing
                        Else
                            ; Read current content of combo and add a trailing "|"
                            $sContent = $aCombo_App_Data[$j] & "|"
                            ; Remove chosen item and trim trailing "|"
                            $aCombo_App_Data[$j] = StringTrimRight(StringReplace($sContent, "|" & $sChosen & "|", "|"), 1)
                            ; Read current setting
                            $sCurrent = GUICtrlRead($aCombo_App[$j])
                            ; And reload combo
                            GUICtrlSetData($aCombo_App[$j], $aCombo_App_Data[$j], $sCurrent)
                        EndIf
                    Next
                ElseIf $nMsg = $aCombo_Place[$i] Then
                    ; Recent order selection
                    $sChosen = GUICtrlRead($nMsg)
                    ; Now remove from all other combos
                    For $j = 0 To $iCount - 1
                        If $j = $i Then
                            ; Do nothing
                        Else
                            ; Read current content of combo and add a trailing "|"
                            $sContent = $aCombo_Place_Data[$j] & "|"
                            ; Remove chosen item and trim trailing "|"
                            $aCombo_Place_Data[$j] = StringTrimRight(StringReplace($sContent, "|" & $sChosen & "|", "|"), 1)
                            ; Read current setting
                            $sCurrent = GUICtrlRead($aCombo_Place[$j])
                            ; And reload combo
                            GUICtrlSetData($aCombo_Place[$j], $aCombo_Place_Data[$j], $sCurrent)
                        EndIf
                    Next
                EndIf
            Next

    EndSwitch
WEnd

M23

Edited by Melba23
Added second script

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

10 hours ago, Melba23 said:

 

The first one is exacty what I want. Thank you.

How can I get the Run button to work? Should I use switch? Cause I want all selected programs to run with the defined sleep between them.

Edited by Melba23
Removed huge quote
Link to comment
Share on other sites

  • Moderators

SaeidN,

When you reply, please use the "Reply to this topic" button at the top of the thread or the "Reply to this topic" editor at the bottom rather than the "Quote" button - I know what I wrote and it just pads the thread unnecessarily.

As to the "Run" button - what have you tried that has not worked? I would have thought a loop would have been the way to go rather then a Switch, but then you know best what you want.

M23

 

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Sorry about quote.

Edit: Ok, I did it, is it an efficiet way of doing it? Or there is a better way? I just wrote it for two of the apps for now.

$z= 0
            While $z < 5

                If GUICtrlRead($aCombo_App[$z]) = "Calc" Then
                    Run ("calc.exe")
                    Sleep (GUICtrlRead($aCombo_Place[$z]) * 1000)
                EndIf

                If GUICtrlRead($aCombo_App[$z]) = "Notepad" Then
                    Run ("notepad.exe")
                    Sleep (GUICtrlRead($aCombo_Place[$z]) * 1000)
                EndIf
                $z= $z+1
            WEnd

Edit 2: I removed the following part, cause it's a sleep time and ok to duplicate in boxes.

ElseIf $nMsg = $aCombo_Place[$i] Then
                    ; Recent order selection
                    $sChosen = GUICtrlRead($nMsg)
                    ; Now check all other combos and clear them if the same thing selected
                    For $j = 0 To $iCount - 1
                        If $j = $i Then
                            ; Do nothing
                        Else
                            ; Same content as recent selection
                            If GUICtrlRead($aCombo_Place[$j]) = $sChosen Then
                                ; Clear the current combo selection
                                GUICtrlSetData($aCombo_Place[$j], $sCombo_Order)
                            EndIf
                        EndIf
                    Next

 

Edited by SaeidN
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...