<?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: VBA Thumbnail iProperty Yields varying quality, file size, and back color in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462857#M64435</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3934006"&gt;@rcolon9E4ZX&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As mentioned the color scheme can be set per application, not per file... &lt;FONT color="#993300"&gt;(edit to add: but since the thumbnail is not getting set ) I&lt;/FONT&gt; suspect maybe your code it not hitting the correct files as it processes the assembly, or it is catching an error and skipping certain files, or something similar... But unless I've missed it, you've not included your entire code here so it's impossible to say for sure.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does your VBA code include an "On Error Resume Next" line? If so, does commenting that out show you an error that might explain why some thumbnails are not getting updated?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using the last code you posted and the last code I posted together I can change all of the thumbnail backgrounds to a given theme/color.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below are those pieces of code combined in an iLogic rule, as well as a list box to choose the color scheme.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I run this on an assembly and choose Forest I see the results shown in this image, I can choose a different scheme and see it change all of the thumbnails to that color scheme. I do not see any of them remaining as the dark gradient of Winter Night or any other anomalies.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 293px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/758727iEB8695F80126F8D8/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;MyStringValues&lt;/SPAN&gt; = &lt;SPAN&gt;New&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;(){&lt;SPAN&gt;"Presentation"&lt;/SPAN&gt;, &lt;SPAN&gt;"Winter Night"&lt;/SPAN&gt;, &lt;SPAN&gt;"Forest"&lt;/SPAN&gt;, &lt;SPAN&gt;"Sky"&lt;/SPAN&gt;}

&lt;SPAN&gt;oScheme&lt;/SPAN&gt; = &lt;SPAN&gt;InputListBox&lt;/SPAN&gt;(&lt;SPAN&gt;"select"&lt;/SPAN&gt;, &lt;SPAN&gt;MyStringValues&lt;/SPAN&gt;, &lt;SPAN&gt;"Presentation"&lt;/SPAN&gt;, &lt;SPAN&gt;"iLogic"&lt;/SPAN&gt;, &lt;SPAN&gt;"List"&lt;/SPAN&gt;)

&lt;SPAN&gt;'Change to color scheme &lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oScheme&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;


&lt;SPAN&gt;'set to use gradient color background type&lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;BackgroundType&lt;/SPAN&gt; = _
&lt;SPAN&gt;BackgroundTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kGradientBackgroundType&lt;/SPAN&gt; 


&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Document&lt;/SPAN&gt;

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt;.&lt;SPAN&gt;AllReferencedDocuments&lt;/SPAN&gt;
    &lt;SPAN&gt;' open document&lt;/SPAN&gt;
    &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;Documents&lt;/SPAN&gt;.&lt;SPAN&gt;Open&lt;/SPAN&gt; (&lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;FullFileName&lt;/SPAN&gt;, &lt;SPAN&gt;True&lt;/SPAN&gt;)
    
    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oSketch&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;Sketches&lt;/SPAN&gt;
        &lt;SPAN&gt;oSketch&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Next&lt;/SPAN&gt;
    
    &lt;SPAN&gt;'set work plane visibility&lt;/SPAN&gt;
    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWorkPlane&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkPlanes&lt;/SPAN&gt;
    &lt;SPAN&gt;oWorkPlane&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Next&lt;/SPAN&gt;
    
    &lt;SPAN&gt;'set work axis visibility&lt;/SPAN&gt;
    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWorkAxis&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkAxes&lt;/SPAN&gt;
    &lt;SPAN&gt;oWorkAxis&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Next&lt;/SPAN&gt;
    
    &lt;SPAN&gt;'set work point visibility&lt;/SPAN&gt;
    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWorkPoint&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkPoints&lt;/SPAN&gt;
    &lt;SPAN&gt;oWorkPoint&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Next&lt;/SPAN&gt;

    &lt;SPAN&gt;'set iproperty to use ISO view on save&lt;/SPAN&gt;
    &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;SetThumbnailSaveOption&lt;/SPAN&gt; _
    (&lt;SPAN&gt;ThumbnailSaveOptionEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kActiveComponentIsoViewOnSave&lt;/SPAN&gt;)
    
    &lt;SPAN&gt;'save and close the file&lt;/SPAN&gt;
    &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Save&lt;/SPAN&gt;
    &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Close&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 22 Apr 2020 17:34:12 GMT</pubDate>
    <dc:creator>Curtis_Waguespack</dc:creator>
    <dc:date>2020-04-22T17:34:12Z</dc:date>
    <item>
      <title>VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9446397#M64424</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to collect thumbnails from the Thumbnail iProperty of a document, since this approach is very fast. The stored thumbnail is always 213x213pixels. Sometimes the resolution is great, and sometimes it is very poor.&amp;nbsp;See image below. Not only that, the good resolution images have a dark gray background for some reason and the low res ones have the default. The file size for the good images is 769KB, which is the same size as a 512x512pixel bitmap from Camera.SaveAsBitmap. The low res files are &amp;lt;100KB.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Quality and back color" style="width: 885px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/754906i6CA8359D75ACCD68/image-size/large?v=v2&amp;amp;px=999" role="button" title="Thumbnail Quality and Background.jpg" alt="Quality and back color" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Quality and back color&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a snippet of VBA code run from Inventor where I acquire the image.&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Dim summaryInfo As PropertySet
