| Author |
Message |
Topic: Load datafile into Listview |
Carnifex
Replies: 2
Views: 332
|
Forum: Ask for Help Posted: Fri Nov 13, 2009 4:13 am Subject: Load datafile into Listview |
Fixed it !
Gui, ListView, Inc
Loop, Read, %SaveFileInc%
{
Loop, parse, A_LoopReadLine, `,
{
if A_Index = 1
{
LV_Add("", "", "", &q ... |
Topic: Load datafile into Listview |
Carnifex
Replies: 2
Views: 332
|
Forum: Ask for Help Posted: Fri Nov 13, 2009 2:34 am Subject: Load datafile into Listview |
I made an easier version, but it still gives the same result: (I also changed the way the script saves the data to the file.
Maybe there's a way to save the column data to a text file using tab del ... |
Topic: Load datafile into Listview |
Carnifex
Replies: 2
Views: 332
|
Forum: Ask for Help Posted: Fri Nov 13, 2009 12:02 am Subject: Load datafile into Listview |
I'm trying to write a program to keep track of my finances.
I made a simple GUI with the function to save added data in two different ListViews (one for income, one for outgoing(?))
The followin ... |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 409
|
Forum: Ask for Help Posted: Wed Nov 11, 2009 2:27 am Subject: ControlSend using Subroutines |
Carnifex, have you tried any other send modes like SendPlay or SendInput? You may have already tried these, but I just thought I would check
wSend:
SendPlay {Up down}
Sleep 100 ... |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 409
|
Forum: Ask for Help Posted: Wed Nov 11, 2009 2:09 am Subject: ControlSend using Subroutines |
| I fail to understand why you're using ControlGet to get the window's HWND. Does it not work if you specify WinTitle in ControlSend itself? There doesn't appear to be any unique designation in your c ... |
Topic: Mouse macro help |
Carnifex
Replies: 5
Views: 181
|
Forum: Ask for Help Posted: Tue Nov 10, 2009 6:45 pm Subject: Mouse macro help |
lbutton::
send,{lbutton down}
return
rbutton::
exitapp
actually it's
lbutton::
send,{lbutton down}
return
rbutton::
send,{lbutt ... |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 409
|
Forum: Ask for Help Posted: Tue Nov 10, 2009 4:33 pm Subject: ControlSend using Subroutines |
SetTitleMatchMode, 2
SetKeyDelay, 100, 1000
ControlSend,, {up down}{up up}, ahk_id %handle%
Doesn't work. |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 409
|
Forum: Ask for Help Posted: Tue Nov 10, 2009 12:51 pm Subject: ControlSend using Subroutines |
I appreciate the help guys !
@amazed, it was a wild guess if "A_ThisLabel" would work with a ControlSend, thank you for explaining.
I know a Return was lacking from the wSend subroutin ... |
Topic: ControlSend using Subroutines |
Carnifex
Replies: 15
Views: 409
|
Forum: Ask for Help Posted: Tue Nov 10, 2009 4:24 am Subject: ControlSend using Subroutines |
I am writing an automation script for a game I play a lot, but I am in desperate need of some help with the ControlSend command using Subroutines in relation to Hwnds.
In the following piece of cod ... |
| |