| Author |
How to select JButton?
|
Milan Djukic
Greenhorn
Joined: Feb 14, 2011
Posts: 27
|
|
|
How can i programmatically select button? Like JOptionPane.showOptionDialog(......,Object initialValue) .
|
 |
Rob Camick
Ranch Hand
Joined: Jun 13, 2009
Posts: 1788
|
|
|
Post your SSCCE that demonstrates the problem.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32689
|
|
|
Why would you want to select a button programmatically? Have you been through the Java™ Tutorials? This section might help.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
I think that requestFocus or requestFocusInWindow should do the trick. You may have to use EventQueue.invokeLater to call this, even if you call it from the EDT itself, because I think a delayed event will be necessary.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: How to select JButton?
|
|
|