My arrow keys and backspace no longer works in Sql Developer

In the work sheet of Sql Developer it is not allowing me to use my arrow keys or backspace key, I can use these keys in the result section but not in the worksheet section. When I use the arrow key it scrolls the page but the cursor stays in the same spot. My scroll lock is not on as these functions work everywhere else. I have looked at short cut keys to see if I hit smoething but not finding anything. Any ideas?

This is a known problem practically impossible to reproduce reliably.
It was not reported on the latest releases of SQLDeveloper, so if you are on an old release you might consider switching to the latest one.
The workaround for the problem in older version requires you to load preset values for the shortcut in
Tools -> Preferences -> Accelerators -> Load PresetMind this will erase all your user defined shortcut keys

Similar Messages

  • All of a sudden my Enter key no longer works in SQL Developer.

    All of a sudden my Enter key no longer works in SQL Developer. I don't know how I managed to disabled it. Can anyone tell me how to re-enable it?
    I already tried the following:
    - I closed the application and re-opened it. - It didn't work
    - I re-started my machine. I didn't work
    Help! Thank you

    The same thing has just happened to me and this was very useful to correct the problem --- but now I am wondering why or how this happened. To the best of my knowledge, I haven't make any setting changes so why did I lose the Enter action?

  • Brand new 15" MacBook Pro Retina - unplugged from Thunderbolt Display and Keyboards today find keyboard alpha-numerics not working; except the function keys, delete key, tab key, command/ctrl/shift/alt/fn and arrow keys; and 7/8/9/u/o/j/l nudge cursor

    Brand new 15" MacBook Pro Retina - unplugged from Thunderbolt Display and Keyboards today find keyboard alpha-numerics not working; except the function keys, delete key, tab key, command/ctrl/shift/alt/fn and arrow keys; and 7/8/9/u/o/j/l produce cursor nudges.

    It's a new machine - and the Thunderbolt Display is meant to work with it. You need to just make an appointment at your local Apple Store and have them fix whatever is wrong.
    If you like, you could always try a SMC reset and a PRAM/NVRAM reset to see if either of those will get your keyboard back in working order...
    Clinton

  • Problems with scrolling through premiere timeline using arrow keys and shift arrow

    This is a really weird problem in cs6.
    When I load a clip into the source monitor i can scroll throughit fine using the arrow keys, and shift arrows and my shuttle pro controller.
    When I place the same clip on to the timeline it really struggles to scroll using the arrows or the shuttle pro, its really kerky and sdlwo to scroll the timeline, which is really frstrating, becuase it can play the footage fine in the source monitor.
    The clips will playback fine, but scrolling through them just doesn't work as it should any ideas?
    Cheers
    Mike

    I changed my shuttle settings to make the shuttling more responsive:
    1 - 5 times second
    2 - 10
    3 - 15
    4 - 30
    5 - 45
    6 - 60
    7 - fast as possible
    At least I changed this a long time ago - don't know if these are the defaults or not.
    It'll only shuttle as fast as your system is responsive of course - so if you get instantaneous scrubbing by dragging the CTI in the timeline with the mouse, you should be able to get good performance with the shuttle. Of course that performance depends on the type of footage and how demanding it is on CPU to decode and whether youi have effects applied etc etc etc.
    I edit pretty much exclusively with Sony XDCAM EX 1080P 25 footage we've shot on EX3 and PMW-350 etc and I get very very fast performance on the timeline - no issues at all i7 6 core 4GHz with 24Gb ram and fairly fast RAID array for footage.

  • I have recently updated the new apps via creative cloud now photoshop and bridge no longer work, they open then say they have encountered a problem and close, I also tried opening the old version of photo shop but getting the same result

    I have recently updated the new apps via creative cloud now photoshop and bridge no longer work, they open then say they have encountered a problem and close, I also tried opening the old version of photo shop but getting the same result

    What OS version? What's the exact error? Exactly when does the error occur? What previous versions? What is on the screen when the error displays? Does Photoshop get fully open?
    Try opening Photoshop holding down Shift key immediately to turn off plug-ins. Lots of good suggestions here: Photoshop: Basic Troubleshooting steps to fix most issues

  • Keys 5-9 no longer work after water damage. Do I need a new logic board?

    I had the smallest amount of water on my fingers when I typed something on my keyboard and now keys 5-9 no longer work. Will I need a whole new logic board for this? I've been into two Apple stores and both say I need to book an appointment online. I've been online and tried to book in at three different Apole stores within my area and I just get 'there are no slots available' how am I supposed to get this fixed if I can't book a session to see some!?! Sort it out Apply, it's why your products cost so bl**dy much isn't it!?

    thanks, but I really don't think its the logic board since I can still plug in head phones and i can hear movies, etc.
    also when i don't have my magicJack plugged in to make calls they now give you a magictalk dial pad to make calls and when i plug in the headphones again i can talk through the speakers and be heard and I can hear them too. Is there something I can used to maybe pull out the connection. I think it thinks the headphones are plugged  in all the time.

  • Arrow keys and enter key not functioning in Firefox 3.6 when viewing PDF

    I'm using Adobe Reader 9.3.0.
    I have a web application that displays PDFs (using Adobe Reader) in a browser.  The PDF is loaded onto the page inside an IFRAME.  In addition to the IFRAME containing a PDF, the page also includes several forms, text fields, etc. For the most part this is working fine.  However, I have a glitch when using this in Firefox 3.6. I'm finding that certain keyboard events are being lost and I strongly suspect that they are being swallowed by Adobe Reader.  When I place focus on an HTML text field and press enter key or arrow keys, I do not get the appropriate key events.  If I run the exact same test without the PDF IFRAME these key events work correctly, but as soon as I load the PDF into the IFRAME they do not.  I believe the primary key event that gets lost is the keydown event.  I do get the keyup event.
    Again, the events work correctly up until I load the PDF onto the page.
    I've verified that this error does not occur in Firefox 3.5 and 3.0.
    Here is a testcase to reproduce this:
    <html>
    <head>
        <title>JavaScript - Detecting keystrokes</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <script type="text/javascript">
            var pdfURL = 'http://samplepdf.com/sample.pdf';
            window.onload = function () {
                init();
            document.defaultAction = true;
            function init() {
                var x = document.getElementById('testForm').getElementsByTagName('input');
                for (var i=0;i<x.length;i++) {
                    x[i].onclick = setEvents;
                    if (x[i].checked)
                        x[i].onclick();
                writeroot = document.getElementById('writeroot');
                document.getElementById('emptyWriteroot').onclick = function () {
                    writeroot.innerHTML = '';
                    return false;
            function setEvents() {
                if (this.id == 'default') {
                    document.defaultAction = !this.checked;
                    return;
                var eventHandler = (this.checked) ? detectEvent : empty;
                document.getElementById('textfield')['on'+this.id] = eventHandler;
                //document['on'+this.id] = eventHandler;
            function detectEvent(e) {
                var evt = e || window.event;
                writeData('<b>'+evt.type+'</b>:  keyCode=' + evt.keyCode+' : charCode=' + evt.charCode);
                return document.defaultAction;
            function empty() {
                // nothing
            var writeroot;
            function writeData(msg) {
                writeroot.innerHTML += msg + '<br />';
        </script>
        <style type="text/css">
            body {
                font-size: 12px;
            #writeroot {
                height: 300px;
                overflow: auto;
                border: 1px solid #2EB2DC;
        </style>
    </head>
    <body>
    <form id="testForm">
    <input type="checkbox" id="keydown" /> <label for="keydown">keydown</label><br />
    <input type="checkbox" id="keypress" /> <label for="keypress">keypress</label><br />
    <input type="checkbox" id="keyup" /> <label for="keyup">keyup</label><br />
    <input type="checkbox" id="default" /> <label for="default">Suppress default action</label><br />
    <input type="text" id="textfield" /><br />
    <button id="emptyWriteroot">Remove messages</button>
    </form>
    <a href="#" onclick="document.getElementById('docviewer-page').src=pdfURL;return false">Now load IFrame</a>
    <p id="writeroot"></p>
    <div id="container2" style="border:1px solid black;width:400px;height:200px">
            <iframe
                id='docviewer-page'
                name='docviewer-page'
                title='document page'
                src='http://www.google.com'
                align='left'
                width='100%'
                height='100%'
                scrolling='auto'
                frameborder=0></iframe>
    </div>
    </body>
    </html>
    Paste the above into an HTML document.  Open the HTML document in Firefox 3.6.  Check the four checkboxes.  Move into the text field and press arrow keys and enter key to observe the results when it is working correctly.  Then click on the "Now Load PDF" link.  Press the arrow keys and enter key again and observe that the behavior has changed.
    Anybody have any idea why this is happening or how to work around it?

    I found a workaround!
    By using an object tag instead of an iframe, all the keys seems to work fine and the PDF still renders in the page the same way.
    Here's a page that works:
    <html>
    <head>
        <title>JavaScript - Detecting keystrokes</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <script type="text/javascript">
            var pdfURL = 'http://samplepdf.com/sample.pdf';
            window.onload = function () {
                init();
            document.defaultAction = true;
            function init() {
                var x = document.getElementById('testForm').getElementsByTagName('input');
                for (var i=0;i<x.length;i++) {
                    x[i].onclick = setEvents;
                    if (x[i].checked)
                        x[i].onclick();
                writeroot = document.getElementById('writeroot');
                document.getElementById('emptyWriteroot').onclick = function () {
                    writeroot.innerHTML = '';
                    return false;
            function setEvents() {
                if (this.id == 'default') {
                    document.defaultAction = !this.checked;
                    return;
                var eventHandler = (this.checked) ? detectEvent : empty;
                document.getElementById('textfield')['on'+this.id] = eventHandler;
                //document['on'+this.id] = eventHandler;
            function detectEvent(e) {
                var evt = e || window.event;
                writeData('<b>'+evt.type+'</b>:  keyCode=' + evt.keyCode+' : charCode=' + evt.charCode);
                return document.defaultAction;
            function empty() {
                // nothing
            var writeroot;
            function writeData(msg) {
                writeroot.innerHTML += msg + '<br />';
        </script>
        <style type="text/css">
            body {
                font-size: 12px;
            #writeroot {
                height: 300px;
                overflow: auto;
                border: 1px solid #2EB2DC;
        </style>
    </head>
    <body>
    <form id="testForm">
    <input type="checkbox" id="keydown" /> <label for="keydown">keydown</label><br />
    <input type="checkbox" id="keypress" /> <label for="keypress">keypress</label><br />
    <input type="checkbox" id="keyup" /> <label for="keyup">keyup</label><br />
    <input type="checkbox" id="default" /> <label for="default">Suppress default action</label><br />
    <input type="text" id="textfield" /><br />
    <button id="emptyWriteroot">Remove messages</button>
    </form>
    <a href="#" onclick="document.getElementById('docviewer-page').data=pdfURL;return false">Now load IFrame</a>
    <p id="writeroot"></p>
    <div id="container2" style="border:1px solid black;width:400px;height:200px">
            <object
                id='docviewer-page'
                name='docviewer-page'
                title='document page'
                data='http://www.google.com'
                align='left'
                width='100%'
                height='100%'
                ></object>
    </div>
    </body>
    </html>

  • JMaskField mask input : delete and backspace do not work

    I am using this package for formatted input.
    Delete and backspace do not work if the field is created with a default text as in the code snippet I attach. Did somebody managed this to work? How? delete and backspace work badly in everycase anyway.
    best regards
    -Mangi
    MaskMacros macros = new MaskMacros();
    macros.addMacro('*',"[a-zA-Z0-9]");
    macros.addMacro('#', "[0-9]");
    macros.addMacro('@', "[a-zA-Z]");
    macros.addMacro('%',"[A-Z]");
    macros.addMacro('*',"[a-zA-Z0-9]");
    MaskField2 k = new MaskField2("CODE******",macros);

    Nope, I don't think those keys are even "firing" as another person worded it. I can push the buttons down, so they aren't stuck but it doesn't seem to be sending any signal.

  • Delete Key and Space Bar Stopped Working

    I have an older MacPro  - the MacPro 1,1 model.
    Hadn't used it in a while a - when I set it up again the keyboard's Delete key and SpaceBar won't work.
    Here is the topline:
    1. I left the power cord in the office and used a PC one. Not sure if this could be the cause.
    2. I upgraded to 10.6.8 the most current. Didn't help.
    3. Reset the PRAM - Didn't Help.
    4. Checked the Keyboard Viewer - Not sure what that does other than to confirm something is happening.
    If I had to guess - and based on other forums I have looked at - it will likely be a power issue.
    How that affects these keys - I have no idea.
    I will test this next.
    But if anyone has experienced this would love to hear if you solved it.
    Thanks,
    -jc

    Thanks Grant,
    appreciate the info.
    I did try that, and switching the power cord (Which was a long shot) and still not luck.
    Pretty facinating issue.
    I am going ot continue to look through the forums and see if I find anything.
    Thanks again!
    If anyone else has had this issue with an older MacPro - I would love ot hear it.
    -jc

  • I have downloaded the most recent version of Iphoto and it no longer works period. I lost all photos, and the app crashes every time I try to open it. How can this be fixed?

    I have downloaded the most recent version of Iphoto and it no longer works period. I lost all photos, and the app crashes every time I try to open it. How can this be fixed?

    Post the first 50 lines only of the crash report
    Regards
    TD 

  • Divx and other media related plugins always crash and/or no longer work, please help

    Why is nothing of divx seems to work anymore? Every time i try to watch a video online using a divx site or site that uses a divx player, i get the message
    "divx plus web player pluging has cashed, send crash report"
    I send it - then am offered the option to reload the page once reloaded a press play the player then says connecting and then crashes again!!!
    FF this is ridiculas!!
    None of the divx plugins are recognised anymore and the divx web player add on is marked as incompatible, and there is not an option to enable it! When i click on the '''bold text'''more '''bold text'''option all that apears is the link to website where you download the exact same up to date version that you already have.
    im using windows vista home basic 32-bit operating system, & the new version of firefox.
    Its really annoying that these extensions and plugins no longer work crash and/or are no longer recognised espcially considering firefox insisted we upgrade for security issue etc and that 3.6 wont be kept up to date any more, I want reinstall the 3.6 version but am worried about security issues now.
    will the divx plugin and addon/extension be added to this new version anytime soon if not what can i do to enable me to watch videos without the plugin crashing ? (i have updated all the pluggins but the problem still occurs) ?

    I am having the same problems as well. Every time I turned around there was a new version of Firefox 8.0. Prior to the constant updating of Firefox I was able to watch movies from Stagevu and Veehd and now because of the new Firefox I cannot watch any movies. I also tried the VLC plugin and that constantly crashes as well as the DivX Web Player. I read so many complaints and no one from Firefox or any of the other browser is giving any of their constituents or customers whatever you want to call us any solutions to the problem and I am beginning to get a little frustrated. I have tried all of the other browsers like the Internet Explorer and Google Chrome and I still come up with the same problem.

  • Hi, I got my Mac in 2009 with photoshop elements on it - it's recently been wiped, however before the process we put Photoshpp onto a hard drive, we then copied it back over and it no longer works, I'm getting error code 150:30 and I'm being asked for a p

    Hi, I got my Mac in 2009 with photoshop elements on it - it's recently been wiped, however before the process we put Photoshop onto a hard drive, we then copied it back over and it no longer works, I'm getting error code 150:30 and I'm being asked for a password... any ideas how to get it working again?

    You can never, never migrate an installed copy of PSE. It's just too complex and you can't get to all the bits and bobs.
    First you will have to download and run this:
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    which will not seem to do anything, but is necessary to break the links within PSE so that you can pitch the bits manually. Then you will have to go around, not only to applications, but also to your username>library>preferences and most importantly to the library at the top level of your hard drive>application support>adobe, and remove everything you can find. Spotlight will not help with this kind of search, so don't try that.
    Then you can install PSE from scratch.

  • Recently bought a new HDD, and encrypted it, and it no longer works on any machine, help?

    Recently bought a new HDD, and encryped it and it no longer works...
    Does anyone have any idea how or why?
    I can't seem to press anything except repair and verify...

    I followed what it said on another one of these discussion forums, by going onto the disk and changing it to encrypted, created a password then pressed erase, and it no longer will open at all, even on normal windows
    Sean

  • I recently updated my iPhone to the new iOS and it no longer works with my inbuilt car bluetooth. Is it possible to restore to my previous iOS system?

    I recently updated my iPhone to the new iOS and it no longer works with my inbuilt car bluetooth. Is it possible to restore to my previous iOS system?

    Delete the pairing and then re-pair the devices.
    There are no supported methods to downgrade the iOS.

  • After using my iPod classic in my infinity G35 a few weeks ago, I took it out of the car and it no longer works.  Just a white screen with the web address for Apple iPod support.  Worked fine when hooked up to iPod jack in car.  But wont work anywhere now

    After using my iPod classic in my infinity G35 a for the last few weeks, I took it out of the car and it no longer works.  Just a white screen with the web address for Apple iPod support.  Worked fine when hooked up to iPod jack in car.  But won't work anywhere now.  I tried re-setting but has not worked.  Any ideas would be appreciated.

    I finally resolved my problem after spending way too much time on it. I simply handed my 160GB iPod to my husband to put his fav Stones & Beatles songs on and I went back to my 80GB Microsoft Zune which has never disappointed me.
    After spending so much time trying to figure this out I did finally take it back to Apple Store who performed a diagnostic and found there was a problem with the device. They replaced it with a refurbished one which has similar issues. All I wanted to do was listen to my music. Was that too much to ask? So I am happy to be free of this problematic device. No more Apple for me!!

Maybe you are looking for

  • How to find out the "manufacture date"?

    Hello! Can you tell me how to find out the manufacture date of my Satellite A110-334 with the serial "SY6224123K"? I need this information for my insurance! I found only this link for HDD`s: http://www.storage.toshiba.eu/index_manual.php?pid=220&sid=

  • Icon info doesn't update, and display issues

    On my desktop I have my icons set to show information such as drivespace under them. When I empty the trashcan the information doesn't update on the icon, but it does in the finder (finder shows 12gigs, but icon still says 3.4gigs). Is this a common

  • DOCTYPE tag above CF's form validation javascript

    Hi, CF 8 seems to put the form validation javascript at the very top of the page, even before the HTML tag and the DOCTYPE validation tag.  This is causing problems with my style sheet.  Do you know of a way I can (at the very least), put my DOCTYPE

  • Can somebody please tell me what all goes under the "Documents

    I have 8.35G of saved "Documents & Data" and i would like to know what all falls under this category and how i can decrease this storage.

  • Error in SCC4 and T000

    Dear Experts,          I have deleted all clients including 000 through SCC4 Tcode in IDES,now i could not be able to get the New Entries option in Change mode.Please give me the solution...its very very urgent requirement.. Regards, Revathi.K