Hello,
Can anyone tell me why GetCheckBox will not work in the example below? I also tried SetCheckBox with no luck. I put in the MessageModal line to view the result but it always comes back as -1
Thanks for any assistance possible.
-roo
Label>Run Add Printer
Run Program>control printers
WaitWindowOpen>Printers and Faxes
Press ALT
Send>f
Send>a
WaitWindowOpen>Add Printer Wizard
Send>n
Send>A
GetCheckBox>Add Printer Wizard,&Automatically detect and install my Plug and Play printer,Box1
MessageModal>Box1
Label>exit
Problem with GetCheckBox
Moderators: Dorian (MJT support), JRL
Hi Roo,
I had to add Wait>1 before GetCheckBox> to get it to return the correct value.
I had to add Wait>1 before GetCheckBox> to get it to return the correct value.
Code: Select all
Label>Run Add Printer
Run Program>control printers
WaitWindowOpen>Printers and Faxes
Press ALT
Send>f
Send>a
WaitWindowOpen>Add Printer Wizard
Send>n
Send>A
Wait>1
GetCheckBox>Add Printer Wizard,&Automatically detect and install my Plug and Play printer,Box1
MessageModal>Box1
Label>exit