Home Answers Viewqa Swing-AWT virtual on screen keyboard project

 
 


sandhya
virtual on screen keyboard project
1 Answer(s)      3 years and 11 months ago
Posted in : Swing AWT

View Answers

June 25, 2009 at 5:43 PM


Hi Friend,

For CapsLock key,try the following code:

import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;
import javax.swing.border.*;

public class SpaceKey extends JPanel implements ActionListener
{
static final String st = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
JButton buttonList[];
String buffer = "";
JTextField text;
JButton capsLock;
boolean capslock;

public void key() {
text = new JTextField(20);
text.setActionCommand(""+ buffer);
add(text);
int n = st.length();
buttonList = new JButton[n];
for (int i = 0; i < n; i++) {
buttonList[i] = new JButton( "" + st.charAt(i) );
add(buttonList[i]);
buttonList[i].addActionListener(this);
}
capsLock = new JButton("CapsLock Key");
add(capsLock);
capsLock.addActionListener(this);
}
public void actionPerformed( ActionEvent e) {
int n = st.length();
if (e.getSource() == capsLock)
{
if (capslock)
capslock = false;
else capslock = true;
}
else{
for (int i = 0; i < n; i++)
{
if (e.getSource() == buttonList[i])
{
if (capslock)
{
buffer += st.charAt(i);
}
else
{
buffer += st.toLowerCase().charAt(i);
}
text.setText(""+ buffer);
break;
}
}
}
}
public SpaceKey(){
JPanel pane = new JPanel();
add(pane);
}
public static void main(String s[])
{
JFrame frame = new JFrame();
SpaceKey keys= new SpaceKey();
frame.getContentPane().add(keys,"Center");
keys.key();
frame.setSize(500,200);
frame.setVisible(true);
}
}

Thanks









