|
-
October 14th, 2004, 01:50 PM
#1
ctr-c in java
Hi..I'm new to programming.Could someone tell me what is the ANSI code for ctrl-c in java? Because I often use ctrl-z in C and ctrl-z in C has -1 for the ANSI code.
Thank you
-
October 14th, 2004, 02:28 PM
#2
Re: ctr-c in java
 Originally Posted by QQQ
Hi..I'm new to programming.Could someone tell me what is the ANSI code for ctrl-c in java? Because I often use ctrl-z in C and ctrl-z in C has -1 for the ANSI code.
Thank you
Ctrl+C = 3
Ctrl+Z = 26
Ctrl+<letter> = numerical order of the letter: A = 1, B = 2 ...
- but -
if you're running a non-graphical app, Ctrl+C will trigger the program termination.
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
|