<?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: inventor studio -save file in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8936355#M100068</link>
    <description>&lt;P&gt;OK, Save an image is shown below. its slightly different to how we save our pdf's stp, dwgs etc but is more what I would like to do with our rendered files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;oh..&lt;/P&gt;&lt;P&gt;I'm not a programmer, and pretty much cobbled this together... I'm sure there are better ways of doing it but this works for us quite well...so, that said.the rule does the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* saves the old background colour details to a text file&lt;/P&gt;&lt;P&gt;* activates a new colour scheme with a white background&lt;/P&gt;&lt;P&gt;*checks a network folder for all subfolders whose first 6 characters match the first 6 characters of the current documents filename&lt;/P&gt;&lt;P&gt;* if found, set the network path and filename for the image file&lt;/P&gt;&lt;P&gt;* switch off 3d indicator&lt;/P&gt;&lt;P&gt;* set resolution and print image file to C:\images\&amp;lt;first 6 characters&amp;gt;\&lt;/P&gt;&lt;P&gt;* copy image from c:\images&amp;nbsp; to the network location mentioned previously&lt;/P&gt;&lt;P&gt;* if there is no match with the first 6 characters of the filename and the network folders, then save the filename to a folder C:\images\OTHER\&lt;/P&gt;&lt;P&gt;*reset the old background colour&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so we save a copy of the image in a folder on the users machine and if the file belongs to a project, the image is then copied over to the network area for others to use..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if there is anyway to do something similar with the renders that would be brilliant.. many thanks for any assistance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Imports&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;
&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;On Error Resume Next&lt;/SPAN&gt;

&lt;SPAN style="color: #800000;"&gt;oPath&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oFileName&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;without extension&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ActiveEditDocument&lt;/SPAN&gt;


&lt;SPAN style="color: #800000;"&gt;fs&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;CreateObject&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;Scripting.FileSystemObject&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;

&lt;SPAN style="color: #800000;"&gt;OldColorFile&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;fs&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;CreateTextFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldColorName.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;True&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;OldColorSchemeName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldColorSchemeName&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ActiveColorScheme&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Name&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldColorFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;WriteLine&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;OldColorSchemeName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldColorFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Close&lt;/SPAN&gt;

&lt;SPAN style="color: #800000;"&gt;OldBackgroundFile&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;fs&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;CreateTextFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldBackground.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;True&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;OldBackground&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;BackgroundTypeEnum&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldBackground&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;BackgroundType&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldBackgroundFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;WriteLine&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;OldBackground&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldBackgroundFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Close&lt;/SPAN&gt;

&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;Presentation&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Activate&lt;/SPAN&gt;
&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;BackgroundType&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;52737&lt;/SPAN&gt;

&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt; Get the active view. &lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oView&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;View&lt;/SPAN&gt; 
    &lt;SPAN style="color: #800000;"&gt;oView&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ActiveView&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;TimeString&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;Val&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;4&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;2&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;Right&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;2&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;



&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;*****************************************&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;Left&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;DisplayName&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;6&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;  &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;assumes project number in file name is 6 chrs&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;sRootDrive&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt; 
&lt;SPAN style="color: #800000;"&gt;sRootDrive&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;Y:\Inventor\Drawing and Sketches\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;

&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;expects to find only one&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dirs&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;()&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dir&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;     
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oTargetFolder&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Try&lt;/SPAN&gt;
      &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;look for all directories starting with project number using * as a wildcard&lt;/SPAN&gt;
      &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;dirs = Directory.GetDirectories(path to search, what to search for)&lt;/SPAN&gt;
      &lt;SPAN style="color: #800000;"&gt;dirs&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;GetDirectories&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;sRootDrive&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
      &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;get subdirectory and set variable&lt;/SPAN&gt;
      &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dir&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dirs&lt;/SPAN&gt;
              &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dir&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Contains&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Then&lt;/SPAN&gt;
              &lt;SPAN style="color: #800000;"&gt;oTargetFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dir&lt;/SPAN&gt;
              
              &lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;SRootDrive&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\Images\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFileName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;DateString&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;.jpg&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;

   &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;DisplayOptions&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Show3DIndicator&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;
    &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt; Save the view as a jpg file.  &lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Call&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oView&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;SaveAsBitmap&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;6000&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
    &lt;SPAN style="color: #800000;"&gt;fname&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;C:\images\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; 
    
    