Related Pages:
virtual on screen keyboard project - Swing AWT
virtual on screen keyboard project  Hi im doing my project work on virtual onscreen keyboard. i want the code for key function of shift and capslock.please send me the code   Hi Friend, For CapsLock key,try
virtual on screen keyboar - Swing AWT
virtual on screen keyboar  sir i need shift key operation code in my project program of virtual keyboard can uplz send
virtual onscreen keyboard project using java and swings - Swing AWT
virtual onscreen keyboard project using java and swings  sir thanks a lot for ur reply for my last question, can u please send me the entire project code of virtual on screen keyboard.i did but im not sure as it was right
virtual onscreen keyboard project using java and swings - Swing AWT
virtual onscreen keyboard project using java and swings  Im doing virtual on screen keyboard as my project. i didnt get the method to performthe backspace and space operation using swings in java.can please help me  Hi
How to display windows virtual keyboard
How to display windows virtual keyboard  Hi, I have a jsp file which contains my website design. In my jsp website design, there's a button. I need to display windows virtual keyboard when i press the button. how to do
How to Create Keyboard in JAVA
How to Create Keyboard in JAVA  please help me to create On-Screen Keyboard with java and please give me an another idia to make it ..............iam waiting for your help ,think u so much
How can i Change Button Label Value Randomly in VIRTUAL KEYBOARD using JAVA or Net Beans ???
How can i Change Button Label Value Randomly in VIRTUAL KEYBOARD using JAVA or Net Beans ???  How can change Button Label value Every Time when i start Virtual Keyboard, Means ,if 1st time Button1=''a'' then next login time
How can i Change Button Label Value Randomly in VIRTUAL KEYBOARD using JAVA or Net Beans ???
How can i Change Button Label Value Randomly in VIRTUAL KEYBOARD using JAVA or Net Beans ???  How can change Button Label value Every Time when i start Virtual Keyboard, Means ,if 1st time Button1=''a'' then next login time
Keyboard
defines a large number of virtual key codes that correspond keys on the keyboard... Java Notes: Keyboard Not normally used. You don't normally need to capture the low-level keyboard events because components (eg, JTextField) handle them
Keyboard Input
Java NotesKeyboard Input There are two approaches to getting keyboard... and computer type text back and forth to each other - basically a screen version... simple keyboard input, eg, something like C++'s cin. Java 5 (introduced
while playing youtube in iphone appliation, coming black screen in iphone project?
while playing youtube in iphone appliation, coming black screen in iphone project?  while playing youtube in iphone appliation, coming black screen in iphone project
project
project  Create a class diagram, both, for permanent and contracted employees, the details of which are supposed to be accepted and displayed on screen The following details need to be tracked for permanent employees: Employee
virtual function
virtual function  Explain virtual functions in Java
virtual function
virtual function  can we have virtual functions in java
The isTouch Screen on the iPad a Convenient Feature
The Touch Screen on the iPad is a Convenient Feature One of the best features that the Apple iPad has is its ability to work with a touch screen. This screen is one that will make it easy for anyone to control different types
keyboard input
keyboard input  how do I use JOptionPane to accept keyboard input? I know how to import but not specific command on input line   import javax.swing.*; class JOPtionPaneExample { public static void main(String
virtual world
virtual world  i want a program like consider 10 * 10 array. first we are in the middle i.e 5 * 5 position . we have to ask the user that in which direction he is interested to move.i.e east or west or north or south. the output
regarding project
regarding project  OBJECTIVES OF THIS PROJECT: -Ability to test... and come up with combined solution quickly. PROJECT NAME: DID I WRITE A GOOD JAVA PROGRAM?(JAVA/MVC/UI) BRIEF DESCRIPTION OF A PROJECT: The program helps
regarding project
regarding project  OBJECTIVES OF THIS PROJECT: -Ability to test... and come up with combined solution quickly. PROJECT NAME: DID I WRITE A GOOD JAVA PROGRAM?(JAVA/MVC/UI) BRIEF DESCRIPTION OF A PROJECT: The program helps
regarding project
regarding project   sir we need help about project. we have idea about his project please guide me sir. OBJECTIVES OF THIS PROJECT: -Ability... to collaborate and come up with combined solution quickly. PROJECT NAME: DID I WRITE A GOOD
Screen Capture
Screen Capture  How to capture the screen using jsps and servlets
Screen shot
Screen shot  webpage screenshot source code
splash screen
splash screen  What is splash screen and how can i set splash screen in iphone??   hello, if you want to launch splash screen then add... splash screen will show launching time
Screen Capture
Screen Capture  Hi deepak, I am trying to take a screen shot using java script Activex object. But Iam getting Automation server cant create object exception .how can i solve
hide show keyboard iphone
hide show keyboard iphone  How to hide show keyboard in iPhone programmatically
hide show keyboard iphone
hide show keyboard iphone  How to hide show keyboard in iPhone programmatically
hide show keyboard iphone
hide show keyboard iphone  How to hide show keyboard in iPhone programmatically
hide keyboard iphone
hide keyboard iphone  Can anyone tell me how to hide keyboard in my simple view based application in iphone?   Hiding keyboard in iPhone - (BOOL)textFielsShouldReturn:(UITextField *)textField { [textField
java virtual machine
java virtual machine  please give some detail about JVM
Java Virtual Machine
Java Virtual Machine  What is Java Virtual Machine? Are JVM different for each OS? Thanks   Hello, JVM or Java Virtual Machine is run... more at Java Virtual Machine Technology. Thanks
Iphone keypad app
to show you how to hide keyboard or number pad and return to the actual screen. We... hide the keyboard on click anywhere on the screen.   Generally whenever...(keyboard) automatically but there will be no method to hide it. So you have to have
Keyboard Done button in iphone
Keyboard Done button in iphone  hii,, how can i set a function on press keyboard done button.   hello, For making keyboard Done button press :- import keyboard displacement by adding this line #define kOFFSET
disable keyboard in java applet
disable keyboard in java applet  How to disable key board of my client in an java applet embedded in a website while the applet is running.? Plz help
Screen flashing
Screen flashing  Hey I am trying to make my screen flash (like a white flash as if from a camera). This is my code so far: <html> <... I want is that I want the screen to flash white when a link is clicked. Thanks
resign first responder keyboard
resign first responder keyboard  Hi, How I can hide keyboard on click on of done button in keyboard. Give me example of resign first responder keyboard example code. Thanks   Hi, Make your controller delegate to text
Final Project - Java Beginners
in programming is paramount in being successful in the business industry. This project..., but it is suggested that you begin working on the final project assignment in Week 5, which should give you ample time to complete the project. You will find that all
J2ME project - Java Beginners
J2ME project  The GPRS based solution will display the latest rates of the products to the sales persons.the latest rates of the products will be shown to the sales personnel as a moving ticker on the screen of the mobile divice
keyboard shortcuts - Swing AWT
keyboard shortcuts  Hello, i m facing problem in invoking a button it is an arrow button. although the user can click on it with a mouse... when we press the upper arrow from the keyboard that button should be invoked
uitextfield disable keyboard
uitextfield disable keyboard  How to disable keyboard of UITextView in iPhone SDK application?   There are two ways to disable the keyboard of UITextField in iPhone SDK application - (BOOL)textFieldShouldBeginEditing
java keyboard shortcuts - Struts
java keyboard shortcuts  hi, i hav an application already developed using struts framework.now i would like to add some keboard shortcuts to my application, so that the user need not to go for the usage of the mouse every time
Select your project and right click on the it
is appear on the screen. Click on project and go lib then all jars file is open... Creating files in JPA project   ...; project, you need to follow the following steps: Select "
Virtual Fuction invokation in java
Virtual Fuction invokation in java  Please help me. If i have create a Employee class,which is the super class of Manager. And I create an object... is virtual method in java?Please explain
Virtual Fuction invokation in java
Virtual Fuction invokation in java  Please help me. If i have create a Employee class,which is the super class of Manager. And I create an object... is virtual method in java?Please explain
Java Virtual Machine Technology
Java Virtual Machine Technology Java development kit termed as  JDK have more than one implementation of the JVM. Java HotSpot Client VM also termed.... This is the Virtual machine implementation comes with JDK.It is basically designed to cut
difference between touch screen and non touch screen
difference between touch screen and non touch screen  what is a difference between touch screen and non touch screen in J2ME (code wise
difference between touch screen and non touch screen
difference between touch screen and non touch screen  code wise ,what is a difference between touch screen and non touch screen in J2ME
Creating a Project
Creating a Project       This section explains the steps involved in developing a project in Eclipse IDE. These steps are: 1. Now, go and click to file->new->project
My name, java project
My name, java project  Write a class that displays your first name vertically down the screen â?? where each letter uses up to 5 rows by 5 columns of a character input by you with a blank line between each letter. Note: each
My name, java project
My name, java project  Write a class that displays your first name vertically down the screen â?? where each letter uses up to 5 rows by 5 columns of a character input by you with a blank line between each letter. Note: each
Screen Coordinates
Java NotesScreen Coordinates Every computer monitor screen is made of pixels. Each pixel is a small spot on the screen. There are approximately 3 pixels... on the screen. A typical screen might be 800 pixels wide and 640 pixels high

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.