Dim thumbprop As Property
Dim thumbNail As IPictureDisp
Set summaryInfo = doc.PropertySets.Item("Inventor Summary Information")
Set thumbprop = summaryInfo.Item("Thumbnail")
Set thumbNail = thumbprop.Value 'Get the thumbnail image.
If Not thumbNail Is Nothing Then 'Check that an image was returned.  It's possible for a file to not have a thumbnail.
    ' Write the thumbnail to disk. Size is 213x213. Even if a larger image is imported. Overwrites existing file.
    Call stdole.StdFunctions.SavePicture(thumbNail, strFile)
Else
    'MsgBox "The active document doesn't have a thumbnail."
End If&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas for what is causing this difference in results? Maybe some property in the document? One hypothesis I had, although disproved, is if the Master view rep was the only view rep for the document. Is there something else that is causing this? This seems very odd to me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;&lt;P&gt;Rafael&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 00:01:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9446397#M64424</guid>
      <dc:creator>rcolon9E4ZX</dc:creator>
      <dc:date>2020-04-16T00:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9449295#M64425</link>
      <description>&lt;P&gt;I am running on Win10 Inv Pro 2019 x64 Build 330. Surely someone has seen or questioned this behavior before. The thumbnails appear in this fashion within Manage &amp;gt; Bill of Materials in Inventor. All of my files are set the same under the Save tab in iProperties. They are all from the same template. And yet, they store differently on save.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="iProperties &amp;gt; Save" style="width: 342px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/755606i99F33E258CC56474/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="iProperties &amp;gt; Save" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;iProperties &amp;gt; Save&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2020 00:48:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9449295#M64425</guid>
      <dc:creator>rcolon9E4ZX</dc:creator>
      <dc:date>2020-04-17T00:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460166#M64426</link>
      <description>&lt;P&gt;Can someone else confirm this behavior?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 18:57:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460166#M64426</guid>
      <dc:creator>rcolon9E4ZX</dc:creator>
      <dc:date>2020-04-21T18:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460177#M64427</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3934006"&gt;@rcolon9E4ZX&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Due to time, I didn't really look too closely at what you posted other than the problem statement of the original post... but I think this link might offer a solution&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-refresh-all-thumbnails/m-p/7239233#M651592" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-forum/is-there-a-way-to-refresh-all-thumbnails/m-p/7239233#M651592&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 19:00:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460177#M64427</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2020-04-21T19:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460327#M64428</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3934006"&gt;@rcolon9E4ZX&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I looked back at this and realized that something like this might be more what you are after, this version will write out an image file for the top level and&amp;nbsp; each component of an assembly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;Sub&lt;/SPAN&gt; &lt;SPAN&gt;main&lt;/SPAN&gt; 
	
&lt;SPAN&gt;oFolder&lt;/SPAN&gt; = &lt;SPAN&gt;"C:\Temp\ThumbNails\"&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Document&lt;/SPAN&gt;
&lt;SPAN&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;

&lt;SPAN&gt;'get current color scheme name &lt;/SPAN&gt;
&lt;SPAN&gt;oColorScheme&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveColorScheme&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;

&lt;SPAN&gt;'get current color scheme background type&lt;/SPAN&gt;
&lt;SPAN&gt;oBackGroundType&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;BackgroundType&lt;/SPAN&gt;

