Search found 1023 matches

by Grovkillen
Wed Jul 10, 2019 5:51 am
Forum: Beginners
Topic: help with custom dialog
Replies: 2
Views: 2535

Re: help with custom dialog

You may want to look into the web API commands.
by Grovkillen
Fri Jun 28, 2019 12:01 pm
Forum: Technical / Scripting
Topic: Executing or opening an invalid file path
Replies: 5
Views: 3305

Re: Executing or opening an invalid file path

Yes you can set the dialog property using the command setDialogProperty.
by Grovkillen
Fri Jun 28, 2019 9:27 am
Forum: Technical / Scripting
Topic: Executing or opening an invalid file path
Replies: 5
Views: 3305

Re: Executing or opening an invalid file path

Disable the button until the variable is filled out and confirmed valid?
by Grovkillen
Mon Jun 24, 2019 5:33 am
Forum: Technical / Scripting
Topic: Get pid of the process started using RunProgram
Replies: 2
Views: 5588

Re: Get pid of the process started using RunProgram

I thought I'd add my way of doing this: Let>APP_EXE=your_unique_exe_file_name GetProcessIDs>%APP_EXE%.exe,RAW_LIST Let>TEMP_TEST=RAW_LIST_1*0 If>TEMP_TEST=0 Let>SCRIPT_PID=RAW_LIST_1 Else> Let>SCRIPT_PID=EDITOR Endif> I have all my scripts populate a "script_heartbeat.ini" file with stuff regarding ...
by Grovkillen
Sat Jun 22, 2019 8:26 pm
Forum: Technical / Scripting
Topic: vbs
Replies: 10
Views: 4589

Re: vbs

Try a message in the VBA code, containing the path variable to see how it looks.
by Grovkillen
Sat Jun 22, 2019 6:14 pm
Forum: Technical / Scripting
Topic: vbs
Replies: 10
Views: 4589

Re: vbs

I'm nowhere near a computer (reading on a phone) and thought you could test to add quotes around the input to the VBA (the VBRun command).
by Grovkillen
Sat Jun 22, 2019 6:14 am
Forum: Technical / Scripting
Topic: vbs
Replies: 10
Views: 4589

Re: vbs

Tried to quote the input variables?

Code: Select all

VBRun>MoveFolder,"%Source%","%Dest%"
by Grovkillen
Thu Jun 20, 2019 10:51 am
Forum: Technical / Scripting
Topic: Remove included script
Replies: 10
Views: 4788

Re: Remove included script

@ Grovkillen, Well blow me down! It actually worked. I really did not expect it to work for the aforementioned reasoning! It even let the file be deleted and re-written. I tried that because I want to get rid of previous code. You are a genius, Grovkillen. Thank you. Thank you. Thank you. I regret ...
by Grovkillen
Tue Jun 18, 2019 10:22 pm
Forum: Technical / Scripting
Topic: Remove included script
Replies: 10
Views: 4788

Re: Remove included script

If you use include from file and actually produce a file with the subroutines you can later overwrite this external file and reloop the include from file. Just a thought, haven't tried it.
by Grovkillen
Sat Jun 15, 2019 11:34 pm
Forum: Beginners
Topic: Sending Extremely Long Characters
Replies: 1
Views: 2077

Re: Sending Extremely Long Characters

Code: Select all

Let>STRING=
Let>k=0
Repeat>k
  Let>k=k+1
  Concat>STRING,*
Until>k=100
MDL>STRING
by Grovkillen
Tue Jun 11, 2019 1:27 pm
Forum: Technical / Scripting
Topic: Date Format Problem
Replies: 5
Views: 3329

Re: Date Format Problem

Great JRL! I guess my example could be useful in generic ways of doing conversions while yours is great in this specific question.
by Grovkillen
Mon Jun 10, 2019 1:15 pm
Forum: Scripts and Tips
Topic: Epoch time using Python vs MS
Replies: 4
Views: 11455

Re: Epoch time using Python vs MS

I have found a way of determing the daylight and timezone using the registry: RegistryReadKey>HKEY_LOCAL_MACHINE,SYSTEM\CurrentControlSet\Control\TimeZoneInformation,Bias,BIASED_TIME_ZONE RegistryReadKey>HKEY_LOCAL_MACHINE,SYSTEM\CurrentControlSet\Control\TimeZoneInformation,StandardBias,BIASED_DST_...
by Grovkillen
Mon Jun 10, 2019 12:57 pm
Forum: Technical / Scripting
Topic: OCR on PDF
Replies: 6
Views: 3387

Re: OCR on PDF

Yes that would probably be true.
by Grovkillen
Fri Jun 07, 2019 4:55 am
Forum: Technical / Scripting
Topic: OCR on PDF
Replies: 6
Views: 3387

Re: OCR on PDF

If you look for the screen DPI (it's been mentioned in other threads) you see that these can differ and it'll make the OCR miss it's target.
by Grovkillen
Thu Jun 06, 2019 8:04 pm
Forum: Technical / Scripting
Topic: Date Format Problem
Replies: 5
Views: 3329

Re: Date Format Problem

GoSub>MONTHS_FIX Month>MONTH_NUMBER MidStr>1,1,TEST If>TEST=0 MidStr>2,1,MONTH_NUMBER EndIf> Let>VERBOSE_MONTH_NAME=MONTH_NAME_%MONTH_NUMBER% SRT>MONTHS_FIX Let>RAW_LIST=January|February|March|April|May|June|July|August|September|October|November|December Separate>RAW_LIST,|,MONTH_NAME END>MONTHS_F...
Sign up to our newsletter for free automation tips, tricks & discounts