&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;Check for the folder and create it if it does not exist&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Not&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Exists&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;fname&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Then&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;CreateDirectory&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;fname&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt;

    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;FileCopy&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;fname&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFileName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;DateString&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;.jpg&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;))&lt;/SPAN&gt;
    
    
        &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;open the folder where the new files are saved&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Shell&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;explorer.exe &lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;vbNormalFocus&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; 
              
              &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt;
              
      &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Next&lt;/SPAN&gt;     
    
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Catch&lt;/SPAN&gt;          
    &lt;SPAN style="color: #800000;"&gt;oTargetFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;""&lt;/SPAN&gt;
    
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Try&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;""&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Then&lt;/SPAN&gt;

&lt;SPAN style="color: #800000;"&gt;oRFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;C:\Images\OTHER\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;


&lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt;  &lt;SPAN style="color: #800000;"&gt;oRFolder&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFileName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;DateString&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;.jpg&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;


&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;Check for the folder and create it if it does not exist&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Not&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Exists&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oRFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Then&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;CreateDirectory&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oRFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt;


   &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;DisplayOptions&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Show3DIndicator&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;
    &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt; Save the view as a jpg file.  &lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Call&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oView&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;SaveAsBitmap&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;6000&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
        &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;open the folder where the new files are saved&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Shell&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;explorer.exe &lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;vbNormalFocus&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; 
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRead&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;New&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;StreamReader&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldBackground.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;aLine&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;aLine&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRead&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;readline&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;()&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oRead&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Close&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Kill&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldBackground.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Read&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;New&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Streamreader&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldColorName.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;bLine&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;bLine&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Read&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;readline&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;()&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;Read&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Close&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Kill&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldColorName.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;

&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;bline&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Activate&lt;/SPAN&gt;
&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;BackgroundType&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;aline&lt;/SPAN&gt;






&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jul 2019 14:08:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-07-29T14:08:02Z</dc:date>
    <item>
      <title>inventor studio -save file</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8922676#M99871</link>
      <description>&lt;P&gt;Does anyone know if it is possible to use ilogic to save a file from inventor studio?&lt;/P&gt;&lt;P&gt;we have our inventor images all setup to have the filenames saved as part number_rev_description, the only thing this doesn't happen for are renders from inv studio?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many thanks for any assistance&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2019 12:06:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8922676#M99871</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-22T12:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: inventor studio -save file</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8934367#M100035</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;, do you have a rule to set the filenames for part and assembly files? If so, that rule probably wouldn't work for images from Inventor Studio. Can you share the rule?&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jul 2019 20:43:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8934367#M100035</guid>
      <dc:creator>MjDeck</dc:creator>
      <dc:date>2019-07-27T20:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: inventor studio -save file</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8935655#M100054</link>
      <description>&lt;P&gt;Hi, thanks for the reply, its appreciated.&lt;/P&gt;&lt;P&gt;I don't have a rule for saving ipt's and iam's.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have rules for saving jpg, pdf, dxf, stp, &amp;amp; dwg with the format &amp;lt;part number&amp;gt;,&amp;lt;rev&amp;gt;,&amp;lt;description&amp;gt; and saving those in specific folders depending on their part number. I could share one of those if that would help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 08:28:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8935655#M100054</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-29T08:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: inventor studio -save file</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8936283#M100066</link>
      <description>&lt;P&gt;Yes, please share a sample rule. Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 13:37:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8936283#M100066</guid>
      <dc:creator>MjDeck</dc:creator>
      <dc:date>2019-07-29T13:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: inventor studio -save file</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8936355#M100068</link>
      <description>&lt;P&gt;OK, Save an image is shown below. its slightly different to how we save our pdf's stp, dwgs etc but is more what I would like to do with our rendered files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;oh..&lt;/P&gt;&lt;P&gt;I'm not a programmer, and pretty much cobbled this together... I'm sure there are better ways of doing it but this works for us quite well...so, that said.the rule does the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* saves the old background colour details to a text file&lt;/P&gt;&lt;P&gt;* activates a new colour scheme with a white background&lt;/P&gt;&lt;P&gt;*checks a network folder for all subfolders whose first 6 characters match the first 6 characters of the current documents filename&lt;/P&gt;&lt;P&gt;* if found, set the network path and filename for the image file&lt;/P&gt;&lt;P&gt;* switch off 3d indicator&lt;/P&gt;&lt;P&gt;* set resolution and print image file to C:\images\&amp;lt;first 6 characters&amp;gt;\&lt;/P&gt;&lt;P&gt;* copy image from c:\images&amp;nbsp; to the network location mentioned previously&lt;/P&gt;&lt;P&gt;* if there is no match with the first 6 characters of the filename and the network folders, then save the filename to a folder C:\images\OTHER\&lt;/P&gt;&lt;P&gt;*reset the old background colour&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so we save a copy of the image in a folder on the users machine and if the file belongs to a project, the image is then copied over to the network area for others to use..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if there is anyway to do something similar with the renders that would be brilliant.. many thanks for any assistance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Imports&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;
