|
-
Jun 9th, 2000, 08:21 AM
#1
Thread Starter
Addicted Member
Could someone give me the const list
for the key values 'A to Z'
Thanks!
-
Jun 9th, 2000, 08:55 AM
#2
Addicted Member
A = 65
B = 66
C = 67 and so on
a = 97
b = 98
c = 99 and so on
GRAHAM
-
Jun 9th, 2000, 09:04 AM
#3
Thread Starter
Addicted Member
They dont work.
Consts I have look like this. ..
Public Const VK_F1 = &H70
Public Const VK_F2 = &H71
Public Const VK_F3 = &H72
Public Const VK_F4 = &H73
Public Const VK_F5 = &H74
Public Const VK_F6 = &H75
Public Const VK_F7 = &H76
Public Const VK_F8 = &H77
Public Const VK_F9 = &H78
Public Const VK_F10 = &H79 ' This example uses F10
Public Const VK_F11 = &H7A ' This example uses F11
Public Const VK_F12 = &H7B ' This example uses F12
Public Const VK_F13 = &H7C
Public Const VK_F14 = &H7D
Public Const VK_F15 = &H7E
Public Const VK_F16 = &H7F
Public Const VK_F17 = &H80
Public Const VK_F18 = &H81
Public Const VK_F19 = &H82
Public Const VK_F20 = &H83
Public Const VK_F21 = &H84
Public Const VK_F22 = &H85
Public Const VK_F23 = &H86
Public Const VK_F24 = &H87
-
Jun 9th, 2000, 07:30 PM
#4
transcendental analytic
Why not?
Public Const VK_A=65
Also you could use ASC("A") to find out the ascii code
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|