Delete Key in Form

My users, who are mostly clerical staff want to do everything in a form via the keyboard without using the mouse.
We are on 10gAS(9.0.4) forms on windows 2003 server.
I have found that Ctrl+S will save a record.
What is the key combination for deleting/removing a record. I have not been able to find it via context sensitive Help|Keys or Ctrl+K.
Thanks.
Suresh
I have not been able to find the context sensitive

My users, who are mostly clerical staff want to do everything in a form via
the keyboard without using the mouse.Let me guess... they are all near retirement age, right? (But I agree that keystrokes are faster and easier.)
The resource file is usually fmrweb.res. And in web forms, it SHOULD be editable. The Forms 6 version was not -- you had to use Oracle Terminal, oraterm.exe, and using it is a pain.
Looking at my Forms 10g fmrweb.res file as released from Oracle, the delete record key is Ctrl-Up, and Ctrl-S is the commit key.
But we have changed ours to work like the original client/server version, and delete record is shift-F6.

Similar Messages

  • Error when deleting from Tabular Form

    Hello,
    I have created a Tabular Form on a report based on a table in my database. I used the Wizard to create the form and included the standard 'Cancel', 'Delete' and 'Add Rows' buttons. When I try to delete rows by ticking them and then clicking 'Delete' , I get the standard explorer 'Page Cannot be Found' error with a URL of http://htmldb.oracle.com/pls/otn/wwv_flow.accept
    Any ideas what could be causing this?
    Thanks
    Simon

    Does your DELETE key have an associated After-Process-Branch? Does you page have an "unconditional" Branch. Your unconditional one should have the highest sequence number (of all your branches).
    If you have one assinged to the DELETE key, can you check to see what Page or URL is referenced withint that After-Process-Branch.

  • My delete key doesn't work at all

    Since I got my new Macbook refurb 2 days ago, the delete key has intermittently failed. Right now it seems to be pretty much off.
    Is there a utility I can use to see if it's firing events, and that therefore some piece of software is just swallowing the keypresses, or if the button is actually broken?
    The button has normal action.

    I've had the same problem. Whenever I turn on my MacBook Pro, or when I awaken it from sleep, if the computer is cool (i.e., hasn't been running recently), then both the Delete key and the right bracket key ( "]" ) don't work for a while. This may be 2- 3 minutes, possibly longer at times. During this time, the Keyboard Viewer does not indicate they are being pressed. Once the computer warms up, the problem goes away.
    Note that I have an Apple Bluetooth keyboard, and it works all the time, so I don't think there is a software problem.
    I called Applecare, and the person I spoke with had not heard of this problem. He suggested I reset the power management unit and the PRAM. The former is done by powering the computer off, disconnecting power, removing the battery and holding the power key down for at least 5 seconds. The latter is done by holding command-option-P-R when booting and waiting for the second chime before releasing the keys and letting the computer reboot.
    Neither of these fixed the problem. I think it's a hardware problem, but if the Apple discussion groups are indicative of the frequency of occurence, it doesn't appear to happen very often.
    My next step is to reconnect with AppleCare, who left the trouble ticket open for me. I wanted to post this so you could see that more than one person had the problem.

  • I bought this very nice iMac. The first time I ever use a Apple product. Can someone please tell me where the delete key is on the keyboard. I cannot think for one moment that Apple did not provide for such a key. Please help.

    I bought this very nice iMac. The first time I ever use a Apple product. Can someone please tell me where the delete key is on the keyboard. I cannot think for one moment that Apple did not provide for such a key. Please help.

    The delete key does a backward delete because it is the natural way to delete while typing. May not be to you and the millions of youngsters who grew up with windows computers. When you are typing and want to delete that which you just typed you are already at the end and you delete back to where you want to re-type. When you go back to a document and want to delete a selection, you have to go to the end of the selection instead of the beginning. it's just the way its always been done on macs. it takes some getting use to.
    If you select text to be deleted with your mouse then the delete key deletes the selected text. same for either delete key method.
    It is not convenient when you tab to fields in a form. That why fn-delete does a forward delete.
    Macs have a couple of keyboards. The small "wireless keyboard" only has the (backward) delete (fn-delete forward). The larger "Apple Keyboard with Numeric Keypad" has both a Delete (backwards) key beside the = abd it has the "delete >" key in the groups with fn, home, end, Pg up and Pg dn. This keyboard is best for users who have switched from windows or are familiar with the windows forward delete.

  • StructDelete() delete keys of a structure that found in database

    Hello,
    I want to delete keys of a structure that found in database.
    When more than 2 keys found in the database, it only delete the
    first one. Please see the code below:
    <cfset atime = StructNew()>
    <cfset a = StructInsert(atime, "9:30 AM", 1, 1)>
    <cfset a = StructInsert(atime, "10:00 AM", 2, 1)>
    <cfset a = StructInsert(atime, "10:30 AM", 3, 1)>
    <cfset a = StructInsert(atime, "11:00 AM", 4, 1)>
    <cfset a = StructInsert(atime, "11:30 AM", 5, 1)>
    <cfset a = StructInsert(atime, "12:00 PM", 6, 1)>
    <cfset a = StructInsert(atime, "12:30 PM", 7, 1)>
    <cfset a = StructInsert(atime, "1:00 PM", 8, 1)>
    <cfset a = StructInsert(atime, "1:30 PM", 9, 1)>
    <cfset a = StructInsert(atime, "2:00 PM", 10, 1)>
    <cfset timelist = arrayToList(structSort(atime,
    "numeric"))>
    <cfquery name="getEmployee"
    datasource="signatu_datasource">
    select * from SIGNATU_APPOINTMENT where EMPLOYEE_ID =
    "#trim(URL.nicknm)#"
    </cfquery>
    <cfloop list='#timelist#' index='current_time'>
    <cfif current_time eq '#getEmployee.TIME#'>
    <cfset d = StructDelete(atime, "#current_time#",
    "True")>
    <cfelse>
    <cfoutput><option
    value="#atime[current_time]#">#current_time#</option></cfoutput>
    </cfif>
    </cfloop>
    Thank you in advance.

    Thank you CFDEBUG for answering my question. Basically, I
    have a form for users to make appointment.
    First the user'll have to select a date, then user select an
    employee who he/she wants to make appointment with. Based on the
    selected employee, I populate a dropdown of available time. Please
    see GetTime.cfm below:
    <cfset atime = StructNew()>
    <cfset a = StructInsert(atime, "9:30 AM", 1, 1)>
    <cfset a = StructInsert(atime, "10:00 AM", 2, 1)>
    <cfset a = StructInsert(atime, "10:30 AM", 3, 1)>
    <cfset a = StructInsert(atime, "11:00 AM", 4, 1)>
    <cfset a = StructInsert(atime, "11:30 AM", 5, 1)>
    <cfset a = StructInsert(atime, "12:00 PM", 6, 1)>
    <cfset a = StructInsert(atime, "12:30 PM", 7, 1)>
    <cfset a = StructInsert(atime, "1:00 PM", 8, 1)>
    <cfset a = StructInsert(atime, "1:30 PM", 9, 1)>
    <cfset a = StructInsert(atime, "2:00 PM", 10, 1)>
    <cfset a = StructInsert(atime, "2:30 PM", 11, 1)>
    <cfset a = StructInsert(atime, "3:00 PM", 12, 1)>
    <cfset a = StructInsert(atime, "3:30 PM", 13, 1)>
    <cfset a = StructInsert(atime, "4:00 PM", 14, 1)>
    <cfset a = StructInsert(atime, "4:30 PM", 15, 1)>
    <cfset a = StructInsert(atime, "5:00 PM", 16, 1)>
    <cfset a = StructInsert(atime, "5:30 PM", 17, 1)>
    <cfset a = StructInsert(atime, "6:00 PM", 18, 1)>
    <cfset a = StructInsert(atime, "6:30 PM", 19, 1)>
    <cfset a = StructInsert(atime, "7:00 PM", 20, 1)>
    <cfset timelist = arrayToList(structSort(atime,
    "numeric"))>
    <!--- If user doesn't select anything, I give an empty
    dropdown --->
    <cfif URL.nicknm eq ''>
    <span>
    <select name="available_time">
    <option value=''> </option>
    </select>
    </span>
    <!---If user selects 'All', I loop over the structure
    above and populate all the time --->
    <cfelseif #trim(URL.nicknm)# eq 'All'>
    <span>
    <select name="available_time">
    <option value=''>[Select]</option>
    <cfloop list='#timelist#' index='time'>
    <cfoutput><option
    value="#atime[time]#">#time#</option></cfoutput>
    </cfloop>
    </select>
    </span>
    <!--- If user selects an employee in the dropdown, I query
    the database --->
    <cfelse>
    <cfquery name="getEmployee"
    datasource="signatu_datasource">
    select * from SIGNATU_APPOINTMENT where EMPLOYEE_ID =
    "#trim(URL.nicknm)#"
    </cfquery>
    <!--- First I check if that employee has been booked yet.
    If he/she has been booked 1 or more, I check what date is he/she
    booked. --->
    <cfif getEmployee.RecordCount GT 0>
    <!--- if the dates in the database are the same as the
    date the user selected, again I loop over the structure above and
    check if any of the times in the structure are the same as the time
    in the database. If found, I delete those times which are the keys
    of the structure so that they don't show in the available time.
    --->
    <cfif '#getEmployee.DATE#' eq '#URL.dt#'>
    <span>
    <select name="available_time">
    <option value=''>[Select]</option>
    <cfloop list='#timelist#' index='current_time'>
    <cfif current_time eq '#getEmployee.TIME#'>
    <cfset d = StructDelete(atime, "#current_time#",
    "True")>
    <cfelse>
    <cfoutput><option
    value="#atime[current_time]#">#current_time#</option></cfoutput>
    </cfif>
    </cfloop>
    </select>
    </span>
    <!--- If the dates in the database are not the same as the
    date the user selected, I just loop over the structre above and
    populate all the time. --->
    <cfelse>
    <span>
    <select name="available_time">
    <option value=''>[Select]</option>
    <cfloop list='#timelist#' index='curr_time'>
    <cfoutput><option
    value="#atime[curr_time]#">#curr_time#</option></cfoutput>
    </cfloop>
    </select>
    </span>
    </cfif>
    <!--- If the employee has been't booked any appointment, I
    loop over the structre above and populate all the time again.
    --->
    <cfelse>
    <span>
    <select name="available_time">
    <option value=''>[Select]</option>
    <cfloop list='#timelist#' index='time'>
    <cfoutput><option
    value="#atime[time]#">#time#</option></cfoutput>
    </cfloop>
    </select>
    </span>
    </cfif>
    </cfif>
    I know my logic is not very clear. If you can suggest any
    better solution, I would appreciate it very much. Thank you for
    your time.

  • Delete key in on screen keyboard for Dell Venue Pro 8 tablet?

    Using Windows 8.1 on a Dell Venue Pro 8 tablet. The software, onscreen keyboard does not have a Delete key. That makes it very hard to do any editing after highlighting a block of text. Hitting the backspace key takes it out of the block edit mode and
    just deletes on letter at a time. Anyone know if this is a general Windows tablet problem or possibly some unique to the Dell Venu Pro 8 tablet? I would like to change the keyboard layout to include the Delete key. Also, is there setting so it could recognize
    when to capitalize a word? I would think that my Sumsung phone would not have a better software keyboard, but it has a much, much better version in SwiftKey.

    I guess you mean the "touch keyboard" ?
    There is a "keyboard selector" key in the bottom right hand corner, which allows you to select alternative layouts - have you tried that?
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Text won't stop deleting, delete key appears to get "stuck"

    Sorry if this is in the wrong topic, I have never used the support forums for any of the multitude of problems I have had with my Mac, but this one is severe and odd enough that I couldn't even find anyone else discussing it (although I'm sure someone is, but I tried many search key combinations on Google and only found unrelated things), so I decided to at least get it documented.
    I have had an issue that has happened at least 3 times I can remember (I am fairly certain it has happened more, closer to 7-8, those are just the times I am 100% confident about), although very spaced apart and infrequent, where my delete/backspace key seems to get "stuck". However, at least one time I can verify that I never even hit the key. Whatever text I currently have open immediately starts deleting at lightspeed, and I can do nothing to stop it. None of the other keys on my keyboard work, and though my mouse works, if I click somewhere else, it starts deleting the text there. When I force it to go to another window where there isn't an open text box, I get the general Mac error sound, and it repeats non-stop, and faster than I've ever heard it. I have to do a hard shut-down, although once it led to a kernal panic. When I have stopped whatever is happening before it panics though, when I restart, I don't receive any kind of error message, nor the message about OS X not having been shut down properly.
    Every single time it has happened when I was typing something that couldn't be saved, like a message on a forum, a private message on a site or an IM chat window. Sometimes I lost a half hour's worth of work or more.
    The first time it happened, I honestly thought someone had managed to hack into my computer, but another time I was using a physical modem and Airport was turned off, and when I ripped out the cord, it didn't stop.
    I have a MacBook Pro from 2007, running the most recent version of Tiger. I haven't had the money to upgrade. All security updates are up-to-date, with one exception: I have not upgraded to the most recent version of iTunes.
    Honestly, I currently am having and have been having a bunch of other severe issues with my Mac, so troubleshooting will be quite difficult as it's not at all impossible it's a result of one of my other problems. I also currently am dealing with some health problems that make me unable to try to find the root of the problem, specifically I have a problem with my hand and wrist that makes typing very difficult.
    If someone does recognize this issue and already knows why it might be happening, I'd appreciate the help. I'd also appreciate anyone letting me know how I can prevent it OR what to do when it begins and how to stop it. But I probably will be unable to go through a typical troubleshooting rundown.
    As I said, I just wanted this documented, and I also would like to know if anyone else has had this problem. I have never experienced an issue like this with any of my past computers, including Macs and PCs. I do know however that the key is NOT physically getting stuck - as in getting lodged down and continuing to be pressed. There is at least 1 time I can verify I never even hit the key (I wasn't typing anything at the time). I am fairly sure the problem is entirely unrelated to the actual delete key itself.
    I'll describe the symptoms one more time:
    At a random time, with no discernible warning, text contained in whatever text box I have open begins deleting itself. Several paragraphs disappear in a matter of seconds.
    Pressing escape or any other key on the keyboard does nothing. If I click to another area in the text, it will immediately begin deleting wherever I have placed the cursor. If I go to another window with text that can be edited, it begins deleting there. It does not delete in more than one place simultaneously.
    If I bring another window without any kind of "deletable" text to the front, one of the general Mac error sounds (I'm not sure which one it is) starts happening and repeats without stopping at a rate that could induce a seizure. To stop it all, the only thing I have found can be done is a hard shut-down. Another time it continued to end in a kernal panic. I wish I had the details of the error, but it was so long ago and I have no idea which panic is the right one in the logs.
    I have no way of knowing what programs were running at the time, as obviously that's not something I'm able to pay attention to when it happens, and it has happened so randomly and infrequently it's nothing I've been able to document. Since I have to restart to make it stop, I've then lost that info and I have no time to try to write it down or something beforehand.
    I have not had any similar issues that I know of (for instance, for the "g" key keeps repeating and won't stop typing "g's") and I've never experienced this on any past computer.
    Thanks for anyone who can help!
    If you aren't able to offer advice but have had this issue yourself, PLEASE let me know. I can't seem to find anyone who has experienced this particular problem.

    "Cleaning the keyboard is the first step in troubleshooting sticky/stuck keys."
    Okay, I guess I misunderstood, although I am still confused. You're saying that since the other user did an extensive clean of their keyboard and this did not solve the problem, it is "most likely" a hardware problem, correct? Wouldn't a thorough cleaning without any results show that it's probably not physically related to the keyboard?
    "The "delete" key may be defective or the cover you are using somehow is making the key stick. If you have ruled out the latter and everything else, your only other alternative is to take the MBP to your local Apple Store or AASP. The staff will check out your keyboard (free) to confirm if you are having a hardware problem. If you have AppleCare or ProCare, the repairs will be free. If not.................."
    Well, I had just said in my most recent post that it has now happened with other keys, and in my initial post that it happened at times when my hands were nowhere near the keyboard. It is not a defective delete key and the cover is not making the keys stick - it doesn't adhere to them and does not have any sticky substance on it of any kind. I am an experienced computer user, and I know my computer very well. While I am not a psychic that can always know what is causing a problem, I am able to discern with much accuracy what is NOT causing it.
    Also, I have significant health issues so getting to an Apple store would be a huge challenge for me. And although I have AppleCare any repairs won't be free. Due to some small physical damage my laptop obtained a few years ago, I have been completely refused almost all service that I paid over $300 for, even though the damage is completely superficial. After fighting this, I was told they WOULD repair my computer, however, they would also repair the physical damage despite my insisting NOT to; I had no choice in the matter and the cost would be a minimum of $1,500 (I also would not be informed the exact price until after and my credit card would be charged without my knowledge - I had to give them my credit card number and sign away their right to make any charges and when I requested being contacted before they charged me for the repairs I didn't want done, I was told they did not do that). My family is struggling to pay for my $5 medications.
    When my logic board died (that same issue that affected thousands of computer users), I had to print out Apple's report from their site, which stated that they would replace and repair them free of charge to ANY Mac owner with a computer that met certain qualifications (which mine did). When it happened, completely out of nowhere, I knew immediately that was the problem, yet still had to go through the insulting and idiotic "Is your computer plugged in?" list of things and a customer WITH AppleCare was being refused a service they'd offered to people WITHOUT AppleCare, for a known manufacturing defect that has occurred widely in nearly every brand of computer made.

  • How can I restore Thunderbird behavior so I can delete emails by pressing delete key multiple times (without using mouse to change focus back to message list)?

    Thunderbird 24.3.0 (latest under OpenBSD)
    I (like most people) get spam in my inbox. When there are multiple spam messages in a row in my inbox I used to click on the first message and then press the delete key repeatedly for each sequential spam message.
    After upgrading, this doesn't work. Instead, when I click a message it opens in the message preview pane and moves the focus to the message. Thus I need to click twice to even be able to press the delete key to delete one message. When I press the delete key, the message is deleted and the highlighted message becomes the next one in the list. This opens the message in the preview pane and again shifts the focus to the message. Thus I can't press the delete key again but must move the mouse to click on the message before I can delete it.
    As a result, what used to be a very fast process of weeding through spam has become a real annoyance.
    I realize I can hide the message preview pane to prevent the focus from moving, but this means I must delete solely based on the email subject/sender -- or open each message (which is even slower).
    I also realize that I can press tab multiple times (sometime 4, sometimes many more) to shift the focus back but that's not much faster than using the mouse.
    How can I prevent Thunderbird from shifting the focus away from the email list panel unless I actually click somewhere else?

    Well said! And you said it about six weeks ago. And 4 other people said "Me Too." - I guess we're screwed.
    I guess it's time to switch to GMail.
    Such a trivial thing, but it irritates me every single time.
    MOZILLA - YOU'RE GOING DOWNHILL...

  • How to delete a row in ADF Table by pressing "Delete" Key

    I want to delete a row in my ADF table by pressing the "Delete" key..How can i achieve it?

    hai ,
    I write clientListener and ServerListener..But in the script i printed the event.getKeyCode() ...*When i press Delete Key or EnterKey ,it is not printing the value*..
    The code i write is pasted below..
    In the code backing_Comm is my backingbean..Is there any problem in the code that i had written?I want to delete a selected row from my table using keypress Event...pls advice..
    <script type="text/javascript">
    onPressDeleteKey=function(event){
    alert(event.getKeyCode()); // *Here i am not getting the alert, when i press Delete Key or Enter Key..But getting alert when i press A- Z or 1 - 0*
    if(event.getKeyCode()==AdfKeyStroke.ENTER_KEY) {
    var source = event.getSource();
    AdfCustomEvent.queue(source,performDeleteOnPress,{},false);
    </script>
    <*af:table* value="#{bindings.ComMastVO.collectionModel}"
    var="row"
    rows="#{bindings.ComMastVO.rangeSize}"
    emptyText="#{bindings.ComMastVO.viewable ? 'No rows yet.' : 'Access Denied.'}"
    fetchSize="#{bindings.CompMastVO.rangeSize}"
    rowSelection="single"
    id="tblCom"
    columnStretching="last" inlineStyle="width:100%;"
    width="273"
    selectionListener="#{backing_Comm.rowSelectCom}"
    binding="#{backing_Comm.tblCom}"
    clientComponent="true" >
    <*af:column* sortProperty="Com" sortable="true">
    <*af:inputText* value="#{row.bindings.Com.inputValue}"
    label="#{bindings.ComMastVO.hints.Com.label}"
    required="#{bindings.ComMastVO.hints.Com.mandatory}"
    columns="150"
    maximumLength="#{bindings.ComMastVO.hints.Com.precision}"
    shortDesc="#{bindings.ComMastVO.hints.Com.tooltip}">
    valueChangeListener="#{backing_Comm.onValueChange}"
    autoSubmit="true" >
    <f:validator binding="#{row.bindings.Com.validator}"/>
    *</af:inputText>*
    *<af:serverListener type="performDeleteOnPress"*
    *method="#{backing_Comm.goDeleteCurrentRow}"/>*
    </af:column>
    *<af:clientListener type="keyPress"*
    *method="onPressDeleteKey"/>*
    </af:table>
    =================================================
    anybody pls help??
    Edited by: Briston Thomas on Jun 3, 2009 2:25 AM

  • HT2513 I can't delete events recurring annually...not part of birthday calendar, one's I've added manually.  I've tried delete key, cut event, changing to no recurrence, they just revert to original recurrence and will not be removed from my calendar.  Th

    I can't delete events recurring annually...not part of birthday calendar, these are events I've added manually.  I've tried delete key, cut event, changing to no recurrence, they just revert to original recurrence and will not be removed from my calendar.  Events that occur weekly I'm able to delete, this is only happening with events recurring annually.  Very frustrating.  Thanks for any ideas.

    If you are using a PC, log on to iCloud using Safari (rather than Explorer) to reset the photostream. Then turn iPhone/iPad photostream off and back on. I was getting the same server error as you and this advice from another blog worked for my iPhone and iPad.  But I still can't get photostream deleted from my apple tv. There does not seem to be a photostream on/off control In Apple tv 4.4 software.  I tried switching the screen saver to one of the ones that comes preloaded on the device, then back to photostream but all the old photos are still there.  If anyone can help with this, I would appreciate it.

  • Since I must create a folder to send questionable emails I may read or refer to later, how do I change the action of the delete key so it'll be just as easy?

    After recognizing and following the suggestions I skimmed in the Q&A, my trash is still being emptied against my wishes. Everything looked familiar involving settings, etc. I think and hope and will re-check that I've all the correct settings applied. I would like to verify; Do I have to really create a folder to send my email to instead of trash/delete if I want to view it later? If so that sucks, but I'll obviously work around it. My frustration with this matter over the years caused me to stop reading and here I am, agitated. I can probably figure out how to create a folder and MAYBE even figure out how to make it somewhat easier than it sounds to move the emails there. My biggest obstacle is learning how to program the delete key on my keyboard to send them there, because it's simply common sense to everyday users not to mention a terrible habit occurred over the many years of practicing to strike the delete key when a "I'll get to it later" email is highlighted AND without any worry knowing you can always find it in the trash because you know the last time the trash was emptied/permenantly deleted. Can you somehow make this a little more user friendly. It sucks to not be able to trust having an email when you go back to look for it. Can you imagine having to pay attention anything for longer than 5-7 seconds when you're trying to find that one email amongst possibly thousands in one of my in boxes because you're scared to death to delete anything that may be of value one day in the future, or not. Pretty please tell me I'm on the wrong track here and there's a simple solution and how to find it. And

    IMHO, the mistake is to put anything in Trash if you think you'll ever want to look at it again. Do you ever "file" actual paper documents in the real Trash bin, down there on the floor?
    However...
    Your Trash folder may be on the email provider's server and subject to their housekeeping regime. Have a look at your account settings; if the account uses IMAP then you might try setting it to use a local Trash folder, for instance in your Local Folders account. That should put emptying of Trash under your control and safe from the whims of any third parties. But in my book, using Trash for persistent storage is perverse. Or as you might put it, it sucks.
    I'd set up a Pending folder, and use QuickFolderMove, or use star and a filter, or a tag and a filter to park indeterminate messages in it.
    The delete key is for deleting things, and nothing else.

  • Space Bar & Delete Key Not Functioning Properly in Safari/Chrome

    I have Googled extensively on this problem to no avail. I'm hoping the Apple Community faithful can help.
    I recently had the logic board on my work Mac Pro crash, and updated to a new Mac Pro (Snow Leo). The local Apple Store was of course able to tranfer all my settings/info to the new machine, and so far everything is humming right along with no issues...except for something VERY strange. Ever since getting the new Mac Pro, typing in Safari and Chrome is very screwed up...as far as I can tell only the spacebar and delete key functions. In Safari, hitting the spacebar while typing functions like hitting the spacebar on a webpage, jumping down on the page. The delete key functions like I'm hitting the back button in the browser. This appears to be happening in Chrome as well, but it can't handle it at all and crashes instantly upon hitting either of those keys. Strange thing is, Firefox is working perfectly.
    I have deleted preference files and repaired permissions and neither of those helped. I'm lost here guys. Anyone have any insight?
    Thanks as always,
    Jason

    Sorry to hear, I would not have let anyone transfer settings.
    Easy to do yourself.
    I would have kept the old system.
    And then you would be using a clean vanilla OS.
    So what I would jdo now is a clean install on one of your hard drifves and see if that rules out issues.
    USB cables, extensions, hubs, keybaord is a hub also, can all do mischief, even kernel panic.
    Permissions? No. Repair the hard drive, Yes, maybe even with something more robust than Apple First Aid.
    And not just prefs, a lot of issues reside with application cacvhe files and folders.
    Cloning a system, repair8ing, and booting is good maintenance.
    A clean install and update should take under an houjr.
    While new Mac Pro should run 10.6.8, it is possible that it would have come or shipped with Lion at this point.

  • How can I change the key to delete a message from the delete key to command-delete like it is in the finder?

    These new forums confuse me... Sorry.
    I often think I am typing in another window but I'm actually typing while Mail.app is selected.  When I discover this, I often (without really thinking) start whacking the delete key.  When I whack the delete key, of course, a message is moved to the trash.  So, without really thinking about it, I delete three to six messages.  Go ahead -- call me stupid.  But...
    If delete is not used to delete files in the Finder, then why is it used to delete files in Mail?
    One group suggested making customer keyboard macros.  Sounded like a plausible solution.  I could make a customer keyboard macro so that delete did nothing (or something benign) and make command-delete delete the message.  Alas, using the Apple => System Preferences => Keyboard => Keyboard Shortcuts => Application Shortcuts gave me no Joy because it won't let me do either of those.  When I try to enter either delete or command-delete into the "Keyboard Shortcut" box, it just beeps at me.
    Does anyone here have a suggestion?
    Thank you,
    pedz
    p.s.   I can get the deleted messages back using Undo (repeatedly) but I think that is new with Lion.  So life isn't tragic but it still is an interface that I'd like to change if I could.

    You can define your own custom keystrokes in System Preferences -> Keyboard.  I'm not 100% sure that this blocks the old keystroke, though, and am posting from my iPad and can't check that at the moment.

  • Recently, the delete key and rt click delete do not remove a message. Have to restart T'Bird to be able to delete a message. Using v 24.5.0

    Using Thunderbird 24.5.0, W7, up-to-date in fixes
    The delete key and the right click delete suddenly don't delete a messsage.
    Restarting Thunderbird and then they both work.
    What should I be looking for?

    I tried that - but same result.

  • Regedit Permissions -"Access Denied" or "Error while deleting key" EVEN AS ADMIN!

    Anyone tried deleting a registry key in Windows 7?  Got "access denied" or "Error while deleting key"?
    The usual response is, "You need to run regedit as an administrator".  but I *AM* logged in as Administrator, and running regedit as administrator, trying to assign administrator full permissions on that registry key in order to delete it!!  
    Am I mistaken, or isn't Administrator supposed to be able to administer and control all the settings on the computer, in order to set it up for the "Average Joe" user?
    So, under the permissions menu of that key, go to advanced, change the owner from System to Administrator, and try again.  It's no longer saying "access denied", but "Cannot delete xxxxxx. Error while deleting key".
    The scenario: Basically, the wireless has stopped working on a laptop. The device does not show up in Device Manager, but is in the registry, so the normal procedure is to delete the registry entry for the device in HKLM/System/CurrentControlSet (and /ControlSet001) /Enum/PCI    ,then attach the device or restart the computer, it finds the "new" hardware and reinstalls it. Easy!...
    Not with permission restrictions on the administrator account it's not!  So I need to give myself permission, to give myself permission, to do a simple task like delete a single registry key!  Why, Microsoft, why???!!!  Please just make the Administrator account a hidden "God mode" account that can do anything, and make the lives of us techies much easier in the process!  
    /RANT
    Now, where did I put that XP disc?!....

    Hi,
    I explain you:
    Administrator does not mean "you get all rights to do anything." Administrator happens to be an account (or in your case, most likely the Local Administrators group) which by default is given some sensitive privileges like SeDebugPrivilege and
    similar. However, as far as the security subsystem is concerned, it is just an account. (Very much unlike root in
    Unix-like operating systems) If you aren't the owner of the key in question, and your account does not have WRITE_DAC access
    to the registry key in question, then you won't be able to change the access control list on the key in question.
    Try taking ownership first. By default, the local administrators group has SeTakeOwnershipPrivilege,
    which allows taking ownership of any object even without the WRITE_OWNER permission
    being granted by the object's discretionary access control list. Once you are the owner, you should be implicitly granted READ_CONTROL (which
    allows you to read the security descriptor on the object in question), and WRITE_DAC (which
    allows you to write to the DACL on the key in question). (Assuming the OWNER_RIGHTS SID
    isn't in use; that's extremely unlikely)

Maybe you are looking for