From 04:00 PM CDT – 08:00 PM CDT (09:00 PM UTC – 01:00 AM UTC) Tuesday, April 16, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW Project Providers

cancel
Showing results for 
Search instead for 
Did you mean: 

Items pane vs. Files pane

Is there a way to know, within an OnPopupMenu VI, if the right-click that caused the VI to run happened in the Items pane or the Files pane in the project window?

 

My end goal is to prevent my provider menu items from appearing when right-clicking in the Files pane. I only want the menu items to appear when right-clicking in the Items pane.

0 Kudos
Message 1 of 3
(3,686 Views)

You can use the Project.Items View Active property. It tells you when you have the items view active so you can reverse the logic to know when you have the Files view active.

 

The trick is you need to have the code run for both Items and Provider level OnPopupMenu code since on the files pane, folders aren't treated as items. If you just add the code below to your items OnPopupMenu, you'll see the popup box when you right click on files but not folders.

 

image.png

 

George M
National Instruments
Message 2 of 3
(3,649 Views)

Thanks gmart. Your powerful project provider prowess is positively perfect.

0 Kudos
Message 3 of 3
(3,646 Views)