Thread: Hotkeys C++

Results 1 to 7 of 7
  1. #1
    SeptFicelle's Avatar
    Join Date
    Nov 2010
    Gender
    female
    Location
    In your backyard.
    Posts
    75
    Reputation
    10
    Thanks
    16
    My Mood
    Amused

    Question Hotkeys C++

    Can someone help me out here. I'm trying to get a listing of all the keys on a laptop keyboard. As in:

    VK_CONTROL
    VK_SPACE
    VK_SHIFT

    Like that, but for all the keys so that I can have some decent activations. Much thanks to whoever helps me out.
    You see, maddness, as we know, is like gravity, all it takes is a little push.



    -------------------------------------
    Current Focus: C#
    Languages Known: C++, C#, F#, .NET
    Specialty: Inspection Of Algorithms
    Schooling Focus: Astrobiology
    -------------------------------------

    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/overallsig.png[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/userbar97571.gif[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/skypeuser5gu.png[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/3dsmax9userot0.gif[/IMG]

  2. #2
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    That's not keys, These are VK Codes, And are partly Incomplete.

    Code:
    VK_LBUTTON  	01  	Left mouse button
    VK_RBUTTON 	02 	Right mouse button
    VK_CANCEL 	03 	Control-break processing
    VK_MBUTTON 	04 	Middle mouse button (three-button mouse)
    VK_BACK 	08 	BACKSPACE key
    VK_TAB 	09 	TAB key
    VK_CLEAR 	0C 	CLEAR key
    VK_RETURN 	0D 	ENTER key
    VK_SHIFT 	10 	SHIFT key
    VK_CONTROL 	11 	CTRL key
    VK_MENU 	12 	ALT key
    VK_PAUSE 	13 	PAUSE key
    VK_CAPITAL 	14 	CAPS LOCK key
    VK_ESCAPE 	1B 	ESC key
    VK_SPACE 	20 	SPACEBAR
    VK_PRIOR 	21 	PAGE UP key
    VK_NEXT 	22 	PAGE DOWN key
    VK_END 	23 	END key
    VK_HOME 	24 	HOME key
    VK_LEFT 	25 	LEFT ARROW key
    VK_UP 	26 	UP ARROW key
    VK_RIGHT 	27 	RIGHT ARROW key
    VK_DOWN 	28 	DOWN ARROW key
    VK_SELECT 	29 	SELECT key
    VK_PRINT 	2A 	PRINT key
    VK_EXECUTE 	2B 	EXECUTE key
    VK_SNAPSHOT 	2C 	PRINT SCREEN key
    VK_INSERT 	2D 	INS key
    VK_DELETE 	2E 	DEL key
    VK_HELP 	2F 	HELP key
    	30 	0 key
    	31 	1 key
    	32 	2 key
    	33 	3 key
    	34 	4 key
    	35 	5 key
    	36 	6 key
    	37 	7 key
    	38 	8 key
    	39 	9 key
    	41 	A key
    	42 	B key
    	43 	C key
    	44 	D key
    	45 	E key
    	46 	F key
    	47 	G key
    	48 	H key
    	49 	I key
    	4A 	J key
    	4B 	K key
    	4C 	L key
    	4D 	M key
    	4E 	N key
    	4F 	O key
    	50 	P key
    	51 	Q key
    	52 	R key
    	53 	S key
    	54 	T key
    	55 	U key
    	56 	V key
    	57 	W key
    	58 	X key
    	59 	Y key
    	5A 	Z key
    VK_NUMPAD0 	60 	Numeric keypad 0 key
    VK_NUMPAD1 	61 	Numeric keypad 1 key
    VK_NUMPAD2 	62 	Numeric keypad 2 key
    VK_NUMPAD3 	63 	Numeric keypad 3 key
    VK_NUMPAD4 	64 	Numeric keypad 4 key
    VK_NUMPAD5 	65 	Numeric keypad 5 key
    VK_NUMPAD6 	66 	Numeric keypad 6 key
    VK_NUMPAD7 	67 	Numeric keypad 7 key
    VK_NUMPAD8 	68 	Numeric keypad 8 key
    VK_NUMPAD9 	69 	Numeric keypad 9 key
    VK_SEPARATOR 	6C 	Separator key
    VK_SUBTRACT 	6D 	Subtract key
    VK_DECIMAL 	6E 	Decimal key
    VK_DIVIDE 	6F 	Divide key
    VK_F1 	70 	F1 key
    VK_F2 	71 	F2 key
    VK_F3 	72 	F3 key
    VK_F4 	73 	F4 key
    VK_F5 	74 	F5 key
    VK_F6 	75 	F6 key
    VK_F7 	76 	F7 key
    VK_F8 	77 	F8 key
    VK_F9 	78 	F9 key
    VK_F10 	79 	F10 key
    VK_F11 	7A 	F11 key
    VK_F12 	7B 	F12 key
    VK_F13 	7C 	F13 key
    VK_F14 	7D 	F14 key
    VK_F15 	7E 	F15 key
    VK_F16 	7F 	F16 key
    VK_F17 	80H 	F17 key
    VK_F18 	81H 	F18 key
    VK_F19 	82H 	F19 key
    VK_F20 	83H 	F20 key
    VK_F21 	84H 	F21 key
    VK_F22 	85H 	F22 key
    VK_F23 	86H 	F23 key
    VK_F24 	87H 	F24 key
    VK_NUMLOCK 	90 	NUM LOCK key
    VK_SCROLL 	91 	SCROLL LOCK key
    VK_LSHIFT 	A0 	Left SHIFT key
    VK_RSHIFT 	A1 	Right SHIFT key
    VK_LCONTROL 	A2 	Left CONTROL key
    VK_RCONTROL 	A3 	Right CONTROL key
    VK_LMENU 	A4 	Left MENU key
    VK_RMENU 	A5 	Right MENU key
    VK_PLAY 	FA 	Play key
    VK_ZOOM 	FB 	Zoom key
    Unhappy ?
    Google Virtual Key Codes =)., Though some are Hex-Only and don't have a VK Value, Like displayed above.
    Love You All~

  3. The Following 2 Users Say Thank You to Melodia For This Useful Post:

    Hell_Demon (11-02-2010),SeptFicelle (11-02-2010)

  4. #3
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    VkKeyScan("a"); or somethin in that direction
    Ah we-a blaze the fyah, make it bun dem!

  5. The Following User Says Thank You to Hell_Demon For This Useful Post:

    Melodia (11-02-2010)

  6. #4
    SeptFicelle's Avatar
    Join Date
    Nov 2010
    Gender
    female
    Location
    In your backyard.
    Posts
    75
    Reputation
    10
    Thanks
    16
    My Mood
    Amused
    Thank you both, Melodia that was exactly what I needed. If I could thank twice I would. LOL
    You see, maddness, as we know, is like gravity, all it takes is a little push.



    -------------------------------------
    Current Focus: C#
    Languages Known: C++, C#, F#, .NET
    Specialty: Inspection Of Algorithms
    Schooling Focus: Astrobiology
    -------------------------------------

    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/overallsig.png[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/userbar97571.gif[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/skypeuser5gu.png[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/3dsmax9userot0.gif[/IMG]

  7. #5
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Quote Originally Posted by SeptFicelle View Post
    Thank you both, Melodia that was exactly what I needed. If I could thank twice I would. LOL
    Lawl ; Just remember all Numbers are Hex, Or result will be fuzzy.
    Love You All~

  8. #6
    SeptFicelle's Avatar
    Join Date
    Nov 2010
    Gender
    female
    Location
    In your backyard.
    Posts
    75
    Reputation
    10
    Thanks
    16
    My Mood
    Amused
    Yeah, I'm used to hex compiling because I used to use the MIPS Assembly Language to write cheats and stuff like that for Playstation 2. So as a result I'm very familiar with hex values. =)
    You see, maddness, as we know, is like gravity, all it takes is a little push.



    -------------------------------------
    Current Focus: C#
    Languages Known: C++, C#, F#, .NET
    Specialty: Inspection Of Algorithms
    Schooling Focus: Astrobiology
    -------------------------------------

    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/overallsig.png[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/userbar97571.gif[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/skypeuser5gu.png[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/3dsmax9userot0.gif[/IMG]

  9. The Following User Says Thank You to SeptFicelle For This Useful Post:

    -Raz0r- (11-02-2010)

  10. #7
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Interesting =).
    Love You All~

Similar Threads

  1. vb hotkeys
    By cjg333 in forum General Game Hacking
    Replies: 7
    Last Post: 07-23-2008, 01:08 PM
  2. Hotkeys in C++
    By Dave84311 in forum C++/C Programming
    Replies: 7
    Last Post: 09-07-2007, 07:13 AM
  3. My hack release hotkey v1
    By purenoob134 in forum WarRock - International Hacks
    Replies: 23
    Last Post: 07-13-2007, 07:56 PM
  4. Hotkeys for a VB trainer
    By scooby107 in forum Visual Basic Programming
    Replies: 10
    Last Post: 07-03-2007, 12:43 PM
  5. [Tutorial] How To Mack HotKeys On VB
    By TheRedEye in forum WarRock - International Hacks
    Replies: 32
    Last Post: 06-23-2007, 10:24 PM