Skip to Main Content

Java SE (Java Platform, Standard Edition)

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!

Install fails with internal error 2753 regutils.dll

840671Feb 17 2011 — edited Jul 11 2012
I've been beating my head against this wall for two full days now. I tried installing update JRE 24 and it fails every time with "Internal Error 2753. regutils.dll." I've gone through various forums and tried a variety of tactics. I first uninstalled the older version I had. That didn't work. I then went through the registry and deleted tons of Java references based on a search for the path to Java's bin folder. I deleted c:\program files (x86)\java. that didn't work.

I followed the tips from this thread: 1318410 to remove the two JavaSoft registry entries. That didn't work. I followed their Orca tips to remove the NewConsumerVersionInstalled entry. That didn't work either.

I'm running Win 7 Pro x64. I have searched c:\program files (x86)\ for RegUtils.dll and find it in two folders:
C:\Program Files (x86)\Adobe\Acrobat 9.0\Designer 8.2\jre\bin
C:\Program Files (x86)\Adobe\Adobe Flash CS3\JVM\bin

What can I do to get this thing installed? Or do I just give up on running JRE-based websites and applications (including Oracle SQL Developer which died during all my uninstall steps) forever?

HELP!

Comments

John Snyders-Oracle

Hi Bruce,

The grid view of Interactive Grid disables text selection on purpose. There are technical reasons why the mousedown event, which starts the text selection, is handled the way it is to prevent the default in some cases. But there is a logical justification as well. Because IG grid view supports selection (meaning the current row or rows are in a selected state) it doesn't support text selection. This is consistent with a multi line select list (<select size=10>...). You will note that selecting one or more items in a select list and pressing Ctrl+C does not copy what you have selected also you can not select parts of the text in a select list. The idea in both cases is that the control is letting you work with the data at a higher level than just text.

But what you or your users are trying to do is not unreasonable and others have asked for the same thing. I think it has come up on the forums before. In the future I hope that IG grid will support copy in a meaningful way.

In the mean time you could go back to using IR if this is an important use case or you could take matters into your own hands and do something like the following:

Add an event handler for the copy event. This handler should be on the body or document. I used a DA

Event: Custom

Custom Event: copy

Selection Type: jQuery Selector

jQuery Selector: body

Then add one JavaScript true action with this code:

// this handler must be on the body or document to work in chrome

var text, i, selection, gridSel;

var event = this.browserEvent.originalEvent; // need the clipboard event

// we only care about copy from a grid cell ignore the rest

if ( !$(document.activeElement).hasClass("a-GV-cell") ) {

    return;

}

var view = apex.region("emp").widget().interactiveGrid("getCurrentView"); // change "emp" to you IG static id

if ( view.internalIdentifier === "grid") {

    text = "";

    selection = window.getSelection();

    gridSel = view.view$.grid("getSelection");

    for (i = 0; i < gridSel.length; i++) {

        selection.selectAllChildren(gridSel[i][0]);

        text += selection.toString();

        if (gridSel[i].length > 1) {

            selection.selectAllChildren(gridSel[i][1]);

            text += " \t" + selection.toString();

        }

        text += "\r\n";

    }

    selection.removeAllRanges();

    event.clipboardData.setData('text/plain', text);

    event.preventDefault();

}

The above will copy the current grid selection to the clipboard when the user types Ctrl+C while in a grid cell.

The selection and clipboard events and APIs are not final standards yet so there may be some cross browser issues. I have tested this on Firefox and Chrome in Windows.

There are many possibilities here. If you just want the text of the current cell then replace the loop over the grid selection with something like:

window.getSelection().selectAllChildren(document.activeElement);

Regards,

-John

1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 8 2012
Added on Feb 17 2011
7 comments
26,947 views