| Author |
Message |
Topic: Volume OSD for Vista |
MikeG
Replies: 9
Views: 1190
|
Forum: Ask for Help Posted: Sat Jun 16, 2007 3:06 pm Subject: Not great but it works |
| This is what I have done so far... it relies on the tray icon being always in the same position so perhaps could be improved with ImageSearch. I previously had the XP version working and added the Vis ... |
Topic: Need LV_Hide() and LV_Show() for listviews |
MikeG
Replies: 6
Views: 370
|
Forum: Ask for Help Posted: Wed May 03, 2006 11:11 pm Subject: Oh well :-( |
| Thanks, looks like I'll need to rebuild the whole list each time then. I had wanted it to be a sort of "filter as you type" but now I'll just rebuild when clicking a button. |
Topic: Need LV_Hide() and LV_Show() for listviews |
MikeG
Replies: 6
Views: 370
|
Forum: Ask for Help Posted: Wed May 03, 2006 2:11 pm Subject: Need LV_Hide() and LV_Show() for listviews |
| I have a gui containing listview of several hundred items (it's a shopping list application). I would like to have an edit field where a "filter" string is entered, and have the listview hid ... |
Topic: Intercepting Shutdown/Logoff initiated from the start button |
MikeG
Replies: 6
Views: 1062
|
Forum: Ask for Help Posted: Thu Oct 06, 2005 2:40 am Subject: Intercepting Shutdown/Logoff initiated from the start button |
| Is there a way I can temporarilly suspend a shutdown or logoff initiated from the start button from within AHK? I want my script to run a backup program (takes 15-30 seconds) before the shutdown. I ca ... |
Topic: TouchStream LP, an incredible keyboard! |
MikeG
Replies: 4
Views: 1055
|
Forum: Utilities & Resources Posted: Tue Feb 15, 2005 10:25 am Subject: "laser" keyboard |
| We ordered one of these http://www.expansys.com.au/product.asp?code=110909 projection keyboards at work to try out and just because it looked interesting. It was around $200 Australian. There are seve ... |
Topic: Detecting buttons on Canon scanner |
MikeG
Replies: 5
Views: 488
|
Forum: Ask for Help Posted: Mon Feb 14, 2005 4:53 am Subject: Detecting buttons on Canon scanner |
Does anyone know how I can use a script to detect pressing the buttons on the front of my scanner? (Canon LIDE30)
I have tried to find the scan codes using the method described in the help with no ... |
Topic: Better way to set defaults on checkbox & radio buttons |
MikeG
Replies: 5
Views: 881
|
Forum: Wish List Posted: Fri Feb 11, 2005 11:41 am Subject: Better way to set defaults on checkbox & radio buttons |
Thanks Chris,
It all works as expected and simplifies my script considerably.  |
Topic: Better way to set defaults on checkbox & radio buttons |
MikeG
Replies: 5
Views: 881
|
Forum: Wish List Posted: Wed Feb 09, 2005 11:02 pm Subject: oops... |
Hi Chris,
What I am doing is creating a GUI for settings in my script. It basically works like this...
1. Read some settings from the registry (0/1 values)
2. Display a GUI with checkboxes in ... |
Topic: Better way to set defaults on checkbox & radio buttons |
MikeG
Replies: 5
Views: 881
|
Forum: Wish List Posted: Wed Feb 09, 2005 10:11 am Subject: Better way to set defaults on checkbox & radio buttons |
| Problem: The variable returned by checkbox/radio is a 0/1 value, but to initialize it you must use the "checked" option. Disabling GUI elements also requires using the "disabled" option. I would like ... |
Topic: How to trigger Power Management to switch off Display(s)? |
MikeG
Replies: 18
Views: 2828
|
Forum: Ask for Help Posted: Fri Feb 04, 2005 12:33 pm Subject: doesn't "stick" |
I have the same problem, the monitor immediately comes back on.
I have added the off and on commands to hotkeys (also tried the standby)...
^!0::SendMessage, 0x112, 0xF170, 2,, Program M ... |
Topic: Replacing if - else |
MikeG
Replies: 2
Views: 473
|
Forum: Ask for Help Posted: Fri Feb 04, 2005 12:21 pm Subject: wrong variable |
Hi a_clauss
It looks like you're trying to clean out some folders... try this.
Loop,parse,dirs,`,
{
Loop,%A_LoopField%,0,1
FileRecycle,%A_LoopFileFullPath% ; This is safer than Fil ... |
Topic: Checking a password using RunAs & Run (works first time |
MikeG
Replies: 5
Views: 744
|
Forum: Ask for Help Posted: Wed Feb 02, 2005 11:15 pm Subject: Happy now :-) |
Great, Chris
Now it works as I expected. Also works for my own password or any other user too. Here's my working code to validate administrator password...
Loop
{
InputBox,pw,Password,, ... |
Topic: Checking a password using RunAs & Run (works first time |
MikeG
Replies: 5
Views: 744
|
Forum: Ask for Help Posted: Wed Feb 02, 2005 10:58 pm Subject: Thanks |
BoBo,
The script given was just a test example to show the error, the code is part of a much larger script.
Chris,
Thanks for that, I will try it out and let you know how it goes.
I also did g ... |
Topic: Checking a password using RunAs & Run (works first time |
MikeG
Replies: 5
Views: 744
|
Forum: Ask for Help Posted: Wed Feb 02, 2005 1:08 pm Subject: things I've tried |
I have tried the following, all same results...
Run vs RunWait
With & without computername
Other "dummy" programs such as Calc & Notepad with a WinClose
Without UseErrorLevel, just looki ... |
Topic: Checking a password using RunAs & Run (works first time |
MikeG
Replies: 5
Views: 744
|
Forum: Ask for Help Posted: Wed Feb 02, 2005 1:01 pm Subject: Checking a password using RunAs & Run (works first time |
I'm not sure if perhaps this is a bug...
What I am trying to do is restrict actions in a script by prompting for a password first, and for security and maintenance reasons I'd like to use a windows ... |
| |