| Author |
Message |
Topic: Disappearing ListView.. |
Pasukun
Replies: 5
Views: 242
|
Forum: Ask for Help Posted: Wed Jun 11, 2008 3:26 pm Subject: Disappearing ListView.. |
It was a " H" before, then I changed to "H" to see if it had anything to do with the problem.
The problem occurred either way.
Also, the resizing script works fine.
As I res ... |
Topic: Disappearing ListView.. |
Pasukun
Replies: 5
Views: 242
|
Forum: Ask for Help Posted: Wed Jun 11, 2008 3:00 pm Subject: Disappearing ListView.. |
I am having a trouble with the disappearing ListView box. It happens when I press the column headers to sort the listings.
Funny thing is.. it works fine when I click on the 1st column's header, bu ... |
Topic: Removing Pause Script and Suspend Hotkeys from the tray menu |
Pasukun
Replies: 2
Views: 254
|
Forum: Ask for Help Posted: Wed Oct 10, 2007 7:55 pm Subject: Removing Pause Script and Suspend Hotkeys from the tray menu |
Ahh~ I see!
So it is the Menu, Tray, NoStandard.
Excellent!
Thank you very much. |
Topic: Removing Pause Script and Suspend Hotkeys from the tray menu |
Pasukun
Replies: 2
Views: 254
|
Forum: Ask for Help Posted: Wed Oct 10, 2007 6:02 pm Subject: Removing Pause Script and Suspend Hotkeys from the tray menu |
Does anyone know how to remove "Pause Script" and "Suspend Hotkeys" options from the right click tray menu?
I would like only "Exit" to show.
Thank you. |
Topic: Dose AHK support Windows CE 5.0 or Mobile 5.0? |
Pasukun
Replies: 3
Views: 302
|
Forum: Ask for Help Posted: Fri Apr 27, 2007 6:08 pm Subject: Dose AHK support Windows CE 5.0 or Mobile 5.0? |
I have searched almost the entire forum.. and I have found some similar threads.., and from what I have gathered.. AHK does not support the Mobile or the CE.
Oh well.  |
Topic: Dose AHK support Windows CE 5.0 or Mobile 5.0? |
Pasukun
Replies: 3
Views: 302
|
Forum: Ask for Help Posted: Fri Apr 27, 2007 3:50 pm Subject: Dose AHK support Windows CE 5.0 or Mobile 5.0? |
The title of the thread explains it all.
Does AHK support Windows CE 5.0 or Windows Mobile 5.0 by any chance?
I really doubt it, but I figure it won't hurt to ask. |
Topic: Separation Line? (for GUI) |
Pasukun
Replies: 6
Views: 352
|
Forum: Ask for Help Posted: Wed Jan 24, 2007 11:33 pm Subject: Separation Line? (for GUI) |
| Show us what you have so far. |
Topic: Sending commands to hidden cmd |
Pasukun
Replies: 3
Views: 257
|
Forum: Ask for Help Posted: Wed Jan 24, 2007 9:17 pm Subject: Sending commands to hidden cmd |
I had to do something similar like that before.
I wanted to open a uniquely titled DOS window and send a string of syntax to it.
So here is an example of what I did.
DetectHiddenWindows, On
... |
Topic: question about moving mousecursor |
Pasukun
Replies: 2
Views: 187
|
Forum: Ask for Help Posted: Tue Jan 23, 2007 11:16 pm Subject: question about moving mousecursor |
Probably not the smartest way to do it
SysGet, MAX_X, 16
SysGet, MAX_Y, 17
MAX_X := MAX_X / 2
MAX_Y := MAX_Y / 2
CoordMode, Mouse
MouseMove, %MAX_X%, %MAX_Y%
|
Topic: Is possible to make a script with hotkeys that write... |
Pasukun
Replies: 2
Views: 234
|
Forum: Ask for Help Posted: Tue Dec 12, 2006 10:57 pm Subject: Is possible to make a script with hotkeys that write... |
Try this.
PATH = C:\ ;Must end with backslash
FILENAME = Filenames.txt ;Name of the output file.
^B::
ClipBoard =
Send ^c
ClipWait 1
If Clipboard =
{
return
}
... |
Topic: Getting the correct timestamp. |
Pasukun
Replies: 2
Views: 251
|
Forum: Ask for Help Posted: Thu Aug 31, 2006 6:57 pm Subject: Getting the correct timestamp. |
Hot Dang~!
That is PERFECT!
And Here I was writing a script that calculates leap year and days in month...
Thanks a bunch! |
Topic: Getting the correct timestamp. |
Pasukun
Replies: 2
Views: 251
|
Forum: Ask for Help Posted: Thu Aug 31, 2006 6:09 pm Subject: Getting the correct timestamp. |
Is there a way to get a timestamp that is.. for example 180 days ago?
I am trying to write a script that will trim the database to keep only 180 days.
To trim the database.. it only takes timestamps ... |
Topic: XPSysPad |
Pasukun
Replies: 3
Views: 805
|
Forum: Utilities & Resources Posted: Mon Aug 07, 2006 10:01 pm Subject: XPSysPad |
Must have tool for a Sys Admins!
I don't know how I lived without it.
Enjoy.
http://xtort.net/apps/XPSysPad.exe |
Topic: ListView Adding Rows. |
Pasukun
Replies: 7
Views: 345
|
Forum: Ask for Help Posted: Thu Jun 22, 2006 4:20 pm Subject: ListView Adding Rows. |
They BOTH worked!
Excellent!
Thanks a bunch guys!
Veovis,
Perhaps I could set the LV_ADD to have a like 99 columns reserved.
I doubt that I will ever need that many columns, but it is a safe ... |
Topic: ListView Adding Rows. |
Pasukun
Replies: 7
Views: 345
|
Forum: Ask for Help Posted: Wed Jun 21, 2006 9:57 pm Subject: ListView Adding Rows. |
Veovis,
As I was trying to use your method, I realized that it is basically the same scenario with a different variable names. From Var1,Var2,Var3,Var4,Var5 to Part1,Part2,Part3,Part4,Part5.
I t ... |
| |