Amazon.com
Disclaimer
19 August 2010
18 August 2010
Easily Open the Containing Folder of Any File in a New Window
Download
15 August 2010
Create a Sendto Item to Securely Delete Files
Select file(s) and/or folder(s), right-click, and select Send To → Secure Delete
To install: Simply decompress the zip archive's contents to any folder and drop a shortcut to Secure Delete.exe in your SendTo folder (go to Start Menu → Run... → shell:sendto). Right-click the shortcut, click Advanced, and check Run as Administrator. Source ahk file is included.
Download
15 April 2010
Display Brightness Level in Taskbar
I wanted a little notification for the current display brightness level. I couldn't find one, but the creator of the Display Brightness Vista Gadget made a console version of his app. I'm not much of a programmer, but I was able to use AutoHotkey to make the current display brightness level appear in the notification area of the taskbar. I'm providing it for download here free. You can't change the brightness level with this utility as you can the gadget... maybe that will be in a revision someday; it only displays the current level in the icon and as a tooltip. Just unzip to any location and run Brightness.exe. The icon in the notification area will change with the current display brightness. It should work on Windows Vista or Windows 7, 32/64-bit. If you have any issue, let me know in the comments. Thanks.
Download
01 February 2010
Toolbars for Powerpoint 2007 Macros Are Unnecessary
Microsoft Office Powerpoint does not have persistent macros like in Word, so creating an add-in is required. However, you can create all macros in a PPTM (Macro-Enabled Powerpoint Presentation), and have an add-in (PPAM) where the AutoOpen () section merely opens the macro-containing file without a visible window. The macros can then be added to the Quick Access Toolbar in Powerpoint 2007.
Example:
Create a new Powerpoint Presentation and in VBA editor, add a module with the code below. Sign it with your personal digital signature and save it to a PPTM file and then save as a PPAM file.
Sub Auto_Open()
Application.Presentations.Open _
FileName:="
End Sub