Jump to content

Search the Community

Showing results for tags 'combo error handeling'.

  • 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'm currently working on this little program that helps people at my work make IT requests, everything is working nice and pollished except for one error handelling I can't seem to figure out. I have 2 combo box       $CBDebut = GUICtrlCreateCombo("", 312, 112, 137, 25, BitOR($CBS_DROPDOWN, $CBS_AUTOHSCROLL))     GUICtrlSetData(-1, "8:00|8:30|9:00|9:30|10:00|10:30|11:00|11:30|12:00|12:30|13:00|13:30|14:00|14:30|15:00|15:30|16:00|16:30|17:00|17:30", "8:00")     $CBFin = GUICtrlCreateCombo("", 312, 176, 137, 25, BitOR($CBS_DROPDOWN, $CBS_AUTOHSCROLL))     GUICtrlSetData(-1, "8:00|8:30|9:00|9:30|10:00|10:30|11:00|11:30|12:00|12:30|13:00|13:30|14:00|14:30|15:00|15:30|16:00|16:30|17:00|17:30", "12:00") So the goal with this is people can reserve our conference rooms, but If they select 10:00 on $CBDebut and 9:00 on $CBFin it sould give me an error since they can only schedule the room for 1 day at a time, so I need to make sure that the first combo is always smaller then the second one. but since its not numerical value I can't figure it out. If the :30 cauz a problem I could remove them, but I would like for it to say. Thank you guys for the help!
×
×
  • Create New...