| Author |
Message |
Topic: Embedded Parsing Loop and ListView |
Jeremiah
Replies: 17
Views: 262
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 2:00 am Subject: Embedded Parsing Loop and ListView |
| @J: what I meant to say is that probably anything you can think of doing with DSV has already been done with the CSV / table libs, search for a CELL, search row, search column, add column, replace cel ... |
Topic: HTML DOCTYPE |
Jeremiah
Replies: 7
Views: 150
|
Forum: Ask for Help Posted: Tue Feb 07, 2012 10:29 pm Subject: HTML DOCTYPE |
Here's a little library that I frequently use for coding HTML. Keep in mind, I add as I go so this may not be the best configuration there is.
SendMode Input
:*:<html::<{ ... |
Topic: Embedded Parsing Loop and ListView |
Jeremiah
Replies: 17
Views: 262
|
Forum: Ask for Help Posted: Tue Feb 07, 2012 9:56 pm Subject: Embedded Parsing Loop and ListView |
Using one of the libraries will simplify your life but you probably don't want that
It's not that I don't want to use them, I want to learn how it's done. I'd rather know how my car works befor ... |
Topic: Embedded Parsing Loop and ListView |
Jeremiah
Replies: 17
Views: 262
|
Forum: Ask for Help Posted: Tue Feb 07, 2012 9:13 pm Subject: Embedded Parsing Loop and ListView |
Okay, either I asked it incorrectly, or everyone is misunderstanding me. Regardless of the delimiter, I need to add an unknown amount of columns and rows to the listview.
So, if I don't know the am ... |
Topic: Embedded Parsing Loop and ListView |
Jeremiah
Replies: 17
Views: 262
|
Forum: Ask for Help Posted: Tue Feb 07, 2012 8:33 pm Subject: Embedded Parsing Loop and ListView |
;FileRead, csvFile, C:\SomePath\SomeFile.csv
csvFile=
(
mango,apple
cog,cat,monkey
wind,water,fire,earth
cog,cat,monkey
mango,apple
)
Gui, Add, ListView, w1000 r50 vdisplayLocat ... |
Topic: Embedded Parsing Loop and ListView |
Jeremiah
Replies: 17
Views: 262
|
Forum: Ask for Help Posted: Tue Feb 07, 2012 8:25 pm Subject: Embedded Parsing Loop and ListView |
To add on the first tip: use the CSV option of Loop, parse (see doc)
I saw that in the help file, but can't quite figure out the difference. Either way you're parsing commas. Are you not? And, how ... |
Topic: Embedded Parsing Loop and ListView |
Jeremiah
Replies: 17
Views: 262
|
Forum: Ask for Help Posted: Tue Feb 07, 2012 8:11 pm Subject: Embedded Parsing Loop and ListView |
| What's the best way to add rows to a list view when you have to use an embedded parsing loop? For example say I just read the contents of a csv. I want each line to have its own row in the list view, ... |
Topic: dxdiag |
Jeremiah
Replies: 0
Views: 40
|
Forum: Ask for Help Posted: Thu Jan 19, 2012 11:31 pm Subject: dxdiag |
| I want to make an AHK tool similar to that of the dxdiag tool in Windows. Does anyone know where I can start to even locate that information using AHK other than in dxdiag. The below script works, but ... |
Topic: Multiple Loops |
Jeremiah
Replies: 9
Views: 168
|
Forum: Ask for Help Posted: Fri Jan 06, 2012 10:57 pm Subject: Multiple Loops |
Ooooohhhh. Okay, okay. I get it. If you want to keep it running constently, you need another Loop.
Loop,
{
Loop,
{
ImageSearch, FoundX, FoundY, 388, 428, 484, 444, C:\Users\- ... |
Topic: Multiple Loops |
Jeremiah
Replies: 9
Views: 168
|
Forum: Ask for Help Posted: Fri Jan 06, 2012 10:33 pm Subject: Multiple Loops |
Does this not present you with your desired outcome?
Loop, 10
{
ImageSearch, FoundX, FoundY, 388, 428, 484, 444, C:\Users\-\Pictures\Steps\Step1white.png ;search for Level 1
if ( ... |
Topic: Custom Functions |
Jeremiah
Replies: 18
Views: 270
|
Forum: Ask for Help Posted: Fri Jan 06, 2012 10:27 pm Subject: Custom Functions |
| Okay. But, why is it needed? Is one of them to just replace duplicates, and the other to trim the ends then? |
Topic: Custom Functions |
Jeremiah
Replies: 18
Views: 270
|
Forum: Ask for Help Posted: Fri Jan 06, 2012 9:00 pm Subject: Custom Functions |
| Yeah, I'm not quite up there yet the RegEx. I refrenced the help file against your code, sinkfaze and I understand everything except one thing. Why is it nested inside another RegExReplace? I don't un ... |
Topic: Custom Functions |
Jeremiah
Replies: 18
Views: 270
|
Forum: Ask for Help Posted: Fri Jan 06, 2012 8:02 pm Subject: Custom Functions |
Wow. I sure do feel pretty stupid now.
My bad. Thanks for the help. |
Topic: Will converting to COM speed this up? |
Jeremiah
Replies: 8
Views: 235
|
Forum: Ask for Help Posted: Fri Jan 06, 2012 8:00 pm Subject: Will converting to COM speed this up? |
| Can you copy column K completely out of the xls file and put it into a .txt and operate on it on a line by line basis? That's one method if you don't understand what sinkfaze posted. I've done stuff v ... |
Topic: Multiple Loops |
Jeremiah
Replies: 9
Views: 168
|
Forum: Ask for Help Posted: Fri Jan 06, 2012 7:52 pm Subject: Multiple Loops |
| So, you want it to continue after it locates the ImageSearch? If that's the case, don't "break" the loop, "[url=http://www.autohotkey.com/docs/commands/Continue.htm]continue" it. |
| |