Jewtus Posted October 27, 2014 Share Posted October 27, 2014 I have the following command in one of my IE automation scripts WinWait("View Response") and when I have that, it seems to be fine. The reason it is waiting is because the previous step was submitting a form. When I leave this in line with everything, it works fine, but sometimes the form has a submission error so I wanted to set up: If WinWait("View Response","",10) <> 0 then MsgBox(0,"","Failed to submit correctly") Else MsgBox(0,"","submitted") Endif When I set this up, it does the 10 second wait, then kicks up the failed to submit message, even if the window is there. Anyone have any idea what I'm doing wrong? Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted October 27, 2014 Moderators Share Posted October 27, 2014 Jewtus,And what does the Help file say is returned by WinWait? M23 Palestinian 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Spider001 Posted October 27, 2014 Share Posted October 27, 2014 Failure: 0 if timeout occurred. Link to comment Share on other sites More sharing options...
Jewtus Posted October 27, 2014 Author Share Posted October 27, 2014 Oops... I had it backwards... If WinWait("View Response","",10) <> 0 then MsgBox(0,"","submitted") Else MsgBox(0,"","Failed to submit correctly") Endif Its gotta be a Monday or something... Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now