<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: change browser folder icon in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3742498#M133593</link>
    <description>&lt;P&gt;Gives Add Method Error. See Attachment&lt;/P&gt;</description>
    <pubDate>Tue, 25 Dec 2012 18:34:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-12-25T18:34:00Z</dc:date>
    <item>
      <title>change browser folder icon</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3698300#M133588</link>
      <description>&lt;P&gt;is it possible to change browser folder icon?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2012 02:18:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3698300#M133588</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-11-14T02:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: change browser folder icon</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3707784#M133589</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure I understand the question. The folder icon of what and where exactly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think it would be useful to provide an image of what the current situation is vs. what you'd like to get.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2012 16:24:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3707784#M133589</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2012-11-21T16:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: change browser folder icon</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3707856#M133590</link>
      <description>&lt;P&gt;Please find attached, The browser folder inside assembly document, To replace the standard icon with a custom icon&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2012 16:38:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3707856#M133590</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-11-21T16:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: change browser folder icon</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3708950#M133591</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Changing the icon of a native browser node is similar to&amp;nbsp;&lt;A href="http://adndevblog.typepad.com/manufacturing/2012/08/change-the-browser-node-icon.html" target="_blank"&gt;setting the icon of your own panel's client node&lt;/A&gt;, but you work with NativeBrowserNodeDefinition and set the OverrideIcon property instead.&lt;/P&gt;
&lt;PRE&gt;Sub ChangeIcon()
    Dim bps As BrowserPanes
    Set bps = ThisApplication.ActiveDocument.BrowserPanes

    ' e.g. if you want to change the root node's icon
    ' in the assembly "Model" panel
    Dim bp As BrowserPane
    Set bp = bps("AmBrowserArrangement")
        
    Dim bmp As IPictureDisp
    Set bmp = LoadPicture("C:\Bitmap1.bmp")
        
    Dim cnr As ClientNodeResource
    ' Only Bitmaps are supported by the Add method&lt;BR /&gt;    ' and it should be 16x16
    Set cnr = bps.ClientNodeResources.Add( _
      "MyResource", 2, bmp)
      
    Dim nbnd As NativeBrowserNodeDefinition
    Set nbnd = bp.TopNode.BrowserNodeDefinition

    nbnd.OverrideIcon = cnr
End Sub&lt;/PRE&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2012 14:33:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3708950#M133591</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2012-11-22T14:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: change browser folder icon</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3742498#M133593</link>
      <description>&lt;P&gt;Gives Add Method Error. See Attachment&lt;/P&gt;</description>
      <pubDate>Tue, 25 Dec 2012 18:34:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3742498#M133593</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-12-25T18:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: change browser folder icon</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3747851#M133594</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe this code is unlikely to succeed on 64-bit because VBA is running out of process. You would need either to use 32-bit VBA or try the same from a VB.Net/C# add-in. The way to load resources if different however in .Net.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can refer to the following articles:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="hhttp://adndevblog.typepad.com/manufacturing/2012/06/how-to-convert-iconbitmap-to-ipicturedisp-without-visualbasiccompatibilityvb6supporticontoipicture.html" target="_self"&gt;hhttp://adndevblog.typepad.com/manufacturing/2012/06/how-to-convert-iconbitmap-to-ipicturedisp-without-visualbasiccompatibilityvb6supporticontoipicture.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://adndevblog.typepad.com/manufacturing/2012/08/change-the-browser-node-icon.html" target="_self"&gt;http://adndevblog.typepad.com/manufacturing/2012/08/change-the-browser-node-icon.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Philippe.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2013 08:35:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3747851#M133594</guid>
      <dc:creator>philippe.leefsma</dc:creator>
      <dc:date>2013-01-08T08:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: change browser folder icon</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3751373#M133595</link>
      <description>&lt;P&gt;Attached is an iLogic rule that will work for an assembly or part document.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2013 19:27:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3751373#M133595</guid>
      <dc:creator>MjDeck</dc:creator>
      <dc:date>2013-01-11T19:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: change browser folder icon</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3752028#M133596</link>
      <description>&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2013 02:04:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/change-browser-folder-icon/m-p/3752028#M133596</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-14T02:04:22Z</dc:date>
    </item>
  </channel>
</rss>