&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;On Error Resume Next&lt;/SPAN&gt;

&lt;SPAN style="color: #800000;"&gt;oPath&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oFileName&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;without extension&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ActiveEditDocument&lt;/SPAN&gt;


&lt;SPAN style="color: #800000;"&gt;fs&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;CreateObject&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;Scripting.FileSystemObject&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;

&lt;SPAN style="color: #800000;"&gt;OldColorFile&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;fs&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;CreateTextFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldColorName.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;True&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;OldColorSchemeName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldColorSchemeName&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ActiveColorScheme&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Name&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldColorFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;WriteLine&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;OldColorSchemeName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldColorFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Close&lt;/SPAN&gt;

&lt;SPAN style="color: #800000;"&gt;OldBackgroundFile&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;fs&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;CreateTextFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldBackground.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;True&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;OldBackground&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;BackgroundTypeEnum&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldBackground&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;BackgroundType&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldBackgroundFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;WriteLine&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;OldBackground&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;OldBackgroundFile&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Close&lt;/SPAN&gt;

&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;Presentation&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Activate&lt;/SPAN&gt;
&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;BackgroundType&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;52737&lt;/SPAN&gt;

&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt; Get the active view. &lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oView&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;View&lt;/SPAN&gt; 
    &lt;SPAN style="color: #800000;"&gt;oView&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ActiveView&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;TimeString&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;Val&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;4&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;2&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;-&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;Right&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;2&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;



&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;*****************************************&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;Left&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;DisplayName&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;6&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;  &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;assumes project number in file name is 6 chrs&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;sRootDrive&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt; 
&lt;SPAN style="color: #800000;"&gt;sRootDrive&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;Y:\Inventor\Drawing and Sketches\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;

&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;expects to find only one&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dirs&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;()&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dir&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;     
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oTargetFolder&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Try&lt;/SPAN&gt;
      &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;look for all directories starting with project number using * as a wildcard&lt;/SPAN&gt;
      &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;dirs = Directory.GetDirectories(path to search, what to search for)&lt;/SPAN&gt;
      &lt;SPAN style="color: #800000;"&gt;dirs&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;GetDirectories&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;sRootDrive&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
      &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;get subdirectory and set variable&lt;/SPAN&gt;
      &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dir&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dirs&lt;/SPAN&gt;
              &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dir&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Contains&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Then&lt;/SPAN&gt;
              &lt;SPAN style="color: #800000;"&gt;oTargetFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dir&lt;/SPAN&gt;
              
              &lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;SRootDrive&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\Images\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFileName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;DateString&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;.jpg&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;

   &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;DisplayOptions&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Show3DIndicator&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;
    &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt; Save the view as a jpg file.  &lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Call&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oView&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;SaveAsBitmap&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;6000&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
    &lt;SPAN style="color: #800000;"&gt;fname&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;C:\images\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oName2&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; 
    
    
