This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ====================================================================================================================== | |
; AHKRCMS AutoHotkey Right-Click Menu Settings | |
; Function: Customise your AHK right-click menu. | |
; AHK version: AHK 1.1.13.01 | |
; Tested on: Win XP (x86) / Win 7 (x64) | |
; Version: 1.0.00.00/2013-12-04/just me | |
; Remarks: All changes are stored in the key HKEY_CURRENT_USER\Software\Classes\AutoHotkey in the current user | |
; branch of the registry. Changes can be reset easily by clicking the "Restore AHK defaults" button or | |
; removing the entire key with RegEdit.exe manually. | |
; The script relies on the current AHK 1.1 default installation registry keys, folder structures and |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ====================================================================================================================== | |
; Namespace: TransparentListBox | |
; AHK version: AHK 1.1.13.00 | |
; Function: Helper object for transparent ListBoxes | |
; Language: English | |
; Tested on: Win XP (U32) & Win7 x64 (U64) | |
; Version: 0.1.00.00/2013-10-03/just me - Initial release. | |
; ====================================================================================================================== | |
; CLASS TransparentListBox | |
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ====================================================================================================================== | |
; Function: Constants for ListView controls | |
; AHK version: 1.1.05+ | |
; Language: English | |
; Version: 1.0.00.00/2012-04-01/just me | |
; 1.0.01.00/2012-05-20/just me - fixed some typos | |
; ====================================================================================================================== | |
; CCM_FIRST = 8192 (0x2000) | |
; LVM_FIRST = 4096 (0x1000) ; ListView messages | |
; LVN_FIRST = -100 ; ListView notifications |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
#Include Class_CTLCOLORS.ahk | |
OnExit, GuiClose | |
; ---------------------------------------------------------------------------------------------------------------------- | |
LB_SETCURSEL := 0x186 | |
CB_SETCURSEL := 0x14E | |
Red := "FF0000" | |
Green := "00C000" | |
Blue := "0000FF" | |
Pink := "FF20FF" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ====================================================================================================================== | |
; AHK_L 1.1 + | |
; ====================================================================================================================== | |
; Function: Class definitions for windows structures used with DllCall | |
; AHK version: 1.1.05.06 (U 32) / (U64) | |
; Language: English | |
; Tested on: Win XPSP3, Win VistaSP2 (x86) / Win 7 (x64) | |
; Version: 0.0.01.09/2011-12-09/just me | |
; Remarks: To create a structure create a new instance of the class using | |
; MyStruct := New DllStruct(StructStr) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ====================================================================================================================== | |
; Function: Creates AHK #Include files for images providing a function which will internally create a bitmap/icon. | |
; AHK version: 1.1.10.01 (U32) | |
; Script version: 1.0.00.02/2013-06-02/just me - added support for icons (HICON) | |
; 1.0.00.01/2013-05-18/just me - fixed bug producing invalid function names | |
; 1.0.00.00/2013-04-30/just me | |
; Credits: Bitmap creation is based on "How to convert Image data (JPEG/PNG/GIF) to hBITMAP?" by SKAN -> | |
; http://www.autohotkey.com/board/topic/21213-how-to-convert-image-data-jpegpnggif-to-hbitmap/?p=139257 | |
; ====================================================================================================================== | |
; This software is provided 'as-is', without any express or implied warranty. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* _______________________________________________________________________________________ | |
_____ ______ __ _ | |
|_ _| | ____| /_ || | _ _ _ SKAN (Suresh Kumar A N) | |
| | ___ ___ _ __ | |__ __ __ | || |_| | | | | | [email protected] | |
| | / __/ _ \| '_ \| __| \ \/ / | ||___| | | ' | | | |
_| || (_| (_) | | | | |____ > < | | | | | |__| | Created on : 13-May-2008 | |
|_____\___\___/|_| |_|______/_/\_\ |_|(_) |_| \.___/ Last Modified : 10-Aug-2012 | |
[ I C O N E X P L O R E R A N D E X T R A C T O R ] Version : 1.4u | |
_______________________________________________________________________________________ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
SetBatchLines, -1 | |
Gui, New | |
Gui, Margin, 20, 20 | |
; Textfeld mit den Dimensionen der "GroupBox" erstellen | |
Gui, Add, Text, w400 h200 vGB hwndHGB BackGroundTrans Section | |
; Position holen, um den Titel später zentrieren zu können | |
GuiControlGet, GB, Pos | |
; "GroupBox" Rahmen im Textfeld erstellen |
NewerOlder