Razzak, This came about when a user was using F7(previous) and F8(next) and shifted their fingers to F8(next) and F9(delete) and since I have PROPERTY RBASE_FORM DONTSHOWDELETEDIALOG "TRUE" in the after start eep the user was happily deleting rows without looking at the screen.
The user really needs to use F7 and F8 so I really need to move things away from F6 and F9 to be save. I know that F2 is INSERT and F9 is DELETE but what what are the other defaults? Jan -----Original Message----- From: "A. Razzak Memon" <[EMAIL PROTECTED]> To: [email protected] (RBASE-L Mailing List) Date: Wed, 27 Aug 2008 12:04:45 -0400 Subject: [RBASE-L] - Re: Keymaps At 11:50 AM 8/27/2008, Jan Johansen wrote: >Also if I place SET KEYMAP [F9] OFF >in my startup form will [F9] (delete key) be de-activated for the session? Actually, that will reset everything back to normal. However, if you need to disable the [F9] key, you will have to assign [F9] to something else, such as [F6]. Here's how: Add the following code at the beginning of your application start file or in RBASE.DAT file: SET KEYMAP [F9] = [F6] RETURN You may reset everything back to normal using the following code: SET KEYMAP [F9] OFF RETURN Both commands can also be used as "On Before Start EEP" & "On Close EEP" when using a form based menu driven application. And, that's all there is to it! Have fun. Very Best R:egards, Razzak.

