Jump to content

Combobox Manipulation


Recommended Posts

I have an autoit script I have been running for a while now that performs quite a lot of functions in a program that we use here. I currently have code to change the combobox like this

If ControlGetText("Vantive System", "Problem Report ID", "ComboBox6") = "Secondary Support" Then
    ControlClick("Vantive System", "Problem Report ID", "ComboBox6")
    Send("{UP 2}")
    WinWaitActive("Vantive System", "Problem Report ID")
EndIf

I am trying to change the code to directly change the combobox so that it wont matter if the current selection is on something other than what is usually selected. The problem I am having is that in the below code the test msgbox and more importantly the winwait active cant be done until the combobox has been successfully changed and I cant change the continue with the code until I deal with the popup window and button. Its a catch 22, any ideas?

If ControlCommand("Vantive System -", "Problem Report","ComboBox5","FindString","STORE REQUEST ORDER") <> 0 Then
    ControlCommand("Vantive System -", "Problem Report","ComboBox5","SelectString","STORE REQUEST ORDER")
EndIf
msgbox(0, "test","test")
WinWaitActive("Vantive System", "Changing this field will")
ControlClick("Vantive System", "Changing this field will",6,"left")

Thanks Chris

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...