switch CAPSLOCK button in my progranm...

switch CAPSLOCK button in my progranm...

I found that function which does the Capslocks job,when am running my program if the capslock button switched on the letters on the keyboard becomes capital,and if switched off the letters become small,but i want of this to happen during the run time,i mean the capslocks switch button to become a button that i can switch it between on and off during the runtime,like that is present in the window, please help me,please!

View Answers

April 5, 2011 at 1:07 PM

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

public class CapslockKey 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 CapslockKey(){
JPanel pane = new JPanel();
add(pane);
}
public static void main(String s[])
{
JFrame frame = new JFrame();
CapslockKey keys= new CapslockKey();
frame.getContentPane().add(keys,"Center");
keys.key();
frame.setSize(500,200);
frame.setVisible(true);
}
}

April 5, 2011 at 1:26 PM

i think u soooo respectable , thank u so much so much so much,.....,thank u to share it. can u give me same idea for ALT , SHIFT and CTRL button ?? and if instead of array {String st = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";} use Stack or ArrayList ?. if we can how ? thank u ...









Related Tutorials/Questions & Answers:
switch CAPSLOCK button in my progranm...
switch CAPSLOCK button in my progranm...  I found that function which does the Capslocks job,when am running my program if the capslock button... the capslocks switch button to become a button that i can switch it between on and off
how can i use toggle button in my application
how can i use toggle button in my application  i want a on/off toggle button by dragging left-right..not by pressing on button
Advertisements
How to disable Browser's back button (at the same time i want my own back button to be enabled) :p
How to disable Browser's back button (at the same time i want my own back button to be enabled) :p  Hi, I have designed a "back" button for jsp page. Now I want to disable Browser's default button So that people will use "back
How to disable Browser's back button (at the same time i want my own back button to be enabled) :p
How to disable Browser's back button (at the same time i want my own back button to be enabled) :p  Hi, I have designed a "back" button for jsp page. Now I want to disable Browser's default button So that people will use "back
Save the content in my wysiwyg editor into specified location of user when clicked on save button in my web page
Save the content in my wysiwyg editor into specified location of user when clicked on save button in my web page  I am using wysiwyg editor to display some static content.My requirement is that This static content can be edited
how can i add wirecard option(or button ) at my web page plz tell all steps? View Answers
how can i add wirecard option(or button ) at my web page plz tell all steps? View Answers  how can i add wirecard option(or button ) at my web page plz tell all steps? View Answers
iPhone Switch Changes Toolbar Color
iPhone Switch Changes Toolbar Color In this tutorial we will use Switch button to change the Color of Toolbar. The Switch is added through the Interface... Application. Final View will look like this: ADS_TO_REPLACE_1 My project name
ModuleNotFoundError: No module named 'switch'
ModuleNotFoundError: No module named 'switch'  Hi, My Python... 'switch' How to remove the ModuleNotFoundError: No module named 'switch'... to install padas library. You can install switch python with following command
ModuleNotFoundError: No module named 'switch'
ModuleNotFoundError: No module named 'switch'  Hi, My Python... 'switch' How to remove the ModuleNotFoundError: No module named 'switch'... to install padas library. You can install switch python with following command
switch statement
switch statement   i want to write a java program that computes Fibonacci,factorial,string reversal and ackerman using switch case to run as a single program
switch case
switch case  program to input 2 numbers and a choice.Using switch case we need to perform all the mathematical operation.Print a suitable error message if the choice is wrong
switch case
switch case  program to input 2 numbers and a choice.Using switch case we need to perform all the mathematical operation.Print a suitable error message if the choice is wrong
Switch databases
Switch databases  How do you inter-change between relational databases without code changes
Button
Button  How to use image for button in JSF
Switch
Switch      ... statements. To avoid this we can use Switch statements in Java. The switch statement... of a variable or expression. The switch statement in Java is the best way to test
The Switch statement
Switch       Sometimes.... To avoid this we can use Switch statements in Java. The switch statement is used... of a variable or expression. The switch statement in Java is the best way to test
Switch Statement
Switch Statement  How we can use switch case in java program ?   Note:-Switch case provides built-in multiway decision statement.It...); switch(days){ case 1: System.out.println("Sunday
button
button  can i give multiple commands on click of a button? if yes how can i do that?? multiple commands can we retriving dat from database, capturing data, moving to next page.. etc
button
button  can i give multiple commands on click of a button? if yes how can i do that?? multiple commands can be retriving dat from database, capturing data, moving to next page.. etc
programes on switch
=input.nextInt(); switch(choice){ case 1
Switch Statement with Strings in Java
Switch Statement with Strings in Java  Switch Statement with Strings in Java
ModuleNotFoundError: No module named 'enum-switch'
ModuleNotFoundError: No module named 'enum-switch'  Hi, My Python... 'enum-switch' How to remove the ModuleNotFoundError: No module named 'enum-switch' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'e-switch'
ModuleNotFoundError: No module named 'e-switch'  Hi, My Python...-switch' How to remove the ModuleNotFoundError: No module named 'e-switch... to install padas library. You can install e-switch python with following
ModuleNotFoundError: No module named 'js.bootstrap-switch'
ModuleNotFoundError: No module named 'js.bootstrap-switch'  Hi, My... named 'js.bootstrap-switch' How to remove the ModuleNotFoundError: No module named 'js.bootstrap-switch' error? Thanks   Hi
ModuleNotFoundError: No module named 'mongo-switch'
ModuleNotFoundError: No module named 'mongo-switch'  Hi, My Python... 'mongo-switch' How to remove the ModuleNotFoundError: No module named 'mongo-switch' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'nose-switch'
ModuleNotFoundError: No module named 'nose-switch'  Hi, My Python... 'nose-switch' How to remove the ModuleNotFoundError: No module named 'nose-switch' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'pi_switch'
ModuleNotFoundError: No module named 'pi_switch'  Hi, My Python..._switch' How to remove the ModuleNotFoundError: No module named 'pi_switch' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'pulseaudio-switch'
ModuleNotFoundError: No module named 'pulseaudio-switch'  Hi, My... named 'pulseaudio-switch' How to remove the ModuleNotFoundError: No module named 'pulseaudio-switch' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'smt-switch'
ModuleNotFoundError: No module named 'smt-switch'  Hi, My Python... 'smt-switch' How to remove the ModuleNotFoundError: No module named 'smt-switch' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'switch-case'
ModuleNotFoundError: No module named 'switch-case'  Hi, My Python... 'switch-case' How to remove the ModuleNotFoundError: No module named 'switch-case' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'switch-case'
ModuleNotFoundError: No module named 'switch-case'  Hi, My Python... 'switch-case' How to remove the ModuleNotFoundError: No module named 'switch-case' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'switch-inputs'
ModuleNotFoundError: No module named 'switch-inputs'  Hi, My... 'switch-inputs' How to remove the ModuleNotFoundError: No module named 'switch-inputs' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'switch-mexico'
ModuleNotFoundError: No module named 'switch-mexico'  Hi, My... 'switch-mexico' How to remove the ModuleNotFoundError: No module named 'switch-mexico' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'switch-model'
ModuleNotFoundError: No module named 'switch-model'  Hi, My Python... 'switch-model' How to remove the ModuleNotFoundError: No module named 'switch-model' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'switch-payments'
ModuleNotFoundError: No module named 'switch-payments'  Hi, My... named 'switch-payments' How to remove the ModuleNotFoundError: No module named 'switch-payments' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'ugly-switch'
ModuleNotFoundError: No module named 'ugly-switch'  Hi, My Python... 'ugly-switch' How to remove the ModuleNotFoundError: No module named 'ugly-switch' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'ybc-switch'
ModuleNotFoundError: No module named 'ybc-switch'  Hi, My Python... 'ybc-switch' How to remove the ModuleNotFoundError: No module named 'ybc-switch' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'enum-switch'
ModuleNotFoundError: No module named 'enum-switch'  Hi, My Python... 'enum-switch' How to remove the ModuleNotFoundError: No module named 'enum-switch' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'e-switch'
ModuleNotFoundError: No module named 'e-switch'  Hi, My Python...-switch' How to remove the ModuleNotFoundError: No module named 'e-switch... to install padas library. You can install e-switch python with following
ModuleNotFoundError: No module named 'Flask-Switch'
ModuleNotFoundError: No module named 'Flask-Switch'  Hi, My Python... 'Flask-Switch' How to remove the ModuleNotFoundError: No module named 'Flask-Switch' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'js.bootstrap-switch'
ModuleNotFoundError: No module named 'js.bootstrap-switch'  Hi, My... named 'js.bootstrap-switch' How to remove the ModuleNotFoundError: No module named 'js.bootstrap-switch' error? Thanks   Hi
Java switch statement
Java switch statement  What restrictions are placed on the values of each case of a switch statement
switch case instead of if else
switch case instead of if else  How to write code in switch case instead of if else in Java
Switch statement in PHP
Switch statement in PHP  HII, Explain about switch statement in PHP?   hello,ADS_TO_REPLACE_1 Switch statement is executed line by line... of the switch expression. It does execute the statement until the end of the block
using switch,break and for loop
using switch,break and for loop  generate a 10 digit number and display the length of longest increasing series
using switch and break
using switch and break  generate a 10 digit number and display the length of longest increasing series
ModuleNotFoundError: No module named 'aws-cloudformation-power-switch'
ModuleNotFoundError: No module named 'aws-cloudformation-power-switch'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'aws-cloudformation-power-switch' How to remove
ModuleNotFoundError: No module named 'django-lang-switch'
ModuleNotFoundError: No module named 'django-lang-switch'  Hi, My... named 'django-lang-switch' How to remove the ModuleNotFoundError: No module named 'django-lang-switch' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'django-lang-switch'
ModuleNotFoundError: No module named 'django-lang-switch'  Hi, My... named 'django-lang-switch' How to remove the ModuleNotFoundError: No module named 'django-lang-switch' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'django-toggle-switch-widget'
ModuleNotFoundError: No module named 'django-toggle-switch-widget'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'django-toggle-switch-widget' How to remove

Ads