Skip to Main Content

Oracle Developer Tools for Visual Studio

Announcement

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.

Visual Studio 2015 Update 3 crashes Oracle Plugin

939510Jun 28 2016 — edited Nov 14 2016

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?

Comments

843806
Possibly for this you could attach a
CellEditorListener
to the cell in question? Then when you give it focus?

Not sure on how to set the cursor though...
camickr
Override the setClickCountsToStart() to 1 of the DefaultCellEditor.
843806
Nice!
843806
hello, i am lost. could you be share some snippet code with me? i can't figure out where to override the code as mentioned. thanks.
camickr
Create a new DefaultCellEditor. Set the click count property. Add the editor to the table as the default editor.
843806
hello, do you mean like this?
DefaultCellEditor dce = new DefaultCellEditor();
dce.setClickCountsToStart() = 1;
JTable jt.add(dce);
843806
No you'd call:
JTable yourTable = new JTable();
DefaultCellEditor dce = new DefaultCellEditor();

dce.setClickCountToStart(1);

yourTable.setCellEditor(dce);
843806
Actually it'd be more something like
TableCellEditor editor = new DefaultCellEditor(yourTextFieldHere);
editor.setClickCountToStart(1);
yourTable.setCellEditor(editor);
Does that help?
843806
Hi yes, thanks and this may help too.

((DefaultCellEditor)table.getDefaultEditor(String.class)).setClickCountToStart(1);
1 - 9
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Dec 12 2016
Added on Jun 28 2016
7 comments
9,291 views