Forms Key-Bindings in Windows

Is there any way to disable the key bindings in a forms
application without editing the windows resource file
(FMRUSW.RES) in Oracle Terminal? I know that the key-bindings
can be suppressed in the Key-Others trigger, but how do you refer
to the specific key you want to disable?
Any help is appreciated. Thanks in advance.
null

Hi
There are over 1000 user-definable key commands in Logic, with many already defined in a variety of presets. I'd suggest using the standard US set (with no numbers keys)
http://documentation.apple.com/en/logicpro/usermanual/index.html#chapter=8%26sec tion=4%26tasks=true
HTH
CCT

Similar Messages

  • Cut/Copy/Paste - How to set the key bindings ?

    Hi,
    I'm currently using the motif LnF in Windows. It matches the colors and style I want.
    The problem is: people using Windows want to use the standard windows key bindings (that is: CTRL+V, CTRL+C, CTRL+X) instead of the Motif ones.
    Does anyone how to set the old Windows key bindings into the Motif LnF ?
    If anyone can provide some light, it'd be great !
    Regards,
    - Juancho

    The Swing tutorial on "General Rules for Using Text Components" has a demo program that shows you how to assign KeyStrokes to Actions.
    Unfortunately the demo has not been updated in a while and still uses a keymap. The new approach would be to use an 'inputMap' and an 'actionMap'. The code for the copy action would be something like this:
    textComponent.getInputMap().put(keyStroke, "copy");
    textComponent.getActionMap().put("copy", action);
    Again, the demo program 'TextComponentDemo' from the above tutorial will show you how to:
    1) create the keyStroke for Ctrl+C
    2) retrieve the default copy action from the editor kit

  • Problem changing default key bindings using Oracle Terminal

    Hello,
    I'm facing a problem changing default key bindings using Oracle Terminal. I changed
    some bindings, saved them in forms60/fmrusw.res, started the generation and saved again.
    I thought that's it but it wasn't. It took no effect at all in Forms (even after recompilation) although reopening the file in Terminal showed the changes. I'm using Forms in German, which means that even the key bindings displayed in Forms are translated i.e. STRG+F1 instead if CTRL+F1,
    but I can't find a german version of this resource file, so i think it's the same resource file for all supported languages. But what is needed for the changes to take effect ?
    Thanks in advance
    STD
    null

    Hi,
    is it client/server you are working?
    if so you should not be using the fmrusw.res file because I guess your NLS_LANG is German_Germany.WE8ISO8859P1 or something like that. This means the terminal that is being opened is fmrdw.res instead of fmrusw.res and this file should be edited using Oracle Terminal.
    if you are working via the web implementation than you can open the file fmrweb.res in a text editor and change the keybindings in there. If you need to have the PC like key bindings on the web just open the fmrpcweb.res and see if it contains the German texts. If so you can either copy this file over the frmweb.res file or you can specify term=fmrpcweb.res in the serverargs parameter.
    Hope this helps.
    Kind regards,
    Frank van der Borden
    Oracle Support Services
    Netherlands

  • How to customize key bindings, say emacs-like.

    I have been able to install keyconfig, but I can't find the code for simple things like:
    forward-char
    backward-char
    move-beggining-of-line
    move_end-of-line
    and other emacs-like commands.
    The page
    http://kb.mozillazine.org/Keyconfig_extension:_Thunderbird
    has a long list of command I can shortcut, but none of the simple ones I need to navigate
    the composition window, in emacs-like style.

    Yes, left and right arrows do the job, as well as Home and End keys. However, being a regular emacs user, it takes me less time and comes more natural to find C-f, C-b, C-a and C-e on the keyboard.
    I actually have TB on two machines, home and work. In one of them the emacs-like key bindings work, but not on the other machine, even though they are running the same version of Mac OS and TB.

  • Terminal key bindings for Home and End

    I am recording this here in the hope of savings others some time.
    It is often stated that the following Terminal key bindings have to be asserted to get Home and End keys working as intended:
    \033OH
    \033OF
    I find this misleading as it is neither what most people would type nor what they would see.
    I type:
    escape O H
    escape O F
    This results in:
    \033oh
    \033of
    which works as intended but using 'shift' to produce the capitals depicted in most notes about this will not work.

    My default bindings did not work for home and end but page up and page down inexplicably worked with shift. The image below shows the keys and their bindings (eg \033[5~ and \033[6~ stated here for Google!) I applied to Terminal to make home, end, page up and page down behave in the same way as many other applications including iTerm. Remember to type 'esc' to get '\033'.
    I started out trying to improve the readability of large manual pages (eg man bash). Whilst the changes above improved things considerably I have now found better alternatives.
    I tried iTerm - the keys worked correctly but inconsistencies between the various window size settings did not inspire confidence.
    I now use ManOpen.app which I have configured to open when I type eg 'm chmod' in Terminal - I changed the name of openman to m and put it together with openman.1 in /usr/bin. The pages scroll normally and have hot links to other manual items. This is a simple way to vastly improve manual reading. The only slight negatives I have found are:
    1 - two preference panes will not open - defaults OK for me
    2 - window positions not remembered - since size can be set I can live with this
    3 - text cannot be set to soft wrap to window width (misnamed zoom by some applications).
    I would be interested to hear if others have found better ways of viewing manuals.
    Here are some interesting pages:
    http://en.wikipedia.org/wiki/Tableof_keyboard_shortcuts#Command_lineshortcuts
    http://www.tuaw.com/2008/03/07/here-comes-your-man-viewer/

  • Terminal Key Bindings

    I have noticed when using terminal. If I launch some in terminal applications, the key bindings for some keys no longer seem to work. Of primary concern are 'up arrow', 'dn arrow' and 'backspace'.
    I know I can go into the Terminal menu -> Window Settings and launch the Terminal Inspector to remedy, but I can't quite figure out how.
    The backspace seems to repair by setting "Delete sends backspace" I thought I could fix Up arrow by setting the key mapping to "\UF700" but I could only get it to enter as \\UF700 and that did not seem to work.
    Any ideas on mapping the up arrow and dn arrow keys?

    You can use the bindkey command for setting the keymap.
    E.g. bindkey -k up up-history. This bind the command up-history to the up arrow key. Without the -k option is this the characters ^[[A for up ^[[B down
    ^[[C right and ^[[D left.
    For an individual keymap use bindkey ^[t clear-screen. The character ^ is the sign for the controll key, t stands for an individual character and clear-screen is the command.
    Write this into the .cshrc if you use the tcsh shell.
    In the bash it is easier.
    The arrow map used nearly the same characters as in the tcsh.
    "\e[A": up-history is the map for the up arrow
    For an individual key is this:
    Control-t:clear-screen.
    Write these into the .inputrc file.
    The default settings for the arrow keys are: up-history, down-history, backward-char and forward-char.

  • Control-k key binding broken. How can I check and change my key bindings?

    I use the Terminal app a lot. Unfortunately I am not able to use the control-k shortcut to cut lines in the terminal anymore. How can I check (and change) the Terminal key bindings?
    Thank you!

    Basing on your input, you should get the following values:
    1) session keys
    SK_ENC: 6DCE2A99BACB5207A7A96A92F114D66C
    SK_MAC: 0D446132B168F75CD6F0A780693A4DD3
    SK_DEK: 19F7B0F94837F32874B29B5EFB7809F6
    2) host cryptogram
    1B781553209748EA
    3) Retail MAC
    01761103B810F00E
    Summing up, the External Authenticate command should have the following value:  84 82 01 00 10 1B781553209748EA 01761103B810F00E.
    Try to compare it with your results.
    Regards

  • How to open a entity form in a new window using openEntityForm() method.

     How to open a entity form in a new window using openEntityForm() method.

    As far as I'm aware, there isn't a supported way to do this in the client-side API. You could use window.open instead
    Microsoft CRM MVP - http://mscrmuk.blogspot.com/ http://www.excitation.co.uk

  • Problem installing Oracle forms and report in windows 7

    I have a problem while installing Oracle forms and reports in windows 7 64 bit
    The error is : [as] [ERROR] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000IY5_e_EApIRMyYAhMG1BuDGr00000B,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
    at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:688)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:393)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
    at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
    at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
    at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
    at java.lang.Thread.run(Thread.java:619)
    So I Google for it and found that this is version mismatch (May be I am wrong) and it tells that I have to install WLS - 10.3.2 with ofm_pfrd_win_11.1.1.2.0_64 (1 to 4)
    But I am unable to get wls version 10.3.2.
    For better understanding I am listing my installers :
    (I) Windows 7 Ultimate 64 Bit
    (II) (Oracle 11g) win64_11gR2_database (1 & 2)
    (III) ofm_pfrd_win_11.1.1.2.0_64 (1 to 4)
    (IV)wls1033_generic.jar , wls1033p_generic.jar , wls1035_generic.jar
    (V)accessbridge-2_0_2-fcs-bin-b06
    (VI)ofm_rcu_win32_11.1.1.2.1_disk1_1of1,ofm_rcu_win_11.1.1.3.1_disk1_1of1
    (VII) ofm_wc_generic_11.1.1.5.0_disk1_1of1
    (VIII)jdk-6u38-nb-7_2_1-windows-i586-ml , jdk-6u38-windows-x64
    (IX) oepe-wls-indigo-installer-11.1.1.8.0.201110211138-10.3.6-win32
    (X)wls1033_oepe111150_win32.exe
    (XI)wls1035_win32.exe
    (XII)wls1035_oepe111172_win64
    (XIII)oepe-indigo-installer-12.1.1.0.1.201203120349-12.1.1-win64
    After the installation while configure the forms reports, I am stuck while creating domain.
    steps I follow is :
    (i) Install Windows 7 Ultimate 64 Bit
    (ii) (Oracle 11g) win64_11gR2_database (1 & 2)
    (iii) wls1033_generic.jar
    (iv) accessbridge-2_0_2-fcs-bin-b06
    (v)ofm_rcu_win32_11.1.1.2.1_disk1_1of1
    (vi) ofm_pfrd_win_11.1.1.2.0_64 (1 to 4)
    Please any body help, for the installation of oracle forms and reports.
    I have a formatted Windows 7 Ultimate
    Where I have installed Adobe Acrobat Reader
    IIS server from windows installer
    Now I want to know the exact procedure so that i can run the forms and report in my machine.
    This is my first installation of Oracle forms & Reports, so please do not pre assume about my understanding (Like "to install this he surely did this environment settings" )
    Please specify all the steps
    Furthermore if Another software I have to download then please tell me.
    And I will be grateful if you specify the mistakes in my side.
    Looking forward with anticipation.

    Solved, Thank you

  • Urgent help needed to setup Forms 6i Server on Windows Server 2003

    Hello,
    I am trying to install Forms 6i Server from the Forms/Reports 6i Release 2 CD onto a server with Windows Server 2003 Standard Editon (services pack 1) installed.
    The Oracle Installer produced the following error when I tried to install the Forms 6i Server From the Forms/Reports 6i Release 2 CD:
    user1.pin(20); os_error while spawning ifsrv60 -install forms60server port=9000 mode=socket batch=yes.
    Has anyone successfully installed Forms 6i Server from Forms/Reports 6i Release 2 CD onto a Windows Server 2003 server?
    Any help is appreciated.
    Phil

    You it obtained to install the FORMS 6i SERVER in Windows 2003 ?
    I am with the same problem and not yet I obtained solution.

  • Key Bindings using the arrow keys

    Following is some code that allows you to move a component around the screen using the arrow keys. I've noticed a problem and I'm just wondering if its Java or my keyboard.
    Lets start with an example that works:
    Press the down and right keys. Then press either the up or left key. The image moves proving that it supports 3 keys.
    Now for the problem:
    Press the up and left keys. Then press either the down or right key. Three things to notice:
    a) the direction doesn't change when the third key is pressed
    b) no output is displayed, so the ActionListener is not being invoked
    c) after a short time, the program starts beeping
    Now try rerunning the code after removing the comments that assign the key bindings to the "a, s, d, f" keys. Redo the above test and it works even if all four keys are pressed.
    I don't remember this problem when I wrote the code a while ago, but I did recently get a cheap new keyboard so I'm just wondering if the problem is my keyboard or whether its a quirk with Java.
    You can download Duke from here:
    http://java.sun.com/docs/books/tutorial/uiswing/examples/components/LayeredPaneDemoProject/src/components/images/dukeWaveRed.gif
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class KeyboardNavigationProblem implements ActionListener
         private JComponent component;
         private int deltaX;
         private int deltaY;
         private Timer timer;
         private int keysPressed;
         private InputMap inputMap;
         public KeyboardNavigationProblem(JComponent component, int delay)
              this.component = component;
              this.deltaX = deltaX;
              this.deltaY = deltaY;
              timer = new Timer(delay, this);
              timer.setInitialDelay( 0 );
              inputMap = component.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
         public void addAction(int keyCode, String description, int deltaX, int deltaY)
              new NavigationAction(keyCode, description, deltaX, deltaY);
         public void updateDeltaX(int delta)
              deltaX += delta;
         public void updateDeltaY(int delta)
              deltaY += delta;
         public void actionPerformed(ActionEvent e)
              int componentWidth = component.getSize().width;
              int componentHeight = component.getSize().height;
              Dimension parentSize = component.getParent().getSize();
              int parentWidth  = parentSize.width;
              int parentHeight = parentSize.height;
              //  Determine next X position
              int nextX = Math.max(component.getLocation().x + deltaX, 0);
              if ( nextX + componentWidth > parentWidth)
                   nextX = parentWidth - componentWidth;
              //  Determine next Y position
              int nextY = Math.max(component.getLocation().y + deltaY, 0);
              if ( nextY + componentHeight > parentHeight)
                   nextY = parentHeight - componentHeight;
              //  Move the component
              component.setLocation(nextX, nextY);
         class NavigationAction extends AbstractAction implements ActionListener
              private int deltaX;
              private int deltaY;
              private KeyStroke pressedKeyStroke;
              private boolean listeningForKeyPressed;
              public NavigationAction(int keyCode, String description, int deltaX, int deltaY)
                   super(description);
                   this.deltaX = deltaX;
                   this.deltaY = deltaY;
                   pressedKeyStroke = KeyStroke.getKeyStroke(keyCode, 0, false);
                   KeyStroke releasedKeyStroke = KeyStroke.getKeyStroke(keyCode, 0, true);
                   inputMap.put(pressedKeyStroke, getValue(Action.NAME));
                   inputMap.put(releasedKeyStroke, getValue(Action.NAME));
                   component.getActionMap().put(getValue(Action.NAME), this);
                   listeningForKeyPressed = true;
              public void actionPerformed(ActionEvent e)
                   if (listeningForKeyPressed)
                        updateDeltaX( deltaX );
                        updateDeltaY( deltaY );
                        inputMap.remove(pressedKeyStroke);
                        listeningForKeyPressed = false;
                           if (keysPressed == 0)
                                timer.start();
                     keysPressed++;
                   else // listening for key released
                        updateDeltaX( -deltaX );
                        updateDeltaY( -deltaY );
                        inputMap.put(pressedKeyStroke, getValue(Action.NAME));
                        listeningForKeyPressed = true;
                        keysPressed--;
                           if (keysPressed == 0)
                                timer.stop();
                   System.out.println(KeyboardNavigationProblem.this.deltaX + " : "
                   + KeyboardNavigationProblem.this.deltaY);
         public static void main(String[] args)
              JPanel contentPane = new JPanel();
              contentPane.setLayout( null );
              JLabel duke = new JLabel( new ImageIcon("dukewavered.gif") );
              duke.setSize( duke.getPreferredSize() );
              duke.setLocation(100, 100);
              contentPane.add( duke );
              KeyboardNavigationProblem navigation = new KeyboardNavigationProblem(duke, 100);
              navigation.addAction(KeyEvent.VK_LEFT, "zLeft", -5, 0);
              navigation.addAction(KeyEvent.VK_RIGHT, "zRight", 5, 0);
              navigation.addAction(KeyEvent.VK_UP, "zUp", 0, -5);
              navigation.addAction(KeyEvent.VK_DOWN, "zDown", 0, 5);
    //          navigation.addAction(KeyEvent.VK_A, "zLeft", -5, 0);
    //          navigation.addAction(KeyEvent.VK_S, "zRight", 5, 0);
    //          navigation.addAction(KeyEvent.VK_D, "zUp", 0, -5);
    //          navigation.addAction(KeyEvent.VK_F, "zDown", 0, 5);
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.setContentPane( contentPane);
              frame.setSize(800, 600);
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }

    if you hold down left and right (so it doesn't move), down works, but not up.
    hold up/down, right works but not left.Yes, the problem only seems to be when the up and left in combination with the right or down key is pressed.
    num lock off - use the number pad arrow keys and all works OK Thats interesting, I didn't notice that. Although it just confuses the issue as to what the problem is.
    So it appears to me that:
    a) left + up + down, and
    b) left + up + right
    are special key combinations that are intercepted by either the OS or the JVM. Do these key combinations ring a bell to anybody?
    I'm use JDK1.4.2 on XP. I wonder if other OS will have the same problem?
    Again, this isn't a real, problem, just more of a curiosity. Thanks,

  • Install Oracle Forms 10g R2 in Windows 7

    Hi,
    does anyone has ever succeeded to install Oracle Form 10g R2 in Windows 7 Home Premium?
    How to overcome the Jinit issue in there? Friend of mine suggested we can download the Jinit for Vista version and replace the current Jinit with it.
    Do I need to change anything too in Formsweb.cfg? Windows 7 works with IE 8.
    Is the Forms can work with Oracle 11g R1 client 64 bit for Windows?
    thanks in advance.

    Why bother with JInit? It's long desupported. Just replace it with the latest Java Plugin, and you'll be fine.

  • I am no longer able to use the volume control buttons ( /-/or mute) on my key board in Windows 7

    1. HP Pavilion dm4 XO132AV
    2. Windows 7 64-bit
    3. No error message
    4. No changes were made prior to when the issue occured
    5. Question: I am no longer able to use the volume control buttons ( /-/or mute) on my key board in Windows 7

    Hi,
    Try the following.
    Download the IDT Audio installer on the link below and save it to your Downloads folder.
    http://ftp.hp.com/pub/softpaq/sp50501-51000/sp50856.exe
    When done, open windows Control Panel, open Device Manager and open up Sound, Video and Game Controllers.  Right click the IDT device and select Uninstall - you should also get a prompt to remove the current driver, tick the box to allow this and then proceed with the uninstall.
    When complete, restart the notebook and let Windows fully load.  Open your Downloads folder, right click on the IDT installer and select 'Run as Administrator' to start the installation.  When this has completed, restart the notebook again.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Forms in a seperate Window / Frame  (Tip / Solution)

    Hello all,
    I think I have a nice solution for the problem to start Oracle Forms in a separate window without an additional Iexplorer Window (not working for Firefox ,
    Webstart is not possible because you don't get the env from default.env).
    So I tell you that, I hope it helps :
    What does the developer do.
    He uses a javascript to open new window and copy the original webutiljpi.htm into this new window. Then he closes the main window and reload the new one.
    That is all
    webutiljp_wini.htm
    <HTML>
    <!-- FILE: webutiljp_wini.htm (Oracle Forms) -->
    <!-- -->
    <!-- This is the default base HTML file for running a form on the -->
    <!-- web using the JDK Java Plugin. This is used for example when -->
    <!-- running with Netscape on Unix. -->
    <!-- and a certificate regsitration applet for the WebUtil utility -->
    <!-- -->
    <!-- IMPORTANT NOTES: -->
    <!-- Default values for all the variables which appear below -->
    <!-- (enclosed in percent characters) are defined in the servlet -->
    <!-- configuration file (formsweb.cfg). It is preferable to make -->
    <!-- changes in that file where possible, rather than this one. -->
    <!-- -->
    <!-- This file uses several extra tags that are not present in the -->
    <!-- default template files. You should ensure that these are -->
    <!-- present in the configuration that uses this template -->
    <!-- The extra substitution Tags are: -->
    <!-- %webUtilArchive% = jar file containing the WebUtil code -->
    <!-- (by default this should be frmwebutil.jar) -->
    <!-- %WebUtilLogging% = Defines the current logging mode. -->
    <!-- Valid values: off|on|console|server|all -->
    <!-- (on == console) -->
    <!-- %WebUtilLoggingDetail% = Specifies the level of error logging.-->
    <!-- Valid values: normal|detailed -->
    <!-- %WebUtilErrorMode% = Should errors be displayed in an alert -->
    <!-- as well as the programmer defined -->
    <!-- locations -->
    <!-- Valid values: console|server|alert|all -->
    <!-- %WebUtilDispatchMonitorInterval% = Counts in second to -->
    <!-- indicate how often the monitor thread -->
    <!-- checks to see if the Forms session is still-->
    <!-- alive. Used with the WebUtil_Session -->
    <!-- package. -->
    <!-- %WebUtilTrustInternal% = Should intranet without domain suffix-->
    <!-- be trusted. -->
    <!-- Valid values: true|yes|false|no -->
    <!-- %WebUtilMaxTransferSize% = Size in bytes of file transfer -->
    <!-- segments. Default and maximum allowed is -->
    <!-- 16384, i.e. 16K. -->
    <!-- <c> by Frank Hartmann -->
    <HEAD><TITLE>Loader</TITLE>
    <script language="javascript">
    function create_html(){
    var quellcode = ' @br@ \
    <HTML>@br@ \
    <HEAD><TITLE>%pageTitle% - WebUtil</TITLE>@br@ \
    <BODY %HTMLbodyAttrs%>@br@ \
    %HTMLbeforeForm%@br@ \
    <!-- Registration applet definition (start) -->@br@ \
    <OBJECT classid="%jpi_classid%"@br@ \
    codebase="%jpi_codebase%"@br@ \
    WIDTH="0"@br@ \
    HEIGHT="0"@br@ \
    HSPACE="0"@br@ \
    VSPACE="0">@br@ \
    <PARAM NAME="TYPE" VALUE="%jpi_mimetype%">@br@ \
    <PARAM NAME="CODEBASE" VALUE="%codebase%">@br@ \
    <PARAM NAME="CODE" VALUE="oracle.forms.webutil.common.RegisterWebUtil" >@br@ \
    <PARAM NAME="ARCHIVE" VALUE="%webUtilArchive%" >@br@ \
    <COMMENT>@br@ \
    @br@ \
    <EMBED SRC="" PLUGINSPAGE="%jpi_download_page%"@br@ \
    TYPE="%jpi_mimetype%"@br@ \
    java_codebase="%codebase%"@br@ \
    java_code="oracle.forms.webutil.common.RegisterWebUtil"@br@ \
    java_archive="%webUtilArchive%"@br@ \
    WIDTH="1"@br@ \
    HEIGHT="1"@br@ \
    HSPACE="0"@br@ \
    VSPACE="0"@br@ >@br@ \
    <NOEMBED>@br@ \
    </COMMENT>@br@ \
    </NOEMBED></EMBED>@br@ \
    </OBJECT>@br@ \
    <!-- Registration applet definition (end) -->@br@ \
    @br@ \
    <COMMENT id="forms_plugin_info" @br@ \
    plug_ver="%jpi_classid%" @br@ \
    appheight="%Height%"@br@ \
    appwidth="%Width%"@br@ \
    appcodebase="%jpi_codebase%">@br@ \
    </COMMENT>\
    @br@ \
    <!-- Forms applet definition (start) -->@br@ \
    <NOSCRIPT>@br@ \
    <OBJECT classid="%jpi_classid%"@br@ \
    codebase="%jpi_codebase%"@br@ \
    WIDTH="%Width%"@br@ \
    HEIGHT="%Height%"@br@ \
    HSPACE="0"@br@ \
    VSPACE="0">@br@ \
    </NOSCRIPT>@br@ \
    <!--xx<SCRIPT LANGUAGE="JavaScript" SRC="java/forms_ie.js"></SCRIPT>xx--> @br@ \
    <PARAM NAME="TYPE" VALUE="%jpi_mimetype%">@br@ \
    <PARAM NAME="CODEBASE" VALUE="%codebase%">@br@ \
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >@br@ \
    <PARAM NAME="ARCHIVE" VALUE="%archive%,%webUtilArchive%" >@br@ \
    @br@ \
    <PARAM NAME="serverURL" VALUE="%serverURL%">@br@ \
    <PARAM NAME="networkRetries" VALUE="%networkRetries%">@br@ \
    <PARAM NAME="serverArgs"@br@ \
    VALUE="%escapeParams% module=%form% userid=%userid% sso_userid=%sso_userid% sso_formsid=%sso_formsid% sso_subDN=%sso_subDN% sso_usrDN=%sso_usrDN% debug=%debug% host=%host% port=%port% fontsize=%fontsize% bold=%bold% statusbar=%statusbar% fg_color=%fg_color% %otherParams%">@br@ \
    <PARAM NAME="separateFrame" VALUE="%separateFrame%">@br@ \
    <PARAM NAME="splashScreen" VALUE="%splashScreen%">@br@ \
    <PARAM NAME="background" VALUE="%background%">@br@ \
    <PARAM NAME="lookAndFeel" VALUE="%lookAndFeel%">@br@ \
    <PARAM NAME="colorScheme" VALUE="%colorScheme%">@br@ \
    <PARAM NAME="serverApp" VALUE="%serverApp%">@br@ \
    <PARAM NAME="logo" VALUE="%logo%">@br@ \
    <PARAM NAME="imageBase" VALUE="%imageBase%">@br@ \
    <PARAM NAME="formsMessageListener" VALUE="%formsMessageListener%">@br@ \
    <PARAM NAME="recordFileName" VALUE="%recordFileName%">@br@ \
    <PARAM NAME="EndUserMonitoringEnabled" VALUE="%EndUserMonitoringEnabled%">@br@ \
    <PARAM NAME="EndUserMonitoringURL" VALUE="%EndUserMonitoringURL%">@br@ \
    <PARAM NAME="heartBeat" VALUE="%heartBeat%">@br@ \
    <PARAM NAME="WebUtilLogging" VALUE="%WebUtilLogging%">@br@ \
    <PARAM NAME="WebUtilLoggingDetail" VALUE="%WebUtilLoggingDetail%">@br@ \
    <PARAM NAME="WebUtilErrorMode" VALUE="%WebUtilErrorMode%">@br@ \
    <PARAM NAME="WebUtilDispatchMonitorInterval" VALUE="%WebUtilDispatchMonitorInterval%">@br@ \
    <PARAM NAME="WebUtilTrustInternal" VALUE="%WebUtilTrustInternal%">@br@ \
    <PARAM NAME="WebUtilMaxTransferSize" VALUE="%WebUtilMaxTransferSize%">@br@ \
    <COMMENT> \
    <EMBED SRC="" PLUGINSPAGE="%jpi_download_page%"@br@ \
    TYPE="%jpi_mimetype%"@br@ \
    java_codebase="%codebase%"@br@ \
    java_code="oracle.forms.engine.Main"@br@ \
    java_archive="%archive%,%webUtilArchive%"@br@ \
    WIDTH="%Width%"@br@ \
    HEIGHT="%Height%"@br@ \
    HSPACE="0"@br@ \
    VSPACE="0"@br@ \
    @br@ \
    serverURL="%serverURL%"@br@ \
    networkRetries="%networkRetries%"@br@ \
    serverArgs="%escapeParams% module=%form% userid=%userid% sso_userid=%sso_userid% sso_formsid=%sso_formsid% sso_subDN=%sso_subDN% sso_usrDN=%sso_usrDN% debug=%debug% host=%host% port=%port% %otherparams%"@br@ \
    separateFrame="%separateFrame%"@br@ \
    splashScreen="%splashScreen%"@br@ \
    background="%background%"@br@ \
    lookAndFeel="%lookAndFeel%"@br@ \
    colorScheme="%colorScheme%"@br@ \
    serverApp="%serverApp%"@br@ \
    logo="%logo%"@br@ \
    imageBase="%imageBase%"@br@ \
    recordFileName="%recordFileName%"@br@ \
    EndUserMonitoringEnabled="%EndUserMonitoringEnabled%"@br@ \
    EndUserMonitoringURL="%EndUserMonitoringURL%"@br@ \
    heartBeat="%heartBeat%"@br@ \
    WebUtilLogging="%WebUtilLogging%"@br@ \
    WebUtilLoggingDetail="%WebUtilLoggingDetail%"@br@ \
    WebUtilErrormode="%WebUtilErrorMode%"@br@ \
    WebUtilDispatchMonitorInterval="%WebUtilDispatchMonitorInterval%"@br@ \
    WebUtilTrustInternal="%WebUtilTrustInternal%"@br@ \
    WebUtilMaxTransferSize="%WebUtilMaxTransferSize%"@br@>@br@ \
    <NOEMBED>@br@ \
    </COMMENT>@br@ \
    </NOEMBED></EMBED>@br@ \
    </OBJECT>@br@ \
    <!-- Forms applet definition (end) -->@br@ \
    @br@ \
    %HTMLafterForm%@br@ \
    @br@ \
    </BODY>@br@ \
    </HTML>@br@ \
    window.name='opener';
    nw=window.open('','_blank','locationbar=0,toolbar=0, resizable=1');
    quellcode=quellcode.replace(/<!--xx/,"");
    quellcode=quellcode.replace(/xx-->/,"");
    quellcode=quellcode.replace(/@br@/g,String.fromCharCode(13));
    nw.document.write(quellcode);
    main_window=window.open('blank:about','opener','');
    main_window.opener=self;
    main_window.close();
    //nw.opener=self;
    nw.document.location.reload();
    </script>
    </HEAD>
    <BODY onLoad=create_html()>
    </body>
    </html>
    Edited by: user4070147 on 30.10.2008 13:37
    Edited by: Ralf Flatau on 30.10.2008 14:03

    SITUATION:
    Usually the forms applet can be started with either 'separateFrame=true' (which will result in an internetexplorer-window being opened, followed by a second window containg the applet) or with 'separateFrame=false' (which will result in the applet being displayed within the standard internetexplorer-window).
    Disadvantages of the first method are:
    - two tasks visible in windows taskbar, potentialle irritating for customers as the IE-window doesn't seem to be good for anything
    - the applet will close/crash on the internetexplorer-window accidentally being closed or another URL being entered
    Main disadvantage of the second method is that so far we have not been able to hide this window's locationbar, menubar etc.
    SOLUTION:
    Via JavaScript it is possible to open and close windows and under certain circumstances it is possible to do this without a popup asking for acknowledgement of the action being raised.
    The JS-function works as follows:
    1) assign the original html-code to a variable
    2) assign a name (e.g. 'opener') to the current window
    3) open a blank page in a new window. For this window we do not specify a name as this would prevent us from being able to open several applets in different windows (i.e. starting a second applet would cause the first applet's window to be used and thus the first applet to be closed).
    4) next, we have to replace some substrings within our variable for parsing reasons
    5) write the variable's content to the new window
    6) open any page in the window named 'opener' (e.g. 'about:blank') and refer to this window's opener. These two steps enable us to close the window without a popup being displayed.
    7) now there's only our applet window being displayed. For some yet unknown reason, the applet itself won't be executed without a reload-command.
    Note: Working with IE7 (with multiple tabs), the '.close()'-operation will not close the IE-window but the current tab.
    CHANGES (HTML):
    Regarding the main changes, it's not really about the code of the standard HTML page but rather about displaying this page programmatically via javascript within a new window which therefore can be customized (menubar, locationbar, size, resizability etc.).
    So what we're doing is mainly creating a wrapper for the original HTML page.
    It might also be possible to have the standard HTML page's code in a separate file that is being loaded from within the script, but this would result in 2 files necessary (the wrapper script and the html page) and we haven't checked if the replacement of variables (%VARNAME%) that is done by forms will still work.

  • Problem: sqldeveloper 1.5 key bindings in mac os x

    Hi -
    I just installed the new sqldeveloper (1.5.0.53.38) on Mac OS X Leopard, and when I try to edit sql queries in the worksheet, I'm finding that many keys don't work. For example, the spacebar and delete keys do nothing.
    I tried loading various different accelerator presets:
    - after loading "Default MacOS X" set, neither space nor delete keys do anything
    - after loading "Default", "Classic" or "Brief" sets, the spacebar works, but not delete
    I tried to fix this by changing the accelerators through the Preferences UI, but I couldn't figure out how to assign the 'backspace' key to the 'delete-previous' accelerator (since it doesn't seem possible to type the actual backspace character in the keystroke box...). I was able to fix the delete key by editing settings.xml by hand, changing this:
    <Item class="oracle.javatools.util.Pair">
    <first class="java.lang.String">delete-previous</first>
    <second class="oracle.ide.keyboard.KeyStrokes">
    <data>
    <Item class="javax.swing.KeyStroke">[0]</Item>
    </data>
    </second>
    </Item>
    to this:
    <Item class="oracle.javatools.util.Pair">
    <first class="java.lang.String">delete-previous</first>
    <second class="oracle.ide.keyboard.KeyStrokes">
    <data>
    <Item class="javax.swing.KeyStroke">[8]</Item>
    </data>
    </second>
    </Item>
    I was able to get the spacebar to work again by removing the association between the spacebar key and the completion-insight accelerator, using the Preferences UI.
    So, my questions are:
    - Do I have some weird setup where my delete key is [8] instead of [0]? I'm trying to tell if this is a problem with my environment or with the settings that are shipped with the product.
    - If it's the latter, could the default MacOS X accelerator settings be updated? I seem to remember this same problem happening the last couple of times I installed a new version of SQL Developer.
    Let me know if there's any other information I could provide that would be useful.
    Thanks!

    Another problem I found with the MacOS X key bindings: the 6 key doesn't work!
    In the config that ships with SQL Developer, I found this:
    <Item class="oracle.javatools.util.Pair">
    <first class="java.lang.String">DOCUMENT_6_CMD_ID</first>
    <second class="oracle.ide.keyboard.KeyStrokes">
    <data>
    <Item class="javax.swing.KeyStroke">6</Item>
    </data>
    </second>
    </Item>
    which should be:
    <Item class="oracle.javatools.util.Pair">
    <first class="java.lang.String">DOCUMENT_6_CMD_ID</first>
    <second class="oracle.ide.keyboard.KeyStrokes">
    <data>
    <Item class="javax.swing.KeyStroke">meta 6</Item>
    </data>
    </second>
    </Item>

Maybe you are looking for

  • Issue in configuring the Master Repository in ODI

    Hi, I just downloaded and installed ODI. I wanted to create Master Repository in Sql Server 2005 (service pack 2). I gave the following string for jdbc:sqlserver://<servername>:1433;selectMethod=cursor;databaseName=odimaster;integratedSecurity=false.

  • Offline Vs detach

    So I wanted to move the mdf and ldf for a specfic database to a new file location. I detached the database and then tried to copy the mdf to the new location. Access denied. I am domain admin, SA and had run windows explorer "as administrator" while

  • How do i install canon lbp 2900 printer

                   how do i install canon lbp 2900 printer

  • Firefox crashes with NVidia 331.20 (Linux 64bit)

    As the title says, Firefox crashes immediately upon opening when using NVidia's latest stable drivers (331.20). The last stable driver that Firefox works with is 319.60. This issue only afflicts Firefox. All other HW accelerated programs I've tried w

  • New apple id and updates

    I would like to update my apps using my new apple ID. Is that possible?