<?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: ThisApplication.OpenDocumentsDisplay in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/thisapplication-opendocumentsdisplay/m-p/5978214#M113365</link>
    <description>&lt;P&gt;Hi mikazakov,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I can tell, it controls the recent documents list:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG title="Autodesk Inventor Open Document Display.png" alt="Autodesk Inventor Open Document Display.png" src="https://forums.autodesk.com/t5/image/serverpage/image-id/210208iF6135EAC15823348/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used this code to toggle it (using iLogic):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;If ThisApplication.OpenDocumentsDisplay = True Then
ThisApplication.OpenDocumentsDisplay = False
Else
ThisApplication.OpenDocumentsDisplay = True
End If
&lt;/PRE&gt;
&lt;P&gt;&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;</description>
    <pubDate>Thu, 07 Jan 2016 18:58:25 GMT</pubDate>
    <dc:creator>Curtis_Waguespack</dc:creator>
    <dc:date>2016-01-07T18:58:25Z</dc:date>
    <item>
      <title>ThisApplication.OpenDocumentsDisplay</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/thisapplication-opendocumentsdisplay/m-p/5978092#M113364</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What does&lt;/SPAN&gt; &lt;SPAN&gt;object&amp;nbsp;ThisApplication.OpenDocumentsDisplay?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I did not see its effect.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jan 2016 17:51:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/thisapplication-opendocumentsdisplay/m-p/5978092#M113364</guid>
      <dc:creator>mikazakov</dc:creator>
      <dc:date>2016-01-07T17:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: ThisApplication.OpenDocumentsDisplay</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/thisapplication-opendocumentsdisplay/m-p/5978214#M113365</link>
      <description>&lt;P&gt;Hi mikazakov,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I can tell, it controls the recent documents list:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG title="Autodesk Inventor Open Document Display.png" alt="Autodesk Inventor Open Document Display.png" src="https://forums.autodesk.com/t5/image/serverpage/image-id/210208iF6135EAC15823348/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used this code to toggle it (using iLogic):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;If ThisApplication.OpenDocumentsDisplay = True Then
ThisApplication.OpenDocumentsDisplay = False
Else
ThisApplication.OpenDocumentsDisplay = True
End If
&lt;/PRE&gt;
&lt;P&gt;&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;</description>
      <pubDate>Thu, 07 Jan 2016 18:58:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/thisapplication-opendocumentsdisplay/m-p/5978214#M113365</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2016-01-07T18:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: ThisApplication.OpenDocumentsDisplay</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/thisapplication-opendocumentsdisplay/m-p/5979462#M113366</link>
      <description>&lt;P&gt;Just a quick little tidbit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm reading a book called Becoming a better programmer, but am not a programmer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It suggests avoiding redundancy and keeping things simple and free of loops if possible, so to do a toggle for a boolean property, it suggests using:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ThisApplication.OpenDocumentsDisplay = Not ThisApplication.OpenDocumentsDisplay&lt;/PRE&gt;&lt;P&gt;It also creates less lines of code which means less to debug in the future!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best of luck in your code escapades!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 13:26:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/thisapplication-opendocumentsdisplay/m-p/5979462#M113366</guid>
      <dc:creator>MechMachineMan</dc:creator>
      <dc:date>2016-01-08T13:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: ThisApplication.OpenDocumentsDisplay</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/thisapplication-opendocumentsdisplay/m-p/5979691#M113367</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2511355"&gt;@MechMachineMan&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Just a quick little tidbit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm reading a book called Becoming a better programmer, but am not a programmer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It suggests avoiding redundancy and keeping things simple and free of loops if possible, so to do a toggle for a boolean property, it suggests using:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ThisApplication.OpenDocumentsDisplay = Not ThisApplication.OpenDocumentsDisplay&lt;/PRE&gt;
&lt;P&gt;It also creates less lines of code which means less to debug in the future!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best of luck in your code escapades!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Thanks for the tip, Justin!&lt;/P&gt;
&lt;P&gt;I just ordered that book (based on your recommendation), so hopefully it'll help me break some bad habits, no promises though. &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 15:12:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/thisapplication-opendocumentsdisplay/m-p/5979691#M113367</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2016-01-08T15:12:13Z</dc:date>
    </item>
  </channel>
</rss>

