41 reputation
6
bio website
location Chennai, India
age 23
visits member for 11 months
seen yesterday
stats profile views 11

Apr
15
awarded  Popular Question
Jan
23
accepted How to add JToolBar in center of JPanel ,Java Swing?
Jan
23
comment How to add JToolBar in center of JPanel ,Java Swing?
It's working fine...Thank You(@Che)...but,why it not happen in JPanel?
Jan
23
comment How to add JToolBar in center of JPanel ,Java Swing?
I tried all possibilities(BorderLayout.CENTER instead of BorderLayout.NORTH or EAST or WEST or SOUTH).All are produced same output only.
Jan
23
comment How to add JToolBar in center of JPanel ,Java Swing?
I too got same result while I try my code.Is it possible to display that 'click me' button in center position of the toolbar?
Jan
23
comment How to add JToolBar in center of JPanel ,Java Swing?
javax.swing.JPanel pane = new javax.swing.JPanel(); BorderLayout border = new BorderLayout(); pane.setLayout(border); JToolBar toolBar = new JToolBar(); pane.add(toolBar,BorderLayout.CENTER); javax.swing.JButton button1 = new javax.swing.JButton("Click Me"); toolBar.add(button1);
Jan
23
revised How to add JToolBar in center of JPanel ,Java Swing?
added 1 characters in body
Jan
23
awarded  Commentator
Jan
23
comment How to add JToolBar in center of JPanel ,Java Swing?
I too tried that way, but that didn't worked ,that's why posted this question.
Jan
23
asked How to add JToolBar in center of JPanel ,Java Swing?
Jan
7
accepted KeyEvent issue on JTextArea
Dec
31
accepted How to create customize title bar with close button on jFrame?
Dec
31
accepted Append a new line in java Swing jTextfield
Dec
31
awarded  Supporter
Dec
28
comment KeyEvent issue on JTextArea
Suppose I use KeyReleased instead of Keypressed for capturing keyEvent on JTextArea ,While I press VK_ENTER key my code get text from JTextArea and paste those text in JTextPane and cursor position retain in same line(return empty String).Suppose use KeyPressed do the same thing it create one more line during first time pressed. VK_ENTER.
Dec
27
comment KeyEvent issue on JTextArea
while i press VK_ENTER + VK_SHIFT i want to create new line so i have to use textarea regards textfield
Dec
27
comment KeyEvent issue on JTextArea
while i press VK_ENTER + VK_SHIFT i want to create new line so i have to use textarea regards textfield.
Dec
27
comment KeyEvent issue on JTextArea
while i press VK_ENTER + VK_SHIFT i want to create new line so i have to use textarea regards textfield.
Dec
27
revised KeyEvent issue on JTextArea
added 34 characters in body
Dec
27
revised KeyEvent issue on JTextArea
added 883 characters in body