How to forbid shortcut key operation

Hi all.
I use LabVIEW 2011 and build exe application.
I want to forbid user to use shortcut key at exe application.
I know we can change key configuration at labview, but I could not forbid at exe application.
Does anyone know how to forbid shortcut key operation at exe application ???

What kind of shortcut keys are you trying to forbid?  And why?

Similar Messages

  • How to set Shortcut keys for button in Apex

    Hi
    Could anyone help me on how to set shortcut keys for buttons in Apex.
    I need to use say ALT + S to submit the page.
    The following thread pertaining to HTML DB refered to use ACCESS key. but that couldnt work in my case.
    Re: operation of the app. with the keyboard
    Any pointers on achieving this would be helpful.
    Thanks
    Vijay

    Hi Vijay,
    I’m afraid you must do it using javascript key listener. You can’t use action() on template based buttons because they are actually not HTML buttons but images with hyperlink.
    Key listener checks which key has been pressed down and invoke some JS function. For example, write this code in page header:
    <script>
    document.onkeydown=keyCheck;
    function keyCheck(e){
         var KeyId = (window.event) ? event.keyCode : e.keyCode;
         switch(KeyId){         
              case 113:
                   doSubmit('SAVE');
                   break;                    
              case 118:
                   alert('Hello');
                   break;
    </script>
    This script will submit page with request 'SAVE' if you press F2 or will show alert message if you press F7. Modify it to your issue.
    Regards,
    Przemek

  • How can configure shortcuts key like in CFstudio 5

    how can configure shortcuts key for CF tags (e.g. alt + o for
    cfoutput) like in CFstudio 5? With DW 8 it seems not possible
    unless you write a snippet of the cf tag which is time consuming.
    There must be a smarter way. Any feedbacks? Thanks

    Don't have DW8 in front of me (am at work, still using
    MX2004), but look in the edit menu for Keyboard shortcuts. It will
    open up a dialog box where you can re-assign
    M

  • How to Add shortCut  key to  button or form In SAP BusinessOne

    Hi
    How to assign short Cut  key to  button or form ,in SAP BusinessOne using  VB.net.
    Thanks,
    Y.
    Edited by: Yughandar on Mar 10, 2011 9:32 PM

    Hi
    To set shortcut key for button , try this
    in your srf change the button caption like this
    caption="&amp;Del line"
    this will set shortcut key (Alt+d) for the button
    Regards
    Arun

  • How to create shortcut keys

    I am creating a webbased application. It is having a help page.
    What i want to do is the help page should pop up when i press the F1 button.
    Can anyone give me the code to assign the shortcut key f1 for the help page,
    Thanks in advance

    good trick ...
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <script language="JavaScript">
    function handleHotKeys() {
    if (event.keyCode==49){
    window.open("test.htm");
    </script>
    </head>
    <BODY BGCOLOR="#FFFFFF" onkeydown="handleHotKeys();">
    Press 1 to open Help File
    </BODY>
    </HTML>

  • How to change shortcut keys

    Is there a way to change the firefox shortcut keys?

    You can't change them. Some stuff is simply hard-wired.
    Mylenium

  • How to use shortcut keys on wireless keyboard with ipad

    i just purchased an ipad 4 with a wireless keyboard and do not know how to use the function keys on the wireless keyboard to access the homescreen, scroll up and down, etc.  please help with anything i need to turn on/off or download . thanks

    If you have more than one keyboard active, you may be using a different one than you want.  Use the "globe" key to make sure your virtual keyboard is set to Japanese Romaji or Japanese Kana.  Which one do you use?
    On the hardware keyboard, use apple/command plus space to switch between different keyboard layouts which may be active.

  • How to disable shortcut keys not listed in the keyboard shortcuts system

    Hi all
    As a Graphic Designer I find the shortcut Shift+F12 amazingly irritating when using QuarkXpress, as this is the key command for editing the colours list. For those of you who don't know this shortcut works exactly the same as F12 (Hide/Show dashboard but in slow motion.
    You may be supprised that I find this of somewhat limited usefulness.
    Can anybody help?
    Ta

    Hi supertottenham
    The Shift key is slo-mo for several functions so I doubt if it can be disabled.
    However if Dashboard is not one of your priorities there is an app called TinkerTool which enables alterations to several of the built in apps including Dashboard which it stops appearing completely including Shift+F12
    It is a freeware download from http://www.bresink.de/
    Hope this is of some use
    Chris

  • How to handle shortcut key options in LabVIEW

    Hi,
    I want to handle the ctrl+c option for a string control in labview. I just want to prevent the user from pressing the ctrl+c button for copying. is it possible to handle that inEvent Structure?
    Thanks
    Alagar

    Ben,
    removing the entry Copy from the context menu is not sufficient. In order to disable the control to copy the current active selection, you have to disable <ctrl + c> as shortcut for copying data in the complete LabVIEW environment. You have to open the Tools >> Options, switch to Menu Shortcuts and browse to Edit >> Copy. Switch the shortcut to something else than <ctrl + c>. This will disable the copy function for the shortcut <ctrl + c> (it will occur with the new shortcut of course!)
    Drawback:
    a) You remove the ability to use <ctrl + c> from the whole LabVIEW environment. So also in edit mode of VIs.... 
    b) When making a selection and then pressing <ctrl + c>, it will replace the selection with a simple 'c'. Most often, this is not intended.
    So all in all, i would definetly NOT recommend anyone to alter the shortcuts for common functions defined by the OS (<ctrl + c> for Copy, <ctrl + n> for New Document, .... )
    hope this helps,
    Norbert 
    Message Edited by Norbert B on 12-01-2008 08:41 AM
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • How do i set Shortcut key for activating some operation for JButton

    while using the JButton component,one question is arising in my mind that is
    (1)how to set Shortcut key instead of using JButton actionPerformed event.
    I need a shortcut key for the similar operation has to be performed

    http://java.sun.com/docs/books/tutorial/uiswing/components/button.html

  • How to grab global shortcuts keys in a java application?

    Hi!
    Does anybody know if it's possible to get the focus to a Java application, when it is not selected, using a keyboard shortcut key?
    I've written a java application that provides shortcuts keys (like CTRL-M...) for accessing to some operations. For using those keys combinations my application has to be focused between the other opened applications on the operating system (Linux 7.3), as it should be in a normal behaviour... but, I would need that the operation associated to the shortcut key could be executed even if another application had the focus...
    Is it possible? How this could be done?
    Thanks in advance four your interest and your answers.

    Unfortunately shortcuts will work only if your app is focused.
    Denis

  • How can I have a shortcut key that is not a JMenuItem

    Hi,
    I'm trying to make "ctrl-f" a shortcut key in my program.
    I know I can do this as a JMenuItem by:
    menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_F, KeyEvent.CTRL_MASK));
    However, I would rather not have it in the menu.
    How would I do this without having it as a JMenuItem?
    Thanks,
    Daniel Lorimer

    As a user I hate designs like this. How am I supposed to know what all the shortcut keys are? Using a menu item is a form of self documentation
    Anyway, check out the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/misc/keybinding.html]How to Use Key Bindings.

  • How do you change the shortcut keys for Firefox in Welsh For Mac?

    I'm using Firefox in Welsh on Mac (asking in English to hopefully get more answers), and every time I try to do the shortcut for copy (cmd+C), it hides the window (since Hide in Welsh is Cuddio, the shorcut for that is now Cmd+C). I usually forget this, and proceed with using the shortcut for copy only to anger myself when I realise that I've hidden the window.
    My question is, how do you change the shortcut keys on Firefox so then I can change the Hide shortcut and give Copy the cmd+C shortcut? I'm also using OpenOffice.org in Welsh, and they are using cmd+C for copy and cmd+H for Hide.
    Is there any way that I could do this myself? Its rather annoying for me, and its rather weird to use Cmd+X for Cutting text instead of copying.
    Thanks.

    This could be worth a bug. It shouldn't happen that some shortcut keys get (re)used for other actions and Cmd + C should be considered as one of them.
    You can try to make the change in this file: cy.jar/locale/browser/baseMenuOverlay.dtd
    <pre><nowiki><!ENTITY hideThisAppCmdMac.label "Cuddio &brandShortName;">
    <!ENTITY hideThisAppCmdMac.commandkey "C"></nowiki></pre>
    English language pack: en-GB.jar/locale/browser/baseMenuOverlay.dtd
    <pre><nowiki><!ENTITY hideThisAppCmdMac.label "Hide &brandShortName;">
    <!ENTITY hideThisAppCmdMac.commandkey "H"></nowiki></pre>
    You can find the file cy.jar in the chrome folder in the Firefox application folder.<br />
    The file cy.jar is a ZIP archive, so you need a program that can open such an archive and edit the file baseMenuOverlay.dtd.
    I'm not on a Mac, so can't do any testing in this matter. I just downloaded the Welsh (cy.xpi) language pack for Mac and had a look in it.

  • Using PhotoShop CS4, How to disable 'Universal Shortcut Keys'?

    Hello all.
    I discovered in the latest OS, I am not able to customize my Action Shortcut Keys inside Adobe Photoshop CS4 because the "Universal Shortcut Keys" were "in the way"...; I used to able to do this with CS3 and Tiger.
    Let me illustrate:
    - In the new OS and the new keyboards: F1 is the Brightness Adjustment (Dimmer), and F4 is Dashboard (Launch)
    - In the older OS and CS3, I was able to create within, Action Shortcut Keys so that F1 I can create a Layer Mask and F4 I can delete a layer
    - In the new environment, whenever I press the F keys, the 'Universal Shortcuts' take priority.
    *How do I disable these Universal Shortcuts so that I can create customize shortcut keys?*
    Thanks and cheers

    Hi
    Thanks for the reply! Yeap this is what I am looking for, but unfortunately, or rather, I wish I can still have control over the volume keys somehow, because we work in an open environment, and sometimes we use headphones, sometimes we unplug to let our supervisor see and hear the work (by the way I am in the motion graphics business) So we constantly have to control the volume of the speakers.
    Well, I'll just have to put the Sound Control on the Menu Bar
    Thanks and cheers

  • Shortcut key Ctrl+L does not work. How to fix it?

    In my Photoshop Elements 9 and Photoshop Elements 11, The shortcut key Ctrl+L for Level does not work. I press it, the Level does not show up. How may I fix it?

    1. Make sure that your image is in RGB mode. Go to Image Menu>Mode>RGB.
    2. Check that no two layers are selected in the layers panel.
    Even then the shortcut does not work , then it that case you can always use the workaround "Enhance Menu>Adjust Lightening>Levels.

