in Education by
How do I detect the combination key Shift+Tab in a JTextField? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
is this what you want? javax.swing.JTextField textField = new javax.swing.JTextField(); textField.setFocusTraversalKeysEnabled(false); javax.swing.Action myAction = new javax.swing.AbstractAction() { public void actionPerformed(ActionEvent e) { //Insert arbitrary code here } }; textField.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_TAB, Event.SHIFT_MASK), "myCode"); textField.getActionMap().put("myCode", myAction);

Related questions

0 votes
    I am having troubles with JList class. I am getting data from a vector to fill the JList and the list looks fine when I ... = new ArrayList(dtm.getTableNames()); for(int i =0;i...
asked Feb 26, 2022 in Education by JackTerrance
0 votes
    I'm trying to create a little popup-menu that displays a series of checkboxes to the user in Java ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 19, 2022 in Education by JackTerrance
0 votes
    I want to print Strings in JTextArea and align them properly. Its hard to explain so I will upload ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 19, 2022 in Education by JackTerrance
0 votes
    I want to print Strings in JTextArea and align them properly. Its hard to explain so I will upload ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    ASP.NET 2.0 web application, how to implement shortcut key combination of CTRL + Letter, preferably through ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 25, 2022 in Education by JackTerrance
0 votes
    to edit the interactive mode which key combination should be press Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    Which key is used in combination with another key to perform a specific task ? (A) function (B) space bar (C) ... (E) None of these Select the correct answer from above options...
asked Dec 9, 2021 in Education by JackTerrance
0 votes
    Which key is used in combination with another key to perform a specific task ? (A) function (B) space bar (C) ... (E) None of these Select the correct answer from above options...
asked Dec 3, 2021 in Education by JackTerrance
0 votes
    ____________ is a combination of two of more attributes used as a primary key (a) Composite Key (b) ... , Database Interview Questions and Answers for Freshers and Experience...
asked Oct 11, 2021 in Education by JackTerrance
0 votes
    I have a JTextField and need to have 3 lines in it, such as these: HI MY name is mehdi How can ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 3, 2022 in Education by JackTerrance
0 votes
    I need to open application when power and volume+ buttons long pressed. Does its possible to detect power ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 17, 2022 in Education by JackTerrance
0 votes
    I have been trying to use the Rekognition API to detect text in an image. I have enabled full ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
...