Jump to content

Search the Community

Showing results for tags 'closed'.

  • 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

Categories

  • Forum FAQ
  • AutoIt

Calendars

  • Community Calendar

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 2 results

  1. Hi, I'm writing on a dart scorer programm. I'm stuck with implementing a random generator to choose a random start player. I listed the members in an ini file like this: [m1] name = "Testname1" [m2] name = "Testname" and so on... I want to generate as many random numbers, as I have players in the ini. But I don't want any duplicates of course and that's where I'm stuck. here's the code: Global $randomnumber[11] $ini_sections = IniReadSectionNames(@ScriptDir & "\members.dat") For $i = 1 To UBound($ini_sections) - 1 Do $randomnumber[$i] = Random(1, UBound($ini_sections) - 1, 1) Until $randomnumber[$i] = $randomnumber[$i - 1] = False Next _ArrayDisplay($randomnumber) like this I can ensure that number no.2 doesn't equal number 1. But then I'm stuck idk how to move on.
  2. 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?
×
×
  • Create New...