Maybe you are looking for

  • Steps to generate AWR report from Oracle 11g OEM

    I have gone through online documentation for generating an AWR report from Oracle 11g OEM but the documentation is more focused on generating the AWR report manually. I would request if there is a link or documentation to go through for generating AW

  • Java and Blackboard problems

    Online university blackboard is not recognizing my Java vendor, even though it does recognize the Java version 1.6.0._24 and 1.6.0_24 or above is required.  Therefore I cannot view the required classroom videos.  I have tried everything trying to fix

  • New Idoc in BD10 to send material grid

    Hi Experts, We have a requirement like this : In transaction BD10 when "send material in full" is flagged, we have to start IDOC J3AGRI01 creation (using FM J_4A_MASTERIDOC_CRE_REQ_J3AGRI). At present when the flag is set, only the classifications ar

  • Can't Launch Apps in Creative Cloud it's "Loading"

    Please help, I launched the program and I go to the apps tab and there is a loading icon. It keeps on loading. Please help! URGENT Thanks, I will make sure to give points to the best solution.

  • Can I some how get my screen replaced for free? I have a @TD Curren near me because I live in washington.

    I need my screen replaced and i have a place that fixes apple products and i dont know if they do it for free and I want to know if there is a different way.Its was wet then put in uncooked rice and it works but the screen doesnt.