Search found 1023 matches

by Grovkillen
Thu Nov 07, 2019 5:29 pm
Forum: Technical / Scripting
Topic: Help with Regex
Replies: 6
Views: 3930

Re: Help with Regex

A piece of advice, pay for regexBuddy
by Grovkillen
Thu Nov 07, 2019 3:59 am
Forum: The Water Cooler
Topic: Water Cooler
Replies: 2
Views: 13319

Re: Water Cooler

Hey! Water's spiked with something? I mean it's casual Friday after all. See you at lunch?
by Grovkillen
Sat Nov 02, 2019 9:55 am
Forum: Beginners
Topic: Round a number
Replies: 6
Views: 5312

Re: Round a number

Simply truncate it.
by Grovkillen
Thu Oct 10, 2019 12:43 pm
Forum: Technical / Scripting
Topic: fsStayOnTop not working with Setfocus
Replies: 1
Views: 1485

Re: fsStayOnTop not working with Setfocus

Have the window not modal and loop the dialog command.
by Grovkillen
Thu Oct 10, 2019 5:56 am
Forum: Technical / Scripting
Topic: xlGetSheetDims returns wrong number of rows
Replies: 4
Views: 3081

Re: xlGetSheetDims returns wrong number of rows

Are you sure you haven't clicked or marked a cell some rows below? What you see isn't always what Excel sees...
by Grovkillen
Sat Oct 05, 2019 12:21 pm
Forum: Technical / Scripting
Topic: Pressing two keys simultaneously
Replies: 5
Views: 4383

Re: Pressing two keys simultaneously

Study the manual in the section for key strokes.
by Grovkillen
Tue Oct 01, 2019 11:59 am
Forum: Technical / Scripting
Topic: How does the dialog progress bar work?
Replies: 2
Views: 1792

Re: How does the dialog progress bar work?

Have you tried searching the forum?

Code: Select all

SetDialogProperty>Dialog1,ProgressBar1,Position... Etc.

by Grovkillen
Mon Sep 30, 2019 4:17 am
Forum: Technical / Scripting
Topic: Entering text into a web form (Easy for most people I bet)
Replies: 4
Views: 2573

Re: Entering text into a web form (Easy for most people I bet)

Yes I understand but what do you need the website in the first place? What is it that you are trying to do with the site? Is it something that could be done using a offline tool is my question.
by Grovkillen
Mon Sep 30, 2019 4:15 am
Forum: Technical / Scripting
Topic: Entering text into a form from a txt file.... text is truncated?
Replies: 5
Views: 3280

Re: Entering text into a form from a txt file.... text is truncated?

Have you added delay inn the send text command (I.e. key delay)?
by Grovkillen
Sun Sep 29, 2019 5:25 pm
Forum: Technical / Scripting
Topic: Entering text into a web form (Easy for most people I bet)
Replies: 4
Views: 2573

Re: Entering text into a web form (Easy for most people I bet)

It seems like a not very well designed site. What's the purpose of using it, to screen shot a whole web page? If so, then I suggest you use phantomJS or HTMLtoPDF (this one also handles PNG).
by Grovkillen
Sat Sep 07, 2019 6:42 am
Forum: Technical / Scripting
Topic: Is there any Alternative of IEDoDownload?
Replies: 4
Views: 3686

Re: Is there any Alternative of IEDoDownload?

That flag is probably going in the registry so you could look at it and disable it via script.
by Grovkillen
Mon Sep 02, 2019 2:52 pm
Forum: Beginners
Topic: Another way to setup IF, ELSE statements
Replies: 8
Views: 14439

Re: Another way to setup IF, ELSE statements

Why not use a variable which is set to (as an example) 1 when the script run the first time and when it's NOT 945 it's set to 0. Have the loop only trigger when it's 945 AND the variable is 0.
by Grovkillen
Tue Aug 20, 2019 5:37 pm
Forum: Technical / Scripting
Topic: I am running a script in the macro scheduler... and need a daily time check
Replies: 6
Views: 3909

Re: I am running a script in the macro scheduler... and need a daily time check

What I like about my approach is that you can add as many checks as you want and also send day (number) of the week, month or whatever to have long time tasks triggered in the same mechanism.
by Grovkillen
Sat Aug 17, 2019 11:38 am
Forum: Technical / Scripting
Topic: I am running a script in the macro scheduler... and need a daily time check
Replies: 6
Views: 3909

Re: I am running a script in the macro scheduler... and need a daily time check

I do it like this:

Code: Select all

//Check loop
Label>StartOfLoop
Hour>HH
Min>MM
Sec>SS
GoSub>CheckClock,%HH%:%MM%:%SS%
Wait>0.25
Goto>StartOfLoop

SRT>CheckClock
If>CheckClock_Var_1=12:00:00
//Send to sub
Endif>

//Add more checks

END>CheckClock
by Grovkillen
Wed Jul 10, 2019 5:52 am
Forum: Technical / Scripting
Topic: How to change parameter in a Macro using the Dialog
Replies: 2
Views: 1963

Re: How to change parameter in a Macro using the Dialog

Are they compiled as exe or are they plain macro files?
Sign up to our newsletter for free automation tips, tricks & discounts