Jump to content

Search the Community

Showing results for tags 'combo box item'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. hey guys I have an Auto Login script that has a GUI with an input field & a combo box with a list inside of 1 to10 what I want to have happen is when I type in a Email account into the input field it disables or removes number 1 from the combo box I have this but it only does it when I click the button in GUI not when I Type into the input field If $Password <> "" Then If StringRegExp($Account, "..*@gmail.com") Then If $n = 1 Then GUICtrlSetData($cCombo_AccType[1], 3) Add_MoreGmail() Else If $n <> 1 Then $Account = GUICtrlRead($Input1) $Password = GUICtrlRead($Input1_Pass) $n = GUICtrlRead($cCombo_AccType[1]) _GUICtrlComboBox_DeleteString($cCombo_AccType[1], 0) MsgBox($MB_SYSTEMMODAL, "", "string deleted"& $Account) Add_MoreGmail() I don't want the user to input two gmail accounts with the same account type so I want the account type 1 removed from the list if the user types a gmail account the 2nd time anyone know how I can do this? thanks guys AddEmail_GUI_Working.au3
×
×
  • Create New...