| Author |
Message |
Topic: ControlGet not retrieving text |
elchapin
Replies: 4
Views: 441
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 7:08 pm Subject: ControlGet not retrieving text |
@Sivvy: I sent output to a MsgBox, and it is full of spaces (blank rows?) just like the text file.
@HotKeyIt: Thanks, I ran your script, but still received "empty" results. I got a lon ... |
Topic: How to block a keys usage |
elchapin
Replies: 6
Views: 517
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 6:05 pm Subject: How to block a keys usage |
| @Sivvy - nice call, I was just getting rid of F4 altogether! |
Topic: How to block a keys usage |
elchapin
Replies: 6
Views: 517
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 5:49 pm Subject: How to block a keys usage |
F4::
return
|
Topic: ControlGet not retrieving text |
elchapin
Replies: 4
Views: 441
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 5:30 pm Subject: ControlGet not retrieving text |
I want to get text from a listbox that has several columns and +4000 rows. But when I run my script, I get the correct number of lines but no text.
ControlGet, Output, List, , SysListView322, Ro ... |
Topic: character limit with a_loopfield? |
elchapin
Replies: 13
Views: 457
|
Forum: Ask for Help Posted: Wed Jun 11, 2008 1:27 pm Subject: character limit with a_loopfield? |
Now the problem is the soft line breaks I think.
Is this what you want?
FileRead, OutputVar, sample6.txt
FileAppend, `n, output.cvs
Loop, Parse, OutputVar, `n
{
Loop, Parse, A_LoopFiel ... |
Topic: character limit with a_loopfield? |
elchapin
Replies: 13
Views: 457
|
Forum: Ask for Help Posted: Tue Jun 10, 2008 9:19 pm Subject: character limit with a_loopfield? |
I tried to pinpoint the problem by creating a text file with "^" for delimiters. Two fields are used: title^body^.
Here's a link to the text file named "sample6.txt":
Loop, ... |
Topic: character limit with a_loopfield? |
elchapin
Replies: 13
Views: 457
|
Forum: Ask for Help Posted: Tue Jun 10, 2008 3:58 pm Subject: character limit with a_loopfield? |
MmmHmmm it something in the field. I don't think using a Unicode character as a delemiter is going to work too well.
Is it possible to swap that out with a regular ANSI character (like @ or ^ or so ... |
Topic: character limit with a_loopfield? |
elchapin
Replies: 13
Views: 457
|
Forum: Ask for Help Posted: Tue Jun 10, 2008 3:55 pm Subject: Re: character limit with a_loopfield? |
#MaxMem 65 ; Default Value
VarSetCapacity( A,(32*1024*1024-1),65 ), VarSetCapacity( B,(32*1024*1024-0),66 ), L := A "`n" B
Loop, Parse, L, `n
MsgBo ... |
Topic: character limit with a_loopfield? |
elchapin
Replies: 13
Views: 457
|
Forum: Ask for Help Posted: Tue Jun 10, 2008 3:34 pm Subject: character limit with a_loopfield? |
Zappo- Thanks for testing that...
I'm pretty sure the delimiters aren't found within the field. I'm using ÿ (alt+0255) as the delimiter, but I'm going to try to isolate the problem with your examp ... |
Topic: character limit with a_loopfield? |
elchapin
Replies: 13
Views: 457
|
Forum: Ask for Help Posted: Tue Jun 10, 2008 2:37 pm Subject: character limit with a_loopfield? |
Is there a character limit with A_LoopField?
I have 122301 characters in one field, and I'm parsing the fields from a text file. But this field gets cut off and the remaining part is treated as an ... |
Topic: regexreplace help |
elchapin
Replies: 2
Views: 282
|
Forum: Ask for Help Posted: Wed Jun 04, 2008 2:24 pm Subject: regexreplace help |
That worked, thanks!
If I understand right, the (\d{7}) matches the first 7 digits?
And the first backslash makes the second backslash literal?
FixedField := RegExReplace(FixedField, &q ... |
Topic: regexreplace help |
elchapin
Replies: 2
Views: 282
|
Forum: Ask for Help Posted: Tue Jun 03, 2008 11:04 pm Subject: regexreplace help |
I am trying to replace two different parts of a filepath:
The filepath is the 13th column of a csv file, and looks something like this:
V:\AEP\PEDD_Exports\CAMPBELL_20080512_001\OF_0001\AEPGC00000 ... |
Topic: Tickler File |
elchapin
Replies: 1
Views: 3084
|
Forum: Scripts & Functions Posted: Thu Mar 27, 2008 9:02 pm Subject: Tickler File |
| I created a little Tickler File program with Autohotkey. You run the script, select files in Windows Explorer, hit Alt+T to add the files to your tickler list, with notes and appropriate date. Then ... |
Topic: Possible to detect if headphones are plugged in or not? |
elchapin
Replies: 13
Views: 1120
|
Forum: Ask for Help Posted: Thu Mar 20, 2008 3:35 pm Subject: Possible to detect if headphones are plugged in or not? |
I wondered if we could revisit this topic... has anyone figured out how to detect when regular headphones are plugged in or disconnected?
I recently saw this article over at lifehacker... there's a ... |
Topic: triple press, problem with "send" |
elchapin
Replies: 7
Views: 441
|
Forum: Ask for Help Posted: Tue Aug 21, 2007 8:43 pm Subject: triple press, problem with "send" |
| @Laszlo - Now, that's beautiful! I guess I haven't learned all of the built in variables yet! Thanks! |
| |