&lt;SPAN&gt;'Change to Presentation (white background)&lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"Presentation"&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;

&lt;SPAN&gt;'set to use one color background type&lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;BackgroundType&lt;/SPAN&gt; = _
&lt;SPAN&gt;BackgroundTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kOneColorBackgroundType&lt;/SPAN&gt; 

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oRefFile&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;FileDescriptor&lt;/SPAN&gt;

	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt;.&lt;SPAN&gt;AllReferencedDocuments&lt;/SPAN&gt;.&lt;SPAN&gt;Count&lt;/SPAN&gt; &amp;gt; 12 &lt;SPAN&gt;Then&lt;/SPAN&gt;
		&lt;SPAN&gt;oRUSure&lt;/SPAN&gt; = &lt;SPAN&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN&gt;Show&lt;/SPAN&gt;(&lt;SPAN&gt;"This could take a while, continue?"&lt;/SPAN&gt;, &lt;SPAN&gt;"iLogic"&lt;/SPAN&gt;,&lt;SPAN&gt;MessageBoxButtons&lt;/SPAN&gt;.&lt;SPAN&gt;YesNo&lt;/SPAN&gt;)

		&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oRUSure&lt;/SPAN&gt; = &lt;SPAN&gt;vbNo&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
			&lt;SPAN&gt;Return&lt;/SPAN&gt; &lt;SPAN&gt;'exit rule&lt;/SPAN&gt;
		&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

&lt;SPAN&gt;'save image for top level assembly&lt;/SPAN&gt;
&lt;SPAN&gt;Call&lt;/SPAN&gt; &lt;SPAN&gt;SaveImage&lt;/SPAN&gt;(&lt;SPAN&gt;oDoc&lt;/SPAN&gt;, &lt;SPAN&gt;oFolder&lt;/SPAN&gt;)

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt;.&lt;SPAN&gt;AllReferencedDocuments&lt;/SPAN&gt;	

	&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;Documents&lt;/SPAN&gt;.&lt;SPAN&gt;Open&lt;/SPAN&gt;(&lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;FullFileName&lt;/SPAN&gt;, &lt;SPAN&gt;True&lt;/SPAN&gt;)  
	
	&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oSketch&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition​&lt;/SPAN&gt;.&lt;SPAN&gt;Sketches&lt;/SPAN&gt;
		&lt;SPAN&gt;oSketch&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
	&lt;SPAN&gt;Next&lt;/SPAN&gt;
	
	&lt;SPAN&gt;'set work plane visibility&lt;/SPAN&gt;
	&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWorkPlane&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkPlanes&lt;/SPAN&gt;
	&lt;SPAN&gt;oWorkPlane&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
	&lt;SPAN&gt;Next&lt;/SPAN&gt;
	
	&lt;SPAN&gt;'set work axis visibility&lt;/SPAN&gt;
	&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWorkAxis&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkAxes&lt;/SPAN&gt;
	&lt;SPAN&gt;oWorkAxis&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
	&lt;SPAN&gt;Next&lt;/SPAN&gt;
	
	&lt;SPAN&gt;'set work point visibility&lt;/SPAN&gt;
	&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWorkPoint&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkPoints&lt;/SPAN&gt;
	&lt;SPAN&gt;oWorkPoint&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
	&lt;SPAN&gt;Next&lt;/SPAN&gt;

	
	&lt;SPAN&gt;Call&lt;/SPAN&gt; &lt;SPAN&gt;SaveImage&lt;/SPAN&gt;(&lt;SPAN&gt;oDoc&lt;/SPAN&gt;, &lt;SPAN&gt;oFolder&lt;/SPAN&gt;)
	&lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Close&lt;/SPAN&gt;

&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;'Change back to original scheme&lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oColorScheme&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt; 

&lt;SPAN&gt;'Change back to original back ground type&lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;BackgroundType&lt;/SPAN&gt; = &lt;SPAN&gt;oBackGroundType&lt;/SPAN&gt;


&lt;SPAN&gt;Process&lt;/SPAN&gt;.&lt;SPAN&gt;Start&lt;/SPAN&gt;(&lt;SPAN&gt;oFolder&lt;/SPAN&gt;) 

&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;


