Search found 438 matches

by adroege
Mon Feb 14, 2011 6:47 pm
Forum: Technical / Scripting
Topic: Couple questions
Replies: 22
Views: 18225

Yes, I think you should download the eval version of WebRecorder and try it. There are examples (I think) inside the help after you install it. Getting the data back can be done several ways. Many times you will know the particular "tag" by name or it's ID (tag is another way to say data field in th...
by adroege
Sat Feb 12, 2011 1:35 pm
Forum: Technical / Scripting
Topic: Unix to DOS Text file conversion
Replies: 5
Views: 8416

but I have a message "out of memory" At least you are able to finish now (line by line) and not run out of memory! There may be some special purpose utilities coded in C or assembly language which would be faster - you could do a google search for those. Here is one example http://www.wischik.com/l...
by adroege
Sat Feb 12, 2011 9:01 am
Forum: Technical / Scripting
Topic: Unix to DOS Text file conversion
Replies: 5
Views: 8416

//Change this to 0 if this does not suit your needs Let>WLN_NOCRLF=1 Did you not notice the comments at the top? When I had time to actually run the sample code simply changing the variable at the top from 1 to 0 made it work perfectly for me. A file with only LF (line feed) characters as used by U...
by adroege
Fri Feb 11, 2011 2:11 pm
Forum: General Discussion
Topic: Code Editor Opens on its own.
Replies: 5
Views: 11849

While I do set focus to specific items at times While I believe you that this may be working for you in this particular case, in general the "SetFocus" command should be used almost religiously to ensure trouble free scripts. Any thing that happens out of the ordinary can cause the focus of one win...
by adroege
Fri Feb 11, 2011 12:55 pm
Forum: Beginners
Topic: newbee question
Replies: 4
Views: 5653

Sorry, No. VBScript (.vbs) is a computer language invented by Microsoft. While Macro Scheduler can incorporate some code written in VBscript, it can not translate it's own native commands into an export format of .vbs. The only thing I can think of that might help you now, is to run a Remote Desktop...
by adroege
Thu Feb 10, 2011 8:35 pm
Forum: Beginners
Topic: newbee question
Replies: 4
Views: 5653

I am not allowed to install the macro sheduler on my professional -windows vista version - PC (also not accepted to use "foreign" exe.files) If you can't install software on the "professional" PC including EXE files, then I don't know how you are going to run them then. Macro Scheduler can compile ...
by adroege
Thu Feb 10, 2011 6:54 pm
Forum: Technical / Scripting
Topic: Couple questions
Replies: 22
Views: 18225

http://www.jollygiant.com/support/faqs.php#Do_you_have_any_samples_for_automating_the_program check out this link Look especially at the topic titled "Automation" You also said you know VBScript..... remember Macro Scheduler does VBScript as well Just put it between tags like so: VBStart ' vb code g...
by adroege
Thu Feb 10, 2011 6:46 pm
Forum: Technical / Scripting
Topic: Couple questions
Replies: 22
Views: 18225

On-line help then?
by adroege
Thu Feb 10, 2011 6:40 pm
Forum: Technical / Scripting
Topic: Couple questions
Replies: 22
Views: 18225

Looking at the web page for QWS3270 http://www.jollygiant.com/products/qws3270-windows-features.php I see the following listed as a windows "feature": Dynamic Data Exchange Support to allow other Windows applications to send data to the 3270 session and receive data from the 3270 session. If you hav...
by adroege
Thu Feb 10, 2011 6:22 pm
Forum: Technical / Scripting
Topic: Couple questions
Replies: 22
Views: 18225

The devil is in the details.... 1.) Is the VM hosted on a machine you control? 2.) How do you interact with that VM? 2a) Do you use RDP (remote desktop Protocol) to open a window to the VM? 2b) OR are you accessing it directly from the VM software? 2c) i.e. Are you using something like VMWare Player...
by adroege
Thu Feb 10, 2011 1:18 pm
Forum: Beginners
Topic: Webrecorder
Replies: 5
Views: 6977

Should be possible.

Please post your code for review.
by adroege
Wed Feb 09, 2011 5:29 pm
Forum: Technical / Scripting
Topic: Unix to DOS Text file conversion
Replies: 5
Views: 8416

This code has not been tested, but it should get you on the right track. Since it processes one line at a time instead of the whole file in memory, this should work for you on very large files. //Change this to 0 if this does not suit your needs Let>WLN_NOCRLF=1 Let>k=1 Label>start ReadLn>c:\temp\te...
by adroege
Tue Feb 08, 2011 6:28 pm
Forum: General Discussion
Topic: Resolve Local IP Address
Replies: 5
Views: 11129

This worked for me (popped up the message with the ip address) MS version 12.0.8 OS=XP SP3 //get local IP address VBSTART 'On Error Resume Next wbemFlagReturnImmediately = &h10 wbemFlagForwardOnly = &h20 Set objWMIService = GetObject("winmgmts:\\" & "." & "\root\CIMV2") Set colItems = objWMIService....
by adroege
Tue Feb 08, 2011 1:05 pm
Forum: Technical / Scripting
Topic: HTTP POST with MD5 Digest Authentication
Replies: 3
Views: 7325

Need to duplicate this with some equivalent in Macroscheduler environment: Since you have it already coded and working in perl - why not simply execute your perl from within Macro Scheduler like so ? There is an easy to install Windows port of perl available from Active State. They also have a free...
by adroege
Fri Feb 04, 2011 9:31 pm
Forum: Technical / Scripting
Topic: Couple questions
Replies: 22
Views: 18225

how can I pass a user input parameter to a query? Example //Connect to Datasource Let>str=Driver={MySQL ODBC 3.51 Driver};Server=someserver.com;Port=3306;Database=example;User=admin;Password=xxxx;Option=3; DBConnect>str,dbH //Perform SELECT query Input>myval,What is the value to search? Let>SQL=sel...
Sign up to our newsletter for free automation tips, tricks & discounts