Customizing the right button popup menu?

I was wondering if anyone knows of a way to customize the right click popup menu in/for Labview.
I am build a vi with a graph on which you can right click, bring up a menu, select an item, and the graph will display a cursor at that location with the label you selected from the right click popup menu.
I would be grateful for any insight you might have into this.

Hi,
I've a toolkit for this. It draws popupmenu's (at least on
Windows95,98,NT,2000).
The trigger can be anything (it's a boolean), so if you can catch the right
mouse button (using the events structure), you can create a popup menu above
it.
Sorry, I can't mail it to you, because of the no.email... Drop me a mail,
and I'll send it to you.
Regards,
Wiebe.
"Tere" wrote in message
news:[email protected]..
> I was wondering if anyone knows of a way to customize the right click
> popup menu in/for Labview.
>
> I am build a vi with a graph on which you can right click, bring up a
> menu, select an item, and the graph will display a cursor at that
> location with the label you selected from the right clic
k popup menu.
>
> I would be grateful for any insight you might have into this.

Similar Messages

  • Disable Right Mouse Button Popup Menu

    How can I disable right mouse button popup menu for a LabVIEW control to use
    my custom popup menu?
    Alessio Colzi

    Sorry for the stupid question but I forgot that option.
    Thank you Gorka
    Alessio
    "Gorka Larrea" ha scritto nel messaggio
    news:[email protected]..
    > Not sure if can be made under LV 6 but under LV 5.0 you can disable
    > runtime popup menu for all the vi under VI setup right clicking the
    > icon in the right part of the front panel.
    >
    > Another option is to put a transparent decoration over your control,
    > to avoid right clicking.
    >
    > Hope this helps

  • Is it possible to add a button to the right-click context menu for a user in Outlook 2010 using VBA?

    I've tried many things and read up quite a bit but I cannot figure this out.
    I cannot create an add-in so I have to use VBA.
    I want to add a a button to the right-click context menu when I right-click on a user. Is this possible?

    Hello,
    Yes, it is possible to customize the context menu in Outlook. See
    Customizing Context Menus in Office 2010 for more information.
    But VBA doesn't allow to customize the Fluent UI in Outlook, you need to develop an add-in instead.

  • Apple logo and menu no longer come up when turning on my 2nd gen nano. However, if I just hit the right buttons the songs play and it runs normally. On occasion the logo and menu come on but it is now in chinese. Should I restore or Junk?

    Apple logo and menu no longer come up when turning on my 2nd gen nano. However, if I just hit the right buttons the songs play and it runs normally. On occasion the logo and menu come on but it is now in chinese. Should I restore or Junk?

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • Customizing the Right Click (Secondary Button)

    I like Safari, but one of the things I miss from other browsers is the right click Add Bookmark feature. Is there a way, using Mighty Mouse, to add items into the right click (secondary) menu?
    Thanks,
    scott

    Yes, I knew about the address bar, I was just hoping for a way to make it a right click feature... just old habit from using opera/firefox. Hopefully, it will be made available in a future version of safari?
    Thanks for the responses.

  • Microsoft word bugging everytime I clik on the right button

    Hi,
    I think it is since I have installed OS X Mountain lion on my macbook air that my microsoft word is freezing every time I click on the right button to access the scrolling menu. What can I do to fix this problem ?
    Thanks a lot in advance !

    You can check for problems with the localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Nothing happens when I press the right button on the desktop

    Hello,
    I installed Windows 8.1 on my laptop a few months ago and since then it's  been working quite well. But lately there's one thing that has been bothering me - whenever I try to open the desktop menu by pressing the right button of my touchpad, nothing
    will happen. It seems that it's loading, but in fact it never really loads. I consider this an inconvenience and would be glad if you find the time to answer me.

    Hi Maria,
    Could you make sure your touchpad is without problem?
    First of all, I suggest you go to touchpad manufacturer's website to get the latest driver of your model for Windows 8.1.
    If it's not helpful, you may have an incompatible Shell Extension installed.
    I suggest you download and run Shell Extensions Viewer, with which you can see what's installed, and even methodically disable the 3rd party shell extensions (logging off and on again before testing).
    http://www.nirsoft.net/utils/shexview.html 
    If it doesn't resolve the issue, please try to use the System File Checker tool to troublshoot problems on your computer:
    Use the System File Checker tool to repair missing or corrupted system files
    http://support.microsoft.com/kb/929833
    Karen Hu
    TechNet Community Support

  • Is there any way to prevent the right click context menu from combining Stop/Reload?

    Is there any way (about:config tweak, or something) to prevent the right click context menu from combining Stop/Reload?
    Screenshot of what I'm talking about: http://picsend.net/images/873089StupidReloadSto.png

    I did try the add-on ''Menu Editor'' https://addons.mozilla.org/en-US/firefox/addon/menu-editor/ but even when I separate the navigation reload and stop icons and explicitly have both stop and reload set to be visible on the right click context menu I only get the one option showing.
    Whilst there may be some way of changing this I do not know how to and I do not really see any use case for making such a change. Only one option of the choice: stop or reload, is available at any instance in time, but that is the option you are able to use, the other option is not active and so is not displayed.

  • Fire a left click when the right button is pressed

    I am working on a small program with a text area and mouse functionality. I have all my listeners in place but I need one additional feature and I am unsure how to go about implementing it. I want to be able to fire a left click when the right button is pressed.
    The reason is because right clicking does not move the caret around the text area. I need to be able to move the caret with a right click so I can then invoke another method to do some other functionality that is associated with the right click. Any method is acceptable as long as a right click will result in the caret being able to move to a location much like a left click can.
    all help is appreciated. Thanks.

    I'm not sure if this is "better", and my guess is that it isn't, but how about using a Robot object here to create a left mouse press and release? For instance,
    import java.awt.AWTException;
    import java.awt.Robot;
    import java.awt.event.InputEvent;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JComponent;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    public class RightClickAsLeft
      private JPanel mainPanel = new JPanel();
      private JTextArea area = new JTextArea(20, 50);
      private Robot robot;
      public RightClickAsLeft()
        try
          robot = new Robot();
        catch (AWTException e)
          // TODO Auto-generated catch block
          e.printStackTrace();
        mainPanel.add(new JScrollPane(area));
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < 18; i++)
          for (int j = 0; j < 80; j++)
            sb.append((char)(40 + j));
          sb.append("\n");
        area.setText(sb.toString());
        area.addMouseListener(new MyMouseListener());
      public JComponent getComponent()
        return mainPanel;
      private class MyMouseListener extends MouseAdapter
        @Override
        public void mouseClicked(MouseEvent e)
          int button = e.getButton();
          if (button == MouseEvent.BUTTON3)
            if (robot != null)
              robot.mousePress(InputEvent.BUTTON1_MASK);
              robot.mouseRelease(InputEvent.BUTTON1_MASK);
      private static void createAndShowUI()
        JFrame frame = new JFrame("RightClickAsLeft");
        frame.getContentPane().add(new RightClickAsLeft().getComponent());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      public static void main(String[] args)
        java.awt.EventQueue.invokeLater(new Runnable()
          public void run()
            createAndShowUI();
    }Edited by: Encephalopathic on Apr 10, 2009 9:59 AM

  • The Right click context menu, and menu butons are all yellow?

    The right click context menu, and the Drop down menus for the tool bar, all have Yellow Text.
    Everything else is working normally, and the Yellow text is un related to windows itself, as Windows still has the standard coloring for the menus and Right click context. im stumped.
    Adblock Plus 2.0.3
    Easy YouTube Video Downloader 5.9
    EPUB Reader 1.4.1.1
    FoxTab 1.4.4
    Ghostery 2.7.2
    IMVU Toolbar 3.10.0.1
    .Net Framework
    Personas 1.6.2 [have had same persona for ages so its not that]
    Roomy Bookmarks 1.3.3
    Smoothwheel 0.45.6.20100202.1
    Tab scope 1.1.4
    Turn off the lights 2.0.0.71
    Yontoo Layers 1.20.00
    i have latest version of firefox. 11
    no virus detected with Malwarbytes, or Avast.
    setting check through windows shows no carry over from a botched windows theme setting.
    its cosmetic issue mostly, not harmful.

    Hmmm, that shouldn't happen. It's difficult to change the text colors in the interface without installing a theme or an add-on that lets you tweak the menus.
    Can you try switching between the default theme and your current theme?
    Do any of those extensions let you change display settings?

  • How to disable the run-time popup menu in the sequence display on TestStand Operator Interface, that allow the use to skip the test?

    How to disable the run-time popup menu in the sequence display on TestStand Operator Interface, that allow the use to skip the test?

    Hello,
                  Regarding the skip/force pass/force fail options, when I set the ControlExecFlow to True in Teststand 3.1 and 3.5, in the Sequence Editor the menu options for skip/force pass/force fail are not active for Technician but, when I launch the Operator Interface logged with Technician the options are active. The problem is that if the technician sets one step to one of these options, and change the user to Operator, the test step remains skip/force pass.
                  Is there any possibility without modifying the Operator Interface (at programming level), to reload default values of the steps when changing the user to Operator?
    Thank you,
    Best regards,
    paio

  • Hi, How I can duplicate website? I have not any possibility to do it on the right button of mouse. I used to have it, but now I can not find it. can you help me please. Kind regards kate ( email: ukaska@interia.pl)

    Hi, How I can duplicate website? I have not any possibility to do it on the right button of mouse. I used to have it, but now I can not find it. can you help me please. Kind regards kate ( email: [email protected])

    What do you mean with duplicate?
    Where do you want to duplicate a website?
    Do you want to open the same site in more than one tab?<br />
    Do you want to create multiple bookmarks to the site?

  • Not show the right button in input field which data type is date

    My web dynpro has a input field. This input field is mapped with a context attribute which type is datum.
    This field is read only. I want that this field doesn't show the right button to choose the date.
    How do I solve this?
    Thanks

    Hi,
    go to the context of your view,
    to the attribute of your date,
    and set the attribute input help mode to disabled
    grtz,
    Koen

  • I want to upload from my iphone playlist to my laptop (Windows 8) why is it so hard to find the right buttons to press????

    i want to upload from my iphone playlist to my laptop (Windows 8) why is it so hard to find the right buttons to press????

    Review these Knowledge Base articles... they may help you:
    Synchronizing media using BlackBerry Desktop Software on a Mac computer
    BlackBerry Desktop Software Mac does not display evens and albums from iPhoto 9.4.2
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How do I preserve the embedded hyperlinks when printing to .pdf?   I am using Acrobat Pro XI for Mac, and when I export to .pdf the existing hyperlinks lose functionality.   I assume it's just the flick of the right button – I just need help finding that

    How do I preserve the embedded hyperlinks when printing to .pdf? 
    I am using Acrobat Pro XI for Mac, and when I export to .pdf the existing hyperlinks lose functionality.   I assume it’s just the flick of the right button – I just need help finding that button. 
    Can you help?  Thanks!

    How:  MS Word to .pdf by Command P, hitting the PDF button, and then the button for "save as Adobe pdf"
    I didn't have this problem at all on prior versions of Adobe on my PC.   This isn't a Mac attack, is it?

Maybe you are looking for