&lt;SPAN&gt;Function&lt;/SPAN&gt; &lt;SPAN&gt;SaveImage&lt;/SPAN&gt; (&lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Document&lt;/SPAN&gt;, &lt;SPAN&gt;oFolder&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;)


	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;m_Camera&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;Camera&lt;/SPAN&gt;
	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;m_TO&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt; 

	&lt;SPAN&gt;m_TO&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;TransientObjects&lt;/SPAN&gt;
	&lt;SPAN&gt;m_Camera&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveView&lt;/SPAN&gt;.&lt;SPAN&gt;Camera&lt;/SPAN&gt;
	&lt;SPAN&gt;'m_Camera.Perspective = True&lt;/SPAN&gt;


	&lt;SPAN&gt;m_Camera&lt;/SPAN&gt;.&lt;SPAN&gt;ViewOrientationType&lt;/SPAN&gt; = &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;ViewOrientationTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kIsoTopLeftViewOrientation&lt;/SPAN&gt;
	&lt;SPAN&gt;m_Camera&lt;/SPAN&gt;.&lt;SPAN&gt;Fit&lt;/SPAN&gt;
	&lt;SPAN&gt;m_Camera&lt;/SPAN&gt;.&lt;SPAN&gt;ApplyWithoutTransition&lt;/SPAN&gt;


	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;m_CV&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;View&lt;/SPAN&gt;
	&lt;SPAN&gt;m_CV&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveView&lt;/SPAN&gt;


	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;m_PrevMode&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Integer&lt;/SPAN&gt;
	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;m_Disp3D&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Boolean&lt;/SPAN&gt;


	&lt;SPAN&gt;m_PrevMode&lt;/SPAN&gt; = &lt;SPAN&gt;m_CV&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayMode&lt;/SPAN&gt;
	&lt;SPAN&gt;m_Disp3D&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayOptions&lt;/SPAN&gt;.&lt;SPAN&gt;Show3DIndicator&lt;/SPAN&gt;


	&lt;SPAN&gt;m_CV&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayMode&lt;/SPAN&gt; = &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayModeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kShadedWithEdgesRendering&lt;/SPAN&gt;
	&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;DisplayOptions&lt;/SPAN&gt;.&lt;SPAN&gt;Show3DIndicator&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
	&lt;SPAN&gt;m_CV&lt;/SPAN&gt;.&lt;SPAN&gt;Update&lt;/SPAN&gt;

	&lt;SPAN&gt;'split the string into an array using the dash&lt;/SPAN&gt;
	&lt;SPAN&gt;sMyArray&lt;/SPAN&gt; = &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;FullFileName&lt;/SPAN&gt;.&lt;SPAN&gt;Split&lt;/SPAN&gt;(&lt;SPAN&gt;"\"&lt;/SPAN&gt;)
	&lt;SPAN&gt;i&lt;/SPAN&gt; = &lt;SPAN&gt;UBound&lt;/SPAN&gt;(&lt;SPAN&gt;sMyArray&lt;/SPAN&gt;)
	&lt;SPAN&gt;oFileName&lt;/SPAN&gt; = &lt;SPAN&gt;sMyArray&lt;/SPAN&gt;(&lt;SPAN&gt;i&lt;/SPAN&gt;)
	
	
	&lt;SPAN&gt;sMyArray&lt;/SPAN&gt; = &lt;SPAN&gt;oFileName&lt;/SPAN&gt;.&lt;SPAN&gt;Split&lt;/SPAN&gt;(&lt;SPAN&gt;"."&lt;/SPAN&gt;)
	&lt;SPAN&gt;oFileName&lt;/SPAN&gt; = &lt;SPAN&gt;sMyArray&lt;/SPAN&gt;(0)
	
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Not&lt;/SPAN&gt; &lt;SPAN&gt;System&lt;/SPAN&gt;.&lt;SPAN&gt;IO&lt;/SPAN&gt;.&lt;SPAN&gt;Directory&lt;/SPAN&gt;.&lt;SPAN&gt;Exists&lt;/SPAN&gt;(&lt;SPAN&gt;oFolder&lt;/SPAN&gt; ) &lt;SPAN&gt;Then&lt;/SPAN&gt; 
  	  &lt;SPAN&gt;System&lt;/SPAN&gt;.&lt;SPAN&gt;IO&lt;/SPAN&gt;.&lt;SPAN&gt;Directory&lt;/SPAN&gt;.&lt;SPAN&gt;CreateDirectory&lt;/SPAN&gt;(&lt;SPAN&gt;oFolder&lt;/SPAN&gt; )
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
	
	&lt;SPAN&gt;'save image&lt;/SPAN&gt;
	&lt;SPAN&gt;m_Camera&lt;/SPAN&gt;.&lt;SPAN&gt;SaveAsBitmap&lt;/SPAN&gt;( &lt;SPAN&gt;oFolder&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;oFileName&lt;/SPAN&gt; &amp;amp;&lt;SPAN&gt;".bmp"&lt;/SPAN&gt;, 800, 600,)

&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Function&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 19:52:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460327#M64428</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2020-04-21T19:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460436#M64429</link>
      <description>&lt;P&gt;Curtis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your replies. I already do something similar to this with Camera.SaveAsBitmap. I like the default background as the thumbnail background stored in the ipt file. Do you see the dark gray gradient background in my original post, and how this image has better quality? Both images in this post are stored thumbnails for ipt files. I want to know what is making some thumbnails have this dark gray background and increased quality. This is just something Inventor is doing because I have not set any properties to make this happen. Best case, I get some way to control this outcome.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For your first reply, I ran this code in VBA. It is essentially your posted sample code, but I do not change the color scheme.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Sub RefreshThumbnails()

Dim oAsmDoc As AssemblyDocument
Set oAsmDoc = ThisApplication.ActiveDocument
Dim oDoc As Document

For Each oDoc In oAsmDoc.AllReferencedDocuments
    ' open document
    ThisApplication.Documents.Open oDoc.FullFileName, True
    
    For Each oSketch In oDoc.ComponentDefinition.Sketches
        oSketch.Visible = False
    Next
    
    'set work plane visibility
    For Each oWorkPlane In oDoc.ComponentDefinition.WorkPlanes
    oWorkPlane.Visible = False
    Next
    
    'set work axis visibility
    For Each oWorkAxis In oDoc.ComponentDefinition.WorkAxes
    oWorkAxis.Visible = False
    Next
    
    'set work point visibility
    For Each oWorkPoint In oDoc.ComponentDefinition.WorkPoints
    oWorkPoint.Visible = False
    Next

    'set iproperty to use ISO view on save
    oDoc.SetThumbnailSaveOption _
    (ThumbnailSaveOptionEnum.kActiveComponentIsoViewOnSave)
    
    'save and close the file
    oDoc.Save
    oDoc.Close
Next
End Sub&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The two images below from left to right are before and after running the code, respectively.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Before Code" style="width: 177px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/758188i7291473FC41A3FCD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Thumbs Before Code.png" alt="Before Code" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Before Code&lt;/span&gt;&lt;/span&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="After Code" style="width: 174px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/758189i50A6C24D5EC77D24/image-size/large?v=v2&amp;amp;px=999" role="button" title="Thumbs After Code.png" alt="After Code" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;After Code&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can see that all the thumbs now have the default background. They also have reduced quality compared to those that had the dark gray background, like in my original post. At the very least, this is a way to force the same results across all images, so thank you for the reference.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This dark gray background anomaly has had me stumped since I first started this utility four years ago. It would be great if you can find out what is causing this, and I would gladly accept as solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Rafael&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 20:24:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460436#M64429</guid>
      <dc:creator>rcolon9E4ZX</dc:creator>
      <dc:date>2020-04-21T20:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460723#M64430</link>
      <description>&lt;P&gt;Should have used&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;in the last post.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 22:33:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9460723#M64430</guid>
      <dc:creator>rcolon9E4ZX</dc:creator>
      <dc:date>2020-04-21T22:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462475#M64431</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3934006"&gt;@rcolon9E4ZX&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sure why you'd see a different background, but the example I posted here shows how to get and set the color scheme to control this... it looks like the dark gray gradient is likely the "Presentation" scheme.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 14:57:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462475#M64431</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2020-04-22T14:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462616#M64432</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The dark gray background appears to be the default color scheme "Winter Night", but with the background type set to Gradient instead of 1 Color or Background Image. See image below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="&amp;quot;Winter Night&amp;quot; &amp;gt; Gradient" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/758694i9638C60390F9D660/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="&amp;quot;Winter Night&amp;quot; &amp;gt; Gradient" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;"Winter Night" &amp;gt; Gradient&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So now we know what properties are being changed. For some reason, capturing the thumbnail on save utilizes background type Gradient, but only some of the time. Maybe this be for items that are saved in the context of an assembly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rafael&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 15:49:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462616#M64432</guid>
      <dc:creator>rcolon9E4ZX</dc:creator>
      <dc:date>2020-04-22T15:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462707#M64433</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3934006"&gt;@rcolon9E4ZX&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code to use presentation and gradient is as follows, this would be per the application not per the file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;'Change to Presentation &lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"Presentation"&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;

&lt;SPAN&gt;'set to use gradient color background type&lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;BackgroundType&lt;/SPAN&gt; = _
&lt;SPAN&gt;BackgroundTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kGradientBackgroundType&lt;/SPAN&gt; 


&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 16:29:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462707#M64433</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2020-04-22T16:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462798#M64434</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate your replies. The only thing I am looking for in this thread is the root cause of why some thumbnails have the dark gray background along with increased quality. I now know the background type is changed to Gradient in some instances of saving thumbnail on save. I want to know why this is happening. Maybe this is some unintended result that can be corrected. Although untested, some hypotheses of mine are this happens when saving from context of an assembly, or it has something to do with Vault check-in or generating a DWF on check-in. Now that the change in properties is specifically understood, maybe someone knows where this takes place and why?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Rafael&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 16:57:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462798#M64434</guid>
      <dc:creator>rcolon9E4ZX</dc:creator>
      <dc:date>2020-04-22T16:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462857#M64435</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3934006"&gt;@rcolon9E4ZX&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As mentioned the color scheme can be set per application, not per file... &lt;FONT color="#993300"&gt;(edit to add: but since the thumbnail is not getting set ) I&lt;/FONT&gt; suspect maybe your code it not hitting the correct files as it processes the assembly, or it is catching an error and skipping certain files, or something similar... But unless I've missed it, you've not included your entire code here so it's impossible to say for sure.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does your VBA code include an "On Error Resume Next" line? If so, does commenting that out show you an error that might explain why some thumbnails are not getting updated?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using the last code you posted and the last code I posted together I can change all of the thumbnail backgrounds to a given theme/color.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below are those pieces of code combined in an iLogic rule, as well as a list box to choose the color scheme.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I run this on an assembly and choose Forest I see the results shown in this image, I can choose a different scheme and see it change all of the thumbnails to that color scheme. I do not see any of them remaining as the dark gradient of Winter Night or any other anomalies.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 293px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/758727iEB8695F80126F8D8/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;MyStringValues&lt;/SPAN&gt; = &lt;SPAN&gt;New&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;(){&lt;SPAN&gt;"Presentation"&lt;/SPAN&gt;, &lt;SPAN&gt;"Winter Night"&lt;/SPAN&gt;, &lt;SPAN&gt;"Forest"&lt;/SPAN&gt;, &lt;SPAN&gt;"Sky"&lt;/SPAN&gt;}

&lt;SPAN&gt;oScheme&lt;/SPAN&gt; = &lt;SPAN&gt;InputListBox&lt;/SPAN&gt;(&lt;SPAN&gt;"select"&lt;/SPAN&gt;, &lt;SPAN&gt;MyStringValues&lt;/SPAN&gt;, &lt;SPAN&gt;"Presentation"&lt;/SPAN&gt;, &lt;SPAN&gt;"iLogic"&lt;/SPAN&gt;, &lt;SPAN&gt;"List"&lt;/SPAN&gt;)

&lt;SPAN&gt;'Change to color scheme &lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;oScheme&lt;/SPAN&gt;).&lt;SPAN&gt;Activate&lt;/SPAN&gt;


&lt;SPAN&gt;'set to use gradient color background type&lt;/SPAN&gt;
&lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ColorSchemes&lt;/SPAN&gt;.&lt;SPAN&gt;BackgroundType&lt;/SPAN&gt; = _
&lt;SPAN&gt;BackgroundTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kGradientBackgroundType&lt;/SPAN&gt; 


&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;AssemblyDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Document&lt;/SPAN&gt;

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oAsmDoc&lt;/SPAN&gt;.&lt;SPAN&gt;AllReferencedDocuments&lt;/SPAN&gt;
    &lt;SPAN&gt;' open document&lt;/SPAN&gt;
    &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;Documents&lt;/SPAN&gt;.&lt;SPAN&gt;Open&lt;/SPAN&gt; (&lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;FullFileName&lt;/SPAN&gt;, &lt;SPAN&gt;True&lt;/SPAN&gt;)
    
    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oSketch&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;Sketches&lt;/SPAN&gt;
        &lt;SPAN&gt;oSketch&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Next&lt;/SPAN&gt;
    
    &lt;SPAN&gt;'set work plane visibility&lt;/SPAN&gt;
    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWorkPlane&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkPlanes&lt;/SPAN&gt;
    &lt;SPAN&gt;oWorkPlane&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Next&lt;/SPAN&gt;
    
    &lt;SPAN&gt;'set work axis visibility&lt;/SPAN&gt;
    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWorkAxis&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkAxes&lt;/SPAN&gt;
    &lt;SPAN&gt;oWorkAxis&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Next&lt;/SPAN&gt;
    
    &lt;SPAN&gt;'set work point visibility&lt;/SPAN&gt;
    &lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oWorkPoint&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;WorkPoints&lt;/SPAN&gt;
    &lt;SPAN&gt;oWorkPoint&lt;/SPAN&gt;.&lt;SPAN&gt;Visible&lt;/SPAN&gt; = &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Next&lt;/SPAN&gt;

    &lt;SPAN&gt;'set iproperty to use ISO view on save&lt;/SPAN&gt;
    &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;SetThumbnailSaveOption&lt;/SPAN&gt; _
    (&lt;SPAN&gt;ThumbnailSaveOptionEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kActiveComponentIsoViewOnSave&lt;/SPAN&gt;)
    
    &lt;SPAN&gt;'save and close the file&lt;/SPAN&gt;
    &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Save&lt;/SPAN&gt;
    &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Close&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 17:34:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462857#M64435</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2020-04-22T17:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462889#M64436</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is not a question about my code. This is about what Inventor is doing internally when it saves a thumbnail on document save. Without running any VBA code, these anomalies occur during normal design use with Inventor. This is strictly something Inventor is doing on its own and I want to find out why. I know I can refresh the thumbnails with a specific background from an earlier reply. I am not asking for code samples to loop through and refresh. I just want the understanding of what is causing this anomaly during normal Inventor use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Rafael&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 17:32:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462889#M64436</guid>
      <dc:creator>rcolon9E4ZX</dc:creator>
      <dc:date>2020-04-22T17:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462935#M64437</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3934006"&gt;@rcolon9E4ZX&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I know the thumbnail will only get updated when that file is saved, so again if it is not getting updated I would guess that it is not getting saved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The examples I've provided were intended so that you could run them and see if you can get the anomalies to go away.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can not reproduce the anomalies you mention with code or without.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But indeed I was under the impression you were looking to fix an issue with your VBA macro that leaves some thumbnails not updated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 17:48:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462935#M64437</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2020-04-22T17:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462948#M64438</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks. Rest assured, I do not get any anomalies when running VBA code to refresh the thumbnails. This is just a head scratcher as to why Inventor changes the background type sometimes for saved thumbnails. I will find out why, and update this thread when I do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rafael&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 17:51:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462948#M64438</guid>
      <dc:creator>rcolon9E4ZX</dc:creator>
      <dc:date>2020-04-22T17:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: VBA Thumbnail iProperty Yields varying quality, file size, and back color</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462966#M64439</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3934006"&gt;@rcolon9E4ZX&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess the only time I've seen the thumbnail colors change "magically" is when someone else saves the file on another machine/profile that is using a different color scheme. I guess I didn't think of this as an anomaly, but I guess it could seem that way if we're not aware that is going on?&amp;nbsp; So maybe the idea that someone else is saving the files using a different color scheme is something to rule out?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which brings me to another thought, which might be that if you have Task Scheduler running a migration task during upgrades... it uses a "headless" Inventor that uses default settings ... this might update thumbnails as it saves? I'm not sure if that is true or not, but something that came to mind, so again maybe something to rule out?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 18:01:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-thumbnail-iproperty-yields-varying-quality-file-size-and/m-p/9462966#M64439</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2020-04-22T18:01:13Z</dc:date>
    </item>
  </channel>
</rss>

