I am writing an AHK script to automate data entry into a GUI form. There is a drop-down box with a few hundred entries. I know the value I want to select and when I manually type in the number the combo box changes to the appropriate value. When I send the same string in AHK (using Send) it chooses the first item on the list. I have played around with various values of SetKeyDelay (-1 through 2000).
SetKeyDelay 1000
Send %ItemNumber%
SetKeyDelay -1
Any suggestions here?
Thanks
Jonathan