With that in mind, I'm really wanting this feature added as soon as possible
Thanks!
Search found 36 matches
- Sat Aug 02, 2008 1:24 am
- Forum: Technical / Scripting
- Topic: Interrupt a stalled Page Load to do a Refresh on IE Page.
- Replies: 14
- Views: 15350
- Fri Aug 01, 2008 5:02 pm
- Forum: Technical / Scripting
- Topic: Interrupt a stalled Page Load to do a Refresh on IE Page.
- Replies: 14
- Views: 15350
- Thu Jul 31, 2008 4:34 pm
- Forum: Technical / Scripting
- Topic: Interrupt a stalled Page Load to do a Refresh on IE Page.
- Replies: 14
- Views: 15350
- Tue Jul 29, 2008 12:06 am
- Forum: Technical / Scripting
- Topic: Interrupt a stalled Page Load to do a Refresh on IE Page.
- Replies: 14
- Views: 15350
- Fri Jul 25, 2008 6:20 pm
- Forum: Technical / Scripting
- Topic: httprequest question
- Replies: 3
- Views: 5540
- Fri Jul 25, 2008 5:39 pm
- Forum: Technical / Scripting
- Topic: how to check if website available or not?
- Replies: 1
- Views: 3523
I had a similiar problem and it was addressed in the following post:
http://www.mjtnet.com/usergroup/viewtopic.php?t=4837
Hope it helps
http://www.mjtnet.com/usergroup/viewtopic.php?t=4837
Hope it helps
- Fri Jul 25, 2008 5:37 pm
- Forum: Technical / Scripting
- Topic: httprequest question
- Replies: 3
- Views: 5540
Here's some code that I whipped together using WebRecorder that should accomplish what you are looking to do. Keep in mind that this code is dependent on the IEAUTO.DLL which is apart of the WebRecorder package. I can expand the code to include an encrypted version of the IEAUTO.DLL, but only with M...
- Wed Jul 23, 2008 6:01 pm
- Forum: Technical / Scripting
- Topic: Best way to determine Number of records being processed.
- Replies: 6
- Views: 7564
- Wed Jul 23, 2008 4:38 pm
- Forum: Technical / Scripting
- Topic: Best way to determine Number of records being processed.
- Replies: 6
- Views: 7564
Best way to determine Number of records being processed.
I'm currently running a process that reads each line of a file and then performs some action on the data retrieved: Label>Start ReadLn>%strFileToProcess%.CSV,X,Line If>Line=##EOF##,End_Script Separate>Line,comma,LineValue In my process, I'm incrementing X each time. What I'd like to know is how can ...
- Tue Jul 22, 2008 11:14 pm
- Forum: Technical / Scripting
- Topic: No MS Icon in Task Area of Tool Bar upon System Boot???
- Replies: 6
- Views: 7601
No MS Icon in Task Area of Tool Bar upon System Boot???
I have MS set to automatically load upon initial boot of my system and every time my system boots up, I can't find an Icon to "show" MS in from the Tray Icon Area (lower right corner by clock). If I re-launch MS, it just shows it going to a Minimized State and I still don't have an Icon. I have to C...
- Mon Jul 21, 2008 9:38 pm
- Forum: Technical / Scripting
- Topic: Interrupt a stalled Page Load to do a Refresh on IE Page.
- Replies: 14
- Views: 15350
The problem that I see with what you suggest is that your assuming that the Window Title Bar will say "Microsoft Corporation". I just used Microsoft as my sample site. The Page I am trying to view is actually dynamic and changes each time you hit the F5 Key and I continue to reload the page to get d...
- Wed Jul 16, 2008 8:04 pm
- Forum: Technical / Scripting
- Topic: Interrupt a stalled Page Load to do a Refresh on IE Page.
- Replies: 14
- Views: 15350
Interrupt a stalled Page Load to do a Refresh on IE Page.
I've run into a bit of a problem with a Script that I'm running. I have the following code to load a web page: LibFunc>hIE,Navigate,r,%IE[0]%,http://www.microsoft.com LibFunc>hIE,WaitIE,r,%IE[0]% The problem I am running into is that the second line is waiting for the page to load completely before ...
- Thu Jul 03, 2008 10:12 pm
- Forum: Technical / Scripting
- Topic: Need Help Writing Extracted Data from Web Site to ReportFile
- Replies: 10
- Views: 9553
- Thu Jul 03, 2008 7:08 pm
- Forum: Technical / Scripting
- Topic: Need Help Writing Extracted Data from Web Site to ReportFile
- Replies: 10
- Views: 9553
I have VAREXLICIT=0 so does that mean I don't need to worry about the % signs? I did have the LibLoad Function in my Script, I just omitted it from the post to keep it simple. Thank You So much for the Speedy Reply. As a General Rule, is it better to Code with %IE[0]% or should I be using IE[0]? Als...
- Thu Jul 03, 2008 6:47 pm
- Forum: Technical / Scripting
- Topic: Need Help Writing Extracted Data from Web Site to ReportFile
- Replies: 10
- Views: 9553
I need some clarification here: //Launch IE IE_Create>0,IE[0] IE_Show>IE[0],1,r IE_Navigate>%IE[0]%,http://www.mjtnet.com/usergroup/?c=2,r IE_Wait>%IE[0]%,r Wait>delay I'm recoding all of my lines, and now I have the following: //Launch IE LibFunc>hIE,CreateIE,IE[0],0 LibFunc>hIE,ShowIE,r,IE[0],1 Li...