Search found 23 matches
- Thu Nov 04, 2010 8:02 am
- Forum: Technical / Scripting
- Topic: Extract HTML Table to variable (webrecorder)
- Replies: 0
- Views: 3461
Extract HTML Table to variable (webrecorder)
Hi, I'm attempting to create a self contained script that does not require creating files on the hard drive (and subsequently reading back off the hard drive). With WebRecorders ExtractTable function, one may only extract to a csv file. Are there other methods that allow extracting a table structure...
- Fri May 28, 2010 2:32 am
- Forum: Technical / Scripting
- Topic: HTTPRequest with HTTPS
- Replies: 1
- Views: 2590
- Fri May 28, 2010 2:15 am
- Forum: Technical / Scripting
- Topic: HTTPRequest with HTTPS
- Replies: 1
- Views: 2590
HTTPRequest with HTTPS
I'm having an issue using HTTPRequest on a HTTPS website. When attempting HTTPRequest>%url%,,GET,,result I immediately get a 404 result If I try the manual way though and do Run>"C:\Program Files\Internet Explorer\iexplore.exe" %url% the HTTPS site comes up straight away. I have the SSL library inst...
- Thu Apr 09, 2009 9:07 am
- Forum: Beginners
- Topic: Logging Script Run From Webpage
- Replies: 4
- Views: 5682
- Thu Apr 09, 2009 9:02 am
- Forum: Beginners
- Topic: Logging Script Run From Webpage
- Replies: 4
- Views: 5682
hmm... i tried it with and without the quotes via a cmd prompt in the ms directory, result i get is Unable to retrieve http://url/script.scp /LOGFILE=c:\logfile.log View server response? My URL is actually one word eg. url instead of url.com.au, it resolves perfectly fine however, and runs fine as l...
- Thu Apr 09, 2009 8:17 am
- Forum: Beginners
- Topic: Logging Script Run From Webpage
- Replies: 4
- Views: 5682
Logging Script Run From Webpage
Ok, smack me if this one is too basic, but i'm running a script which is hosted online eg. msched.exe http://url/script.scp This launches fine, but I would also like the script to keep a log on the local pc as well, but when i run msched.exe http://url/script.scp /LOGFILE=c:\logfile.log I get a 404 ...
- Wed Apr 01, 2009 9:16 am
- Forum: Technical / Scripting
- Topic: Cannot open clipboard: Access Denied
- Replies: 2
- Views: 6066
- Wed Apr 01, 2009 8:04 am
- Forum: Technical / Scripting
- Topic: OnEvent>WINDOW_OPEN issues
- Replies: 0
- Views: 2728
OnEvent>WINDOW_OPEN issues
Hi All, I've run into an issue in my script regarding several OnEvent> commands that I have. I am using some vbscript inside MS to create and navigate an IE session. Upon launch, several IE windows appear which require clearing before the webpage will load correctly (these are largely smart card rel...
- Wed Apr 01, 2009 7:51 am
- Forum: Technical / Scripting
- Topic: Cannot open clipboard: Access Denied
- Replies: 2
- Views: 6066
Cannot open clipboard: Access Denied
Howdy all, I'm currently receiving the error - Cannot open clipboard: Access denied in one of my scripts which uses the clipboard twice (both copying to, and extracting to a variable) inside an endless loop. A check of the log clearly shows this happening on my first getclipboard> command in the loo...
- Thu Sep 11, 2008 9:29 am
- Forum: Beginners
- Topic: DBQuery on Excel Sheet - Numbers Ignored
- Replies: 3
- Views: 6184
- Thu Sep 11, 2008 9:02 am
- Forum: Beginners
- Topic: DBQuery on Excel Sheet - Numbers Ignored
- Replies: 3
- Views: 6184
DBQuery on Excel Sheet - Numbers Ignored
I'm running the below macro on one of my excel spreadsheets. For some reason it is grabbing all the fields *except* for the fields that are just numbers. As a test i did a MessageModal>StockSheet_10_13 which is one of the fields that stores a number. The resulting messagebox is blank. If I add a let...
- Wed Sep 03, 2008 8:11 am
- Forum: Beginners
- Topic: Position> substring contains a comma
- Replies: 2
- Views: 5147
nvm, i'm an idiot. for anyone else - Let>test=<strong>LOCATION:</strong> %suburb%, QLD<br> Position>%test%,HTMLResponse,1,pos on an unrelated note - is it possible to have position> continue searching a document after it finds the first instance of a specified substring? i.e. can you retrieve multip...
- Wed Sep 03, 2008 8:06 am
- Forum: Beginners
- Topic: Position> substring contains a comma
- Replies: 2
- Views: 5147
Position> substring contains a comma
Hi, I need to locate the following from inside variable %HTMLResponse% LOCATION: %suburb%, QLD however, the following won't work Position><strong>LOCATION:</strong> %suburb%, QLD<br>,HTMLResponse,1,pos Because the comma in my substring cause ms to think that QLD<br> is my string to search, instead o...
- Tue Aug 26, 2008 10:07 am
- Forum: Technical / Scripting
- Topic: Detect Installed Hardware
- Replies: 0
- Views: 2890
Detect Installed Hardware
Howdy all, I'm trying to build in some error checking for a script i'm writing. At this stage the script checks to see if drivers for a wireless modem is installed, and if not installs them. it then adjusts relevant strings for the modem, adds a registry key to launch at startup, connects to the int...
- Thu Jun 26, 2008 9:54 am
- Forum: Technical / Scripting
- Topic: Search for text in a window
- Replies: 3
- Views: 5160
have you tried just using getwindowtext> to dump the entire contents of your window to a variable? You can then use position> to choose your branch. ie. getwindowtext>[windowname],var1 position>[texttofind],%var1%,1,startpos if>%startpos%>0 do something else do something else endif I assume this met...