Click here to Skip to main content
15,890,825 members
Home / Discussions / Java
   

Java

 
AnswerRe: how to convert swings to java applet Pin
42774808-Sep-09 13:06
42774808-Sep-09 13:06 
Questiondeployment eerrotr 404 error Pin
kirancgi7-Sep-09 21:48
kirancgi7-Sep-09 21:48 
AnswerRe: deployment eerrotr 404 error Pin
thomas.michaud8-Sep-09 3:40
thomas.michaud8-Sep-09 3:40 
AnswerRe: deployment eerrotr 404 error Pin
42774808-Sep-09 13:11
42774808-Sep-09 13:11 
QuestionKey Logger Pin
badrisuper6-Sep-09 21:55
badrisuper6-Sep-09 21:55 
AnswerRe: Key Logger Pin
TorstenH.7-Sep-09 1:35
TorstenH.7-Sep-09 1:35 
AnswerRe: Key Logger Pin
EliottA7-Sep-09 4:44
EliottA7-Sep-09 4:44 
AnswerRe: Key Logger Pin
42774807-Sep-09 8:01
42774807-Sep-09 8:01 
It is possible to do it in both but it all comes down to your preference.

Since you posted in Java forum you can use this http://www.steelbrothers.ch/jusb/ Learn it by yourself (no support on this one due to the nature of your application)

Just in case you want to verify input and not log the keys. This is limited to your application.

Snippet
addKeyListener(new KeyAdapter() 
		{
			public void keyTyped(KeyEvent e) 
			{
				// you can use this e.getKeyChar()
                                // or char c = KeyEvent.VK_(your selection here);
			}
		});

QuestionDigital Signature Pin
vivhari3-Sep-09 20:26
vivhari3-Sep-09 20:26 
AnswerRe: Digital Signature Pin
vivhari3-Sep-09 20:56
vivhari3-Sep-09 20:56 
AnswerRe: Digital Signature Pin
Nagy Vilmos3-Sep-09 22:02
professionalNagy Vilmos3-Sep-09 22:02 
GeneralRe: Digital Signature Pin
42774804-Sep-09 10:50
42774804-Sep-09 10:50 
GeneralRe: Digital Signature Pin
42774804-Sep-09 16:46
42774804-Sep-09 16:46 
GeneralRe: Digital Signature Pin
vivhari5-Sep-09 5:34
vivhari5-Sep-09 5:34 
GeneralRe: Digital Signature Pin
42774805-Sep-09 12:42
42774805-Sep-09 12:42 
QuestionFinding Duplicates:(Loop within a Loop) Pin
squalled3-Sep-09 20:20
squalled3-Sep-09 20:20 
AnswerRe: Finding Duplicates:(Loop within a Loop) Pin
Nagy Vilmos3-Sep-09 21:58
professionalNagy Vilmos3-Sep-09 21:58 
AnswerRe: Finding Duplicates:(Loop within a Loop) Pin
TorstenH.4-Sep-09 2:55
TorstenH.4-Sep-09 2:55 
AnswerRe: Finding Duplicates:(Loop within a Loop) Pin
42774804-Sep-09 8:52
42774804-Sep-09 8:52 
QuestionValidation Pin
hitesh.kalra2-Sep-09 2:07
hitesh.kalra2-Sep-09 2:07 
AnswerRe: Validation Pin
42774802-Sep-09 7:11
42774802-Sep-09 7:11 
GeneralRe: Validation Pin
David Skelly2-Sep-09 22:24
David Skelly2-Sep-09 22:24 
GeneralRe: Validation Pin
42774803-Sep-09 1:44
42774803-Sep-09 1:44 
GeneralRe: Validation Pin
David Skelly3-Sep-09 2:39
David Skelly3-Sep-09 2:39 
QuestionRunning Blackberry Application........ Pin
shaina223131-Aug-09 21:41
shaina223131-Aug-09 21:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.