For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.
I just installed Update 3 for Visual Studio 2015. When I start it, I get a notification that the Oracle Developer Tools crashed.
Anyone else having this problem?
CellEditorListener
DefaultCellEditor dce = new DefaultCellEditor(); dce.setClickCountsToStart() = 1; JTable jt.add(dce);
JTable yourTable = new JTable(); DefaultCellEditor dce = new DefaultCellEditor(); dce.setClickCountToStart(1); yourTable.setCellEditor(dce);
TableCellEditor editor = new DefaultCellEditor(yourTextFieldHere); editor.setClickCountToStart(1); yourTable.setCellEditor(editor);