&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;Check for the folder and create it if it does not exist&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Not&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Exists&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;fname&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Then&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;CreateDirectory&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;fname&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt;

    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;FileCopy&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;fname&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFileName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;DateString&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;.jpg&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;))&lt;/SPAN&gt;
    
    
        &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;open the folder where the new files are saved&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Shell&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;explorer.exe &lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;vbNormalFocus&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; 
              
              &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt;
              
      &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Next&lt;/SPAN&gt;     
    
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Catch&lt;/SPAN&gt;          
    &lt;SPAN style="color: #800000;"&gt;oTargetFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;""&lt;/SPAN&gt;
    
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Try&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;""&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Then&lt;/SPAN&gt;

&lt;SPAN style="color: #800000;"&gt;oRFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;C:\Images\OTHER\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;


&lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt;  &lt;SPAN style="color: #800000;"&gt;oRFolder&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFileName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;DateString&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oTime&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;.jpg&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;


&lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;Check for the folder and create it if it does not exist&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Not&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Exists&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oRFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Then&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;System&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Directory&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;CreateDirectory&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oRFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt;


   &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;DisplayOptions&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Show3DIndicator&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;
    &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt; Save the view as a jpg file.  &lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Call&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oView&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;SaveAsBitmap&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;6000&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
        &lt;SPAN style="color: #808080; font-style: italic;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #808080; font-style: italic;"&gt;open the folder where the new files are saved&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Shell&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;explorer.exe &lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFolder&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;vbNormalFocus&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; 
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;If&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRead&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;New&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;StreamReader&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldBackground.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;aLine&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;aLine&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRead&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;readline&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;()&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oRead&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Close&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Kill&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldBackground.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Read&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;New&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Streamreader&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldColorName.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;bLine&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;bLine&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Read&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;readline&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;()&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;Read&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Close&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;Kill&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;Path&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;\&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisDoc&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800080; font-weight: bold;"&gt;FileName&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000; font-weight: bold;"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;OldColorName.txt&lt;/SPAN&gt;&lt;SPAN style="color: #008080;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;

&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;bline&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: bold;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Activate&lt;/SPAN&gt;
&lt;SPAN style="color: #800080; font-weight: bold;"&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;ColorSchemes&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;BackgroundType&lt;/SPAN&gt; &lt;SPAN style="color: #000000; font-weight: bold;"&gt;=&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;aline&lt;/SPAN&gt;






&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 14:08:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8936355#M100068</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-29T14:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: inventor studio -save file</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8936618#M100073</link>
      <description>&lt;P&gt;I didn't try to convert your rule to use Inventor Studio. But here's a sample rule (see the attached text file) to demonstrate the Studio API.&lt;BR /&gt;To make this work, you have to install the attached DLL file InventorStudioLib.dll so that iLogic can find it. A good location to put it is the folder:&lt;BR /&gt;%ProgramFiles%\Autodesk\Inventor 2020\Bin\iLogicAdd&lt;/P&gt;
&lt;P&gt;(Or Inventor 2019 or other version).&lt;/P&gt;
&lt;P&gt;I commented out the lines that select lighting styles and cameras. Those depend on your configuration.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 15:46:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8936618#M100073</guid>
      <dc:creator>MjDeck</dc:creator>
      <dc:date>2019-07-29T15:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: inventor studio -save file</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8937857#M100092</link>
      <description>&lt;P&gt;Thank you - I can work with that&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 09:00:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/8937857#M100092</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-30T09:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: inventor studio -save file</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/11185918#M138397</link>
      <description>&lt;P&gt;Thank you for sharing, that example is great!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have any further reading resources for automating Inventor Studio via iLogic?&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 01:05:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/inventor-studio-save-file/m-p/11185918#M138397</guid>
      <dc:creator>_KarlH</dc:creator>
      <dc:date>2022-05-23T01:05:12Z</dc:date>
    </item>
  </channel>
</rss>

