Search found 12 matches
- Wed Mar 17, 2010 3:24 am
- Forum: Technical / Scripting
- Topic: IE_ExtractTag access violation module ntdll
- Replies: 6
- Views: 7802
Initialise variables!
My memory error mysteriously disappeared at some stage but I was still not able to read past the first link. I guess you take what you get when dealing with a 3rd party site. Following from Marcus' suggestion to use SPAN, I modified my code to extract the link (A) when trying to parse the second cel...
- Fri Mar 12, 2010 2:41 pm
- Forum: Technical / Scripting
- Topic: IE_ExtractTag access violation module ntdll
- Replies: 6
- Views: 7802
Tag Extractor
I agree that when you use the tag extractor and click on each item you get the SPAN element returned except for the second cell. I can't test this right now but the link in the second cell is NOT within a SPAN (I can't remember what it returns, probably TD). However, if you click in the white space ...
- Fri Mar 12, 2010 1:16 pm
- Forum: Technical / Scripting
- Topic: IE_ExtractTag access violation module ntdll
- Replies: 6
- Views: 7802
Sample HTML
Sample of HTML input posted again, as requested. <TD name="ColumnData" valign="top" width="200" align="Center"><SPAN name="RFQCloseDate" class="outputData">12/03/10 09:00:00</SPAN><SPAN name="RFQCloseDate_ValidationError" class="ValidationErrorText"></SPAN></TD> <TD name="ColumnData" valign="top" wi...
- Thu Mar 11, 2010 11:38 pm
- Forum: Technical / Scripting
- Topic: IE_ExtractTag access violation module ntdll
- Replies: 6
- Views: 7802
IE_ExtractTag string or buffer limit?
Can anyone confirm if there is a string or buffer limit when working with IE_ExtractTag? If so, is there a way to increase it? Looking at the second table cell from my previous post, and comparing it with a similar instance from about a year ago, I calculated the new cell is 5 characters longer. New...
- Thu Mar 11, 2010 7:29 am
- Forum: Technical / Scripting
- Topic: IE_ExtractTag access violation module ntdll
- Replies: 6
- Views: 7802
IE_ExtractTag access violation module ntdll
Hi, I have a script (v11.1) that trolls through a Websphere-developed site and extracts data from a HTML table. The script has been running fine for about a year but in the last 24 hours has started failing with this error: Access Violation at xxx in module ntdll.dll. Read of address yyy. I have als...
- Tue Nov 28, 2006 11:41 pm
- Forum: Technical / Scripting
- Topic: Script hangs on child IE window
- Replies: 26
- Views: 32621
- Thu Nov 23, 2006 9:50 pm
- Forum: Technical / Scripting
- Topic: Script hangs on child IE window
- Replies: 26
- Views: 32621
Thanks for the tip. Could you comment on this part of the macro where one IE window is being closed and another is being opened: LibFunc>hIE,FormFill,r,%IE[0]%,str:FrameName,str:FormName,str:FieldName,str:FieldValue,submit //Let>FrameName={""} //Let>FormName={"frmLogin"} //Let>TagValue={"btnLogin"} ...
- Thu Nov 23, 2006 5:52 am
- Forum: Technical / Scripting
- Topic: Script hangs on child IE window
- Replies: 26
- Views: 32621
Script hangs on child IE window
(This is the same code I was trying to run in topic 3430 but a different problem). I'm trying to script a 3rd party website. The first page is a login page. When submit is clicked, the login page is closed and and a new IE window is opened to handle subsequent requests. I believe this is handled by ...
- Thu Nov 23, 2006 2:53 am
- Forum: Technical / Scripting
- Topic: IE7/WinXP cannot close 'Windows Internet Explorer' dialog
- Replies: 7
- Views: 19638
Solution: LibFunc>hIE,FormFill,r,%IE[2]%,str:FrameName,str:FormName,str:FieldName,str:FieldValue,submit Wait>delay WaitWindowOpen>Windows Internet Explorer Wait>delay SetFocus>Windows Internet Explorer Wait>delay Press ENTER This code will work if *not* stepped through with the debugger! By not step...
- Thu Nov 23, 2006 1:06 am
- Forum: Technical / Scripting
- Topic: IE7/WinXP cannot close 'Windows Internet Explorer' dialog
- Replies: 7
- Views: 19638
hmm....If the window is JavaScript, you may need to use ImageRecognition to close it. With the window open, open ViewSystemWindows from the MacroScheduler menu and see what objects are accessible. No, I'm almost certain the window is not a javascript alert box. I don't believe ImageRecognition will...
- Wed Nov 22, 2006 10:30 pm
- Forum: Technical / Scripting
- Topic: IE7/WinXP cannot close 'Windows Internet Explorer' dialog
- Replies: 7
- Views: 19638
Try the simple solution first. Look for a setting in IE to turn off the dialog warning you are getting. Yes, this was one of the first things I looked at. I have had a closer look at the IE7 release notes (accessible from http://www.microsoft.com/windows/ie/support/default.mspx ) and they mention a...
- Wed Nov 22, 2006 1:09 pm
- Forum: Technical / Scripting
- Topic: IE7/WinXP cannot close 'Windows Internet Explorer' dialog
- Replies: 7
- Views: 19638
IE7/WinXP cannot close 'Windows Internet Explorer' dialog
I am using MacroScheduler 8.1 (Eval) to run a script generated by WebRecorder. The script enters username and password on the first visited page. Upon submission via FormFill (or clicking on the submit button via clicktag), a javascript method is called that validates the user input and opens a new ...