Change new VI Default Icon?

Is this post still relevant to the latest version of LabVIEW (2012):
http://forums.ni.com/t5/LabVIEW/change-default-icon-for-new-VI/m-p/448064
Or is there a better way/more preferred method?  It would be nice to change up a bit.
Thanks.

Nickerbocker wrote:
Who is Ton and where is his suggestion?  I don't see it in the link I provided.
Ton is TCPlomp.  His suggestion is here:http://forums.ni.com/t5/LabVIEW/change-default-icon-for-new-VI/m-p/448115#M218003
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines

Similar Messages

  • Change "new event" default name in FinalCut x

    This Question is regading Final Cut Pro x (version 231027) or any of the X versions.
    Hello, this might be a minor issue but still annoying. Regading create "new event": Here in Scandinavia for ex. we seldom use the "month-day-year" set up to describe the dates, would it possible to change that behaviour to ex. "year-month-day" or any other custom tag with dates? It´s not much to ask for..
    Best regads, Tobias.
    Stockholm Sweden

    Hey imagoproduktion
    Change it in System Preferences in Language & Text in the Region tab; from there it should trickle down to the apps to give the right format for you.
    OS X Mountain Lion: Choose date, time, and number formats
    http://support.apple.com/kb/PH11250
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • How can i change the default icon of a new folder?

    what i mean is like every time i create a new folder instead of changing the icon after its created, can i somehow change the default icon on a new folder i create? so when i create a new folder its created with the icon i want it to have?
    and i want to do it manually i dont want to use programs for it
    thanks

    nemesio wrote:
    i know but i dont want to use candy bar, were do i go to do it manually?
    why not? use LiteIcon then. it's free and is MUCH safer than mucking with system files by hand. if you insist you can do it as follows. go to /system/library/coreservices. control-click on coretypes.bundle and select "show package contents". go to contents-> resources. change the file GenericFolderIcon.icns with your own .icns file. back up the original bundle first.

  • Change default icon for new VI ?

    Hi all,
    When I open a new VI, it comes with the default icon here :
    Is there a way to modify this default icon ? I assume the "untitled.vi" comes from a template, so if I can find this template and modify its icon then there I am..
    But if so, where can I find this template ?
    Thanks for any help
    Message Edité par TiTou le 11-30-2006 06:20 PM
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"
    Attachments:
    Clipboard01.gif ‏4 KB

    I don't believe that the new VI comes from a template. Many such things do in LabVIEW, but I would guess this operation is built into the LabVIEW source code itself. I could be wrong there. My only other suggestion for helping to automate this is to put a blank template VI of your choice in the LabVIEW\project folder. Then create a launcher VI that opens a reference to this VI for template editing as shown below. Put this in your project folder as well.Now you have a direct menu option (i.e. Tools >> Launch Template...) for opening a new specialized template. I was hoping you could actually assign a specific shortcut to this menu option (for instance, Ctrl+N), since you can customize shortcuts in LabVIEW 8.x, but unfortunately this only applies to built-in menu options, not user VIs.
    Message Edited by Jarrod S. on 11-30-2006 12:01 PM
    Jarrod S.
    National Instruments
    Attachments:
    NewFile.PNG ‏4 KB

  • Changing the default icon of a af:inputDate component

    Hi,
    I want to change the icon of an af:inputDate component.
    I discovered two solutions, but they are imcomplete solution.
    Solution 1:
    af|inputDate::launch-icon-style{
    background-image: url("../images/icone_calendario_menor.gif");
    af|inputDate::launch-icon-style:hover{
    background-image: url("../images/icone_calendario_menor.gif");
    af|inputDate::launch-icon-style:active{
    background-image: url("../images/icone_calendario_menor.gif");
    Problem: When I press the icon whith the mouse button and wait still appear a default icon while mouse button is pressioned.
    Solution 2:
    af|inputDate::launch-icon{
    content: url("../images/icone_calendario_menor.gif");
    width: 16 px;
    height: 16 px;
    af|inputDate::launch-icon:rtl{
    content: url("../images/icone_calendario_menor.gif");
    width: 16 px;
    height: 16 px;
    Problem: This solution works on Internet Explorer, but in Mozilla Firefox the new icon cover partially the default image but still possible to see a piece of the defaul icon.
    Observation: My new icon is 16 x 16 pixels.
    I believe that the solution 1 is better, but i think is missing a piece of code, there is a billion of icon states, core, busy, compact, depressed, selected , etc.
    Thanks,
    Victor Jabur
    Edited by: user4579872 on Apr 26, 2010 5:29 PM

    Check this doc http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e15862/toc.htm#StandardPseudoClasses
    It shows all pseudo classes available.
    Timo

  • Icon was changed to default icon when editting a node on JTree

    I have a tree with icon on nodes. However, when I edit the node, the icon is changed to default icon.
    I don't known how to write the treeCellEditor to fix that one.
    The following is my code:
    package description.ui;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTree;
    import javax.swing.ToolTipManager;
    import javax.swing.WindowConstants;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellEditor;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.DefaultTreeModel;
    import javax.swing.tree.TreePath;
    import javax.swing.tree.TreeSelectionModel;
    public class Tree extends javax.swing.JPanel {
         private JTree tree;
         private JScrollPane jScrollPane1;
         public static void main(String[] args) {
              JFrame frame = new JFrame();
              frame.getContentPane().add(new Tree());
              frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              frame.pack();
              frame.show();
         public Tree() {
              super();
              initGUI();
         private void initGUI() {
              try {
                   BorderLayout thisLayout = new BorderLayout();
                   this.setLayout(thisLayout);
                   setPreferredSize(new Dimension(400, 300));
                    jScrollPane1 = new JScrollPane();
                    this.add(jScrollPane1, BorderLayout.CENTER);
                        DefaultMutableTreeNode rootNode = createNode();
                        tree = new JTree(rootNode);
                        tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
                        jScrollPane1.setViewportView(tree);
                        ToolTipManager.sharedInstance().registerComponent(tree);
                        MyCellRenderer cellRenderer = new MyCellRenderer();
                        tree.setCellRenderer(cellRenderer);
                        tree.setEditable(true);
                        tree.setCellEditor(new DefaultTreeCellEditor(tree, cellRenderer));
                        //tree.setCellEditor(new MyCellEditor(tree, cellRenderer));
              } catch (Exception e) {
                   e.printStackTrace();
         private void btRemoveActionPerformed(ActionEvent evt) {
             TreePath path = tree.getSelectionPath();
             DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode)path.getLastPathComponent();
             ((DefaultTreeModel)tree.getModel()).removeNodeFromParent(selectedNode);
         private DefaultMutableTreeNode createNode() {
             DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Doc");
             DefaultMutableTreeNode ch1 = createChuongNode(rootNode, "Ch1");
             DefaultMutableTreeNode ch2 = createChuongNode(rootNode, "Ch2");
             createTextLeafNode(ch1, "title");
             return rootNode;
         private DefaultMutableTreeNode createChuongNode(DefaultMutableTreeNode parent, String name) {
             DefaultMutableTreeNode node = new DefaultMutableTreeNode(new ChapterNodeData(name));
             parent.add(node);
             return node;
         private DefaultMutableTreeNode createTextLeafNode(DefaultMutableTreeNode parent, String name) {
             DefaultMutableTreeNode node = new DefaultMutableTreeNode(new TitleNodeData(name));
             parent.add(node);
             return node;
          private class MyCellRenderer extends DefaultTreeCellRenderer {
                 ImageIcon titleIcon;
                 ImageIcon chapterIcon;
                 public MyCellRenderer() {
                     titleIcon = new ImageIcon(getClass().getClassLoader()
                            .getResource("description/ui/icons/Text16.gif"));
                     chapterIcon = new ImageIcon(getClass().getClassLoader()
                            .getResource("description/ui/icons/Element16.gif"));
                 public Component getTreeCellRendererComponent(
                                     JTree tree,
                                     Object value,
                                     boolean sel,
                                     boolean expanded,
                                     boolean leaf,
                                     int row,
                                     boolean hasFocus) {
                     super.getTreeCellRendererComponent(
                                     tree, value, sel,
                                     expanded, leaf, row,
                                     hasFocus);
                     if (isChapterNode(value)) {
                         setIcon(chapterIcon);
                         setToolTipText("chapter");
                     } else if (isTextLeafNode(value)) {
                         setIcon(titleIcon);
                         setToolTipText("title");
                     return this;
                 protected boolean isChapterNode(Object node) {
                     return ((DefaultMutableTreeNode)node).getUserObject() instanceof ChapterNodeData;
                 protected boolean isTextLeafNode(Object node) {
                     return ((DefaultMutableTreeNode)node).getUserObject() instanceof TitleNodeData;
          private class MyCellEditor extends DefaultTreeCellEditor {
                 ImageIcon titleIcon;
                 ImageIcon chapterIcon;
              public MyCellEditor(JTree tree, DefaultTreeCellRenderer renderer) {
                  super(tree, renderer);
                  titleIcon = new ImageIcon(getClass().getClassLoader()
                         .getResource("description/ui/icons/Text16.gif"));
                  titleIcon = new ImageIcon(getClass().getClassLoader()
                         .getResource("description/ui/icons/Element16.gif"));
              public Component getTreeCellEditorComponent(
                           JTree tree,
                           Object value,
                           boolean isSelected,
                           boolean expanded,
                           boolean leaf,
                           int row) {
                  super.getTreeCellEditorComponent(tree, value, isSelected, expanded, leaf, row);
                  return this.editingComponent;
          abstract class NodeData{
              String name;
              public NodeData(String name) {
                  this.name = name;
              public String getName() {
                  return name;
              public void setName(String name) {
                  this.name = name;
              public String toString() {
                  return name;
          class ChapterNodeData extends NodeData {
              public ChapterNodeData(String s) {
                  super(s);
          class TitleNodeData extends NodeData {
              public TitleNodeData(String attr) {
                  super(attr);
    }

    Arungeeth wrote:
    I know the name of the node... but i cant able to find that nodeHere is some sample code for searching and selecting a node:
        TreeModel model = jtemp.getModel();
        if (model != null) {
            Object root = model.getRoot();
            search(model, root, "Peter");//search for the name 'Peter'
            System.out.println(jtemp.getSelectionPath().getLastPathComponent());
        } else {
            System.out.println("Tree is empty.");
    private void search(TreeModel model, Object o, String argSearch) {
        int cc;
        cc = model.getChildCount(o);
        for (int i = 0; i < cc; i++) {
            DefaultMutableTreeNode child = (DefaultMutableTreeNode) model.getChild(o, i);
            if (model.isLeaf(child)) {
                TreeNode[] ar = child.getPath();
                String currentValue = Arrays.toString(ar);
                if (currentValue.contains(argSearch)) {
                    jtemp.setSelectionPath(new TreePath(ar));
            } else {
                search(model, child, argSearch);
    }

  • Changing default picture viewer via GPO without changing image type and icon (Windows 7)

    Hello,
    I am trying to change the default picture viewer for some file extensions (.bmp, .jpeg, .png and .tiff). Actually Windows Photo Viewer is the default viewer and we need to replace it with Microsoft Office Picture Manager.
    I managed to do that change via GPO using the 'open with' preference under User Configuration\ Preferences\Control Panel Settings\Folder Options. So now the files are opened with Microsoft Office Picture Manager (office 2010). The problem is that the image
    type became 'OIS.EXE' for all the specified file extensions. Moreover the icon is now the same (Microsoft Office 2010).
    When I change manually the associated program for a file extension, the icon change but no the image type... this is different using GPO.
    Is there a solution in order to change the default program but keeping the image type and associated icon ?
    I tried to do that modification using the 'new file type' preference under Computer Configuration\Preferences\Control Panel Settings\Folder Options. I specified the 'open' action for OIS.exe, selected file extension BMP with associated class 'Bitmap Image'.
    It solves the problem for image type, Microsoft Office Picture Manager opens the files ... but I have to specify the icon file path and icon index and I don't know where I can find the default icons for the file extensions ...
    What is the best solution ? Am I right ? Am I doing something wrong ?
    Thank you in advance !

    Hello,
    thank you very much for your answers.
    For the rollback, I will reimport the original/default keys for all the image types, this should be ok.
    Here are the problems I have trying to pu Microsoft Office Picture Manager as default picture viewer (I just want  .bmp, .jpg ... files to be opened with Microsoft Office Picture Manager by default).
    1 Using new file type under Computer Configuration\Preferences\Control Panel Settings\folder options. : I define a new file type (BMP for example), associated class Bitmap Image, I configure the icon (imageres.dll,65) and an open action where OIS.EXE
    is the application used to perform the action.
    Result : Icon is correct, file type is correct, image files are opened with OIS.EXE (correct) ... BUT now Microsoft Office 2010 appears twice in open or open with menu
    2 Using new open with under User configuration\Preferences\Control Panel Settings\Folder Options : new open with preference, action (update or replace same result), file extension BMP, associated program (path to OIS.EXE), i check set as default.
    Result : Office 2010 opens image files (correct) but icon is Office 2010 one and the file type is now 'OIS.EXE' for all image file extensions I have specified ... so it won't be possible to sort the file by image type if I select that method...
    3 Using ftype : OIS.EXE doesn't open the file when I double click on it but Microsoft Office 2010 appears twice in the open or open with list ...
    I am a bit lost ... what is the best method to put Microsoft Office Picture Manager as default picture viewer, keeping the image type (Bitmap image, JPEG image etc) and without having Microsoft Office 2010 twice in the open or open with list ??
    Last question : by default an image file is opened and previewed with Windows Photo viewer and edited with Paint. I would like just to open images with Office 2010 but keep Windows Photo viewer for preview and Paint for edit ... Is it possible ??
    Thank you in advance for any help and support !!

  • Change the appearance of the default icons and bar in iStore

    We have a requirement to change the default icons and the bar of iStore. Is this possible? I have attached the screenshots here - http://www.overpic.net/viewer.php?file=xwho42d6dwuz4pkq96fo.jpg
    Thanks in advance.

    Pl do not post duplicates - Change the appearance of the default icons and bar in iStore

  • Change the default icon for unsatisfied node

    Is it possible to change the default icon for the unsatisfied node (unsatisfied indicator). I have checked the UI content element with the same name, but it does not have the source file setting in it, so I guess it is hard coded. I tried to change the source file with the name unsatisfied_status.gif to a different image and it works, but this will be a system wide change. I want to do this as a model specific change. Has anyone done this before? Thanks in advance.
    Cheers,
    Biju.
    [My Oracle Blog|http://oraclewithbiju.blogspot.com]

    Did you try changing image name in UI edit page?
    UI edit page lists few images which can be changed for each UI, like unsatisfied indicator, logic status icons etc.

  • I would suggest a new feature:The possibilty to change the mouse pointer icon when you hover on an a

    I would suggest a new feature:The possibilty  to change the mouse pointer icon when you hover on an active link by any other one icon I select.

    Current Firefox versions have a feature called tear-off tabs.<br />
    You can detach a tab from the current window and open it in a new window by dragging a tab in the browser window.<br />
    You can drag that tab back to the tab bar in the original window to undo that detaching.
    bug489729 (Disable detach and tear off tab):
    * https://addons.mozilla.org/firefox/addon/bug489729-disable-detach-and-t

  • Want to change Form MDI Window default icon as well as default window icon

    Hi,
    I am using oracle forms 10g. I need to change the mdi window default icon as well as default window icon of inner form. But i do not know the way. Pls help me.

    http://www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm
    webutil lets you access the client machine from webforms. you'll need to install it on the application server and include the webutil library and object group in the form which will change the MDI window's icon (probably the first form in the application).

  • How change default icons

    Dear
    I want to know how to change the default icons on Ibooks Author, like the button to play sound.
    Thanks in advance

    Do you know how to dig into the XML and that book's assets?
    If you do find a way, I think you risk rejection during review as Apple tends to prefer a consistent interface so as to not confuse iBooks users.

  • Change default icon

    Hi there,
    Is there a way to change the default icon associated with the .jar file?
    I would like to customise the default "cup of coffee" icon when I deliver a .jar file in order to have something more in relation with my application.
    Thanks for your help.
    Denis

    You can easily change it on your own computer (obviously), but I think that embedded icons are only available for .exe files. I had the same problem with an Access app I made - I wanted my own icon, but I never could figure out how to do it, so when I delivered it, it used the default Access icon on the customer's machine.
    Good luck!

  • Openbox Changing Default icons

    I've got a nice theme that changes the top and bottom of boxes, but I would like to change the ugly default  in Firefox and among standard apps

    A simple search would solve this for you. Alternatively, for any Openbox question, go to the source:
    http://icculus.org/openbox/index.php/Main_Page
    duke11235 - please read the Forum Etiquette and learn to use the search function - there is a wealth of threads on Openbox here. Similarly, Google returns any number of useful pages...
    Closing

  • When i drag icons from the adress bar to the desktop they are changed to the firefox icon, how can i keep the sites icon?

    Rather than use favorites, I like to drag the icon in the address bar to the desktop or a folder to create a shortcut. In my older computers the icon in the shortcut was the same as the icon in the address bar. in my new Win 7 computer the icon is changed to a Firefox icon. How can I prevent the icon from being changed?

    If you drag a link or favicon on the left end of the location bar onto the desktop to create an internet shortcut then that shortcut gets the icon of the default browser.
    If you want a different icon (favicon) then you have to assign that icon yourself to the desktop shortcut (right-click: Properties).
    You can usually get the favicon if you append "favicon.ico" to the main domain of a website (e.g. http://www.mozilla.com/favicon.ico ) to display the favicon in a tab and save that image to a folder or see if you can find it in "Tools > Page Info > Media".

Maybe you are looking for

  • Ctrl-v key combo not working in keydown event in Adobe Air

    I am needing to capture the ctrl-c/ctrl-x/ctrl-v keys in the keydown Javascript event from within Adobe Air. I have managed to get the events to fire correctly. When I press ctrl, c, x, v, ctrl-c and ctrl-x, I get the correct corresponding keycodes.

  • I can no longer print tv listings from sign on san diego, but I still can with IE.

    I used to be able to print TV Listings from SignOnSanDiego, but since updating from Adobe Reader 8 to X, I can't just click on the Print tab, but have to click File/Print, which doesn't provide as good a print layout. I find I can still click the Pri

  • Save as button not working in Reader 9.3 and windows 7

    Hi, I have a win7 Optiplex 780 with Acrobat Reader 9.3 installed.  While in a web application, when I click the save as icon to save the pdf to disk, nothing happens.  The save as dialogue box does not come up.  The print button works, and the email

  • Isight not listed under firewire in system profile

    hello all, All of a sudden my isight is not listed under firewire in the system profile. I've tried restarting with it plugged in and with it not plugged in. The green light of the camera will come on for a few seconds then shuts off when i do plug i

  • New Xserve in a tower configuration?

    We are a small publishing production company that has thousands of files that are currently living on 2 NAS boxes. These boxes are starting to have issues since they were never designed to be used as servers (which we are doing). This worked fine whe