06-17-2026 09:45 AM - edited 06-17-2026 09:46 AM
Dear Users:
Is there any way to programmatically hide the tool palette when running a Vi?
Thank you
A
Solved! Go to Solution.
06-17-2026 10:24 AM
Yes. Right-click the VI Icon shown on the upper-right corner of the Front Panel or Block Diagram, choose "VI Properties", then the Category "Windows Appearance". On the window that pops up, choose "Custom" (on the left) then press "Customize". The second set of options shown on the left starts with "Show toolbar when running". Click it to turn it off. Run your VI and notice there's no visible Toolbar.
Bob Schor
06-17-2026 10:43 AM - edited 06-17-2026 10:52 AM
Yes. Use Application Property Node. Application=>Tools Palette Open. Set it to False.
06-17-2026 11:00 AM
06-17-2026 11:30 AM
I noticed I didn't exactly answer your question -- I left out "programmatically". I see "zou" found one way to do this, I found another (and I can't be sure I can find the method zou described -- it's probably the same thing I'm going to describe, so feel free to give him credit for the solution ...)
Here are the steps I took to do this.
Bob Schor
06-17-2026 11:42 AM
@Bob_Schor wrote:
I noticed I didn't exactly answer your question -- I left out "programmatically". I see "zou" found one way to do this, I found another (and I can't be sure I can find the method zou described -- it's probably the same thing I'm going to describe, so feel free to give him credit for the solution ...)
Here are the steps I took to do this.
- Assumption -- there is a VI I'll call "Top Level VI" that is the "Main VI" whose Front Panel is visible when the program runs, and it is the Front Panel that you want not to see the Toolbar.
- On the Block Diagram of this Top Level VI, somewhere to the left of the other code (so it can be the first thing executed, see last Bullet Point), place a "VI Server Reference", found on the Application Control palette.
- With your mouse hovering over the "output wire" of the VI Server Reference, right-click, "Create", "Property for VI Class", "Toolbar", "Visible". This will put a VI Property Node showing "TB.Visible", the Visible property for the Tool Bar as an Indicator (the wire comes out the right side of the Node.
- Right-click this Indicator, "Change All to Write" (which makes it a Control), wire the "This VI" reference to the top left connector, wire a Boolean "False" to the "TB.Visible" input, and make sure this little bit of code is run first. [Actually, you can run it at any time, but the Tool Bar won't vanish until it is run.]
Bob Schor
OP is asking about the tool palette:
not the tool bar 😃:
06-17-2026 12:21 PM
@Yixiao-uncle wrote:
Dear Users:
Is there any way to programmatically hide the tool palette when running a Vi?
Thank you
A
I'll chime in. There does exist a floating window known as the Tool Pallet. This exists in the development environment and is not usually visible! Autotool selection (which I personally don't like) Tab and Spacebar tapping makes that floating vi mostly useless (well, the paint tool could not otherwise be selected...moot point but still..)
"Tool bar" is a different thing. You should have some advice about how to hide that. So, what are you seeing that you don't want to see it?
06-17-2026 08:36 PM
Wow! I must be slipping here! It has been (maybe 15) years since I used the Tools Palette on a regular basis. Now, in the rare instances where it might be useful, I have to look up how to make it pop up.
As far as I know, the Tools Palette only pertains to developing LabVIEW code. About the o nly use I've had for them is when I import a VI I wrote 20 years ago with LabVIEW 7, where the default view of the Front Panel used a darker shade of grey for the background, which I wanted to change to the more modern light grey. By now, I rarely need to "borrow" from this old code (having incorporated my older routines in newer programs and changing the Front Panel background as I went).
Bob (Red-faced) Schor
06-18-2026 01:59 AM
Hi Jay,
@JÞB wrote:
Autotool selection (which I personally don't like) Tab and Spacebar tapping makes that floating vi mostly useless (well, the paint tool could not otherwise be selected...moot point but still..)
You can show the tool palette floating window by using shift-right click in empty space of the fp or bd window…
(I like AutoTool selection and have the tool palette hidden all the time.)
06-18-2026 03:04 AM
Dear Zou: your solution is very simple and it works!🚀
raphschru: thank you for usefull information.
A