<?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: iLogic that selects which title block to use based on file extension of base view for that sheet. in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050876#M154313</link>
    <description>&lt;P&gt;Thank you &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;for getting back so quickly. Unfotunately I am getting the following error on line 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Object reference not set to an instance of an object.&lt;/P&gt;</description>
    <pubDate>Wed, 21 Jun 2023 17:21:09 GMT</pubDate>
    <dc:creator>BK-MTFNE</dc:creator>
    <dc:date>2023-06-21T17:21:09Z</dc:date>
    <item>
      <title>iLogic that selects which title block to use based on file extension of base view for that sheet.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050831#M154311</link>
      <description>&lt;P&gt;So I have been working on my drawing template and so far I have been able to set up the sheet formats correctly and a few other things but my issue is we have 2 different title blocks dependant on what the drawing is for. This is easily determined by the file type of the object in that sheets drawing view. Basically .ipt gets one title block and .iam gets the other type. Below is the iLogic I have created so far however I am getting the error code as follows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error on Line 26 : Property 'TitleBlock' is 'ReadOnly'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I erase the code I can easily double click the titleblock and manually add it but I would like this to be automated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Dim oDoc As DrawingDocument
oDoc = ThisApplication.ActiveDocument

' Get the file extension of the active drawing view
Dim drawingView As DrawingView = oDoc.ActiveSheet.ActiveView
Dim drawingViewExtension As String = System.IO.Path.GetExtension(drawingView.ReferencedFileDescriptor.FullFileName).ToLower()

' Define the title block names
Dim titleBlockIPT As String = "Production Drawing Title Block"
Dim titleBlockIAM As String = "Assembly Drawing Title Block"
Dim defaultTitleBlock As String = "DefaultTitleBlock"


' Assign the appropriate title block based on the file extension
Dim titleBlockName As String = defaultTitleBlock ' Default title block

Select Case drawingViewExtension
    Case ".ipt"
        titleBlockName = titleBlockIPT
    Case ".iam"
        titleBlockName = titleBlockIAM
   
End Select

' Set the title block for the active sheet
oDoc.ActiveSheet.TitleBlock = titleBlockName&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 16:53:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050831#M154311</guid>
      <dc:creator>BK-MTFNE</dc:creator>
      <dc:date>2023-06-21T16:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic that selects which title block to use based on file extension of base view for that sheet.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050866#M154312</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7549423"&gt;@BK-MTFNE&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Give this a try.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;
Dim modelDoc = ThisDrawing.ModelDocument
Dim drawingViewExtension As String = System.IO.Path.GetExtension(modelDoc.FullFileName).ToLower()

' Define the title block names
Dim titleBlockIPT As String = "Production Drawing Title Block"
Dim titleBlockIAM As String = "Assembly Drawing Title Block"
Dim defaultTitleBlock As String = "DefaultTitleBlock"

' Assign the appropriate title block based on the file extension
Dim titleBlockName As String = defaultTitleBlock ' Default title block

Select Case drawingViewExtension
    Case ".ipt"
        titleBlockName = titleBlockIPT
    Case ".iam"
        titleBlockName = titleBlockIAM   
End Select

' Set the title block for the active sheet
ActiveSheet.TitleBlock = titleBlockName&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 17:15:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050866#M154312</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2023-06-21T17:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic that selects which title block to use based on file extension of base view for that sheet.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050876#M154313</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_Waguespack&lt;/a&gt;&amp;nbsp;for getting back so quickly. Unfotunately I am getting the following error on line 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Object reference not set to an instance of an object.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 17:21:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050876#M154313</guid>
      <dc:creator>BK-MTFNE</dc:creator>
      <dc:date>2023-06-21T17:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic that selects which title block to use based on file extension of base view for that sheet.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050905#M154314</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7549423"&gt;@BK-MTFNE&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think this issue is you do not have a view on the drawing, so the model can not be found.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's an update that sets the default TB when no model is found.&lt;/P&gt;
&lt;P&gt;(Note that this version is using the model that is the first referenced model in the drawing, which could cause issues if sheet1 is a part, and sheet2 is an assembly.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;' Define the title block names
Dim titleBlockIPT As String = "Production Drawing Title Block"
Dim titleBlockIAM As String = "Assembly Drawing Title Block"
Dim defaultTitleBlock As String = "DefaultTitleBlock"

Dim drawingViewExtension As String

titleBlockName = defaultTitleBlock

Dim modelDoc = ThisDrawing.ModelDocument

If not modelDoc Is Nothing Then
	drawingViewExtension = System.IO.Path.GetExtension(modelDoc.FullFileName).ToLower()
End If

Select Case drawingViewExtension
	Case ".ipt"
		titleBlockName = titleBlockIPT
	Case ".iam"
		titleBlockName = titleBlockIAM
End Select

' Set the title block for the active sheet
ActiveSheet.TitleBlock = titleBlockName&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And here is an alternate, that sets the TB per sheet by looking at the first view on the sheet, which is more in line with your original example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;' Define the title block names
Dim titleBlockIPT As String = "Production Drawing Title Block"
Dim titleBlockIAM As String = "Assembly Drawing Title Block"
Dim defaultTitleBlock As String = "DefaultTitleBlock"

Dim drawingViewExtension As String
Dim drawingView As DrawingView

titleBlockName = defaultTitleBlock

oViewCount = ThisDoc.Document.ActiveSheet.DrawingViews.count

If oViewCount &amp;gt; 0 Then
	drawingView = ThisDoc.Document.ActiveSheet.DrawingViews.Item(1)
	modelDoc = ActiveSheet.View(drawingView.Name).ModelDocument
	
	If Not modelDoc Is Nothing Then
		drawingViewExtension = System.IO.Path.GetExtension(modelDoc.FullFileName).ToLower()
	End If
End If

Select Case drawingViewExtension
	Case ".ipt"
		titleBlockName = titleBlockIPT
	Case ".iam"
		titleBlockName = titleBlockIAM
End Select

' Set the title block for the active sheet
ActiveSheet.TitleBlock = titleBlockName&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 17:42:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050905#M154314</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2023-06-21T17:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic that selects which title block to use based on file extension of base view for that sheet.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050922#M154316</link>
      <description>&lt;P&gt;You're correct the second one works perfectly for what I am doing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Out of curiosity do you know a way to trigger this iLogic any time a new sheet is added?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 17:46:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050922#M154316</guid>
      <dc:creator>BK-MTFNE</dc:creator>
      <dc:date>2023-06-21T17:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic that selects which title block to use based on file extension of base view for that sheet.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050959#M154319</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7549423"&gt;@BK-MTFNE&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Out of curiosity do you know a way to trigger this iLogic any time a new sheet is added?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Unfortunately there is not an event trigger for "new sheet" in iLogic.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Probably the best you can do is set the rule to run on the "before save" event, and then as you add sheets, simply click the save button to update the title block.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 18:04:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12050959#M154319</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2023-06-21T18:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic that selects which title block to use based on file extension of base view for that sheet.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12051358#M154327</link>
      <description>&lt;P&gt;So the second option worked great, unfotunately now that I have multiple sheets I cant get it to cycle through all the sheets and add titleblocks to them all. This seems like it should be easy to go through each sheet but it just keeps crashing.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 21:20:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12051358#M154327</guid>
      <dc:creator>BK-MTFNE</dc:creator>
      <dc:date>2023-06-21T21:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic that selects which title block to use based on file extension of base view for that sheet.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12051538#M154329</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7549423"&gt;@BK-MTFNE&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Give this a try.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;' Define the title block names&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;titleBlockIPT&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;"Production Drawing Title Block"&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;titleBlockIAM&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;"Assembly Drawing Title Block"&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;defaultTitleBlock&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;"DefaultTitleBlock"&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;drawingViewExtension&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;drawingView&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingView&lt;/SPAN&gt;

&lt;SPAN&gt;oCurrentSheet&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;

&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;.&lt;SPAN&gt;Sheets&lt;/SPAN&gt;

	&lt;SPAN&gt;oSheet&lt;/SPAN&gt;.&lt;SPAN&gt;activate&lt;/SPAN&gt;

	&lt;SPAN&gt;drawingViewExtension&lt;/SPAN&gt; = &lt;SPAN&gt;""&lt;/SPAN&gt;

	&lt;SPAN&gt;oViewCount&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;.&lt;SPAN&gt;DrawingViews&lt;/SPAN&gt;.&lt;SPAN&gt;count&lt;/SPAN&gt;

	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oViewCount&lt;/SPAN&gt; &amp;gt; 0 &lt;SPAN&gt;Then&lt;/SPAN&gt;
		&lt;SPAN&gt;drawingView&lt;/SPAN&gt; = &lt;SPAN&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Document&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;.&lt;SPAN&gt;DrawingViews&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1)
		&lt;SPAN&gt;modelDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;.&lt;SPAN&gt;View&lt;/SPAN&gt;(&lt;SPAN&gt;drawingView&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt;).&lt;SPAN&gt;ModelDocument&lt;/SPAN&gt;

		&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Not&lt;/SPAN&gt; &lt;SPAN&gt;modelDoc&lt;/SPAN&gt; &lt;SPAN&gt;Is&lt;/SPAN&gt; &lt;SPAN&gt;Nothing&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
			&lt;SPAN&gt;drawingViewExtension&lt;/SPAN&gt; = &lt;SPAN&gt;System&lt;/SPAN&gt;.&lt;SPAN&gt;IO&lt;/SPAN&gt;.&lt;SPAN&gt;Path&lt;/SPAN&gt;.&lt;SPAN&gt;GetExtension&lt;/SPAN&gt;(&lt;SPAN&gt;modelDoc&lt;/SPAN&gt;.&lt;SPAN&gt;FullFileName&lt;/SPAN&gt;).&lt;SPAN&gt;ToLower&lt;/SPAN&gt;()
		&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;

	&lt;SPAN&gt;Select&lt;/SPAN&gt; &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;drawingViewExtension&lt;/SPAN&gt;
		&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;".ipt"&lt;/SPAN&gt;
			&lt;SPAN&gt;titleBlockName&lt;/SPAN&gt; = &lt;SPAN&gt;titleBlockIPT&lt;/SPAN&gt;
		&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;".iam"&lt;/SPAN&gt;
			&lt;SPAN&gt;titleBlockName&lt;/SPAN&gt; = &lt;SPAN&gt;titleBlockIAM&lt;/SPAN&gt;
		&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;Else&lt;/SPAN&gt;
			&lt;SPAN&gt;titleBlockName&lt;/SPAN&gt; = &lt;SPAN&gt;defaultTitleBlock&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Select&lt;/SPAN&gt;

	&lt;SPAN&gt;' Set the title block for the active sheet&lt;/SPAN&gt;
	&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;.&lt;SPAN&gt;TitleBlock&lt;/SPAN&gt; = &lt;SPAN&gt;titleBlockName&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt;

&lt;SPAN&gt;oCurrentSheet&lt;/SPAN&gt;.&lt;SPAN&gt;activate&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Jun 2023 23:37:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12051538#M154329</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2023-06-21T23:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic that selects which title block to use based on file extension of base view for that sheet.</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12052729#M154340</link>
      <description>&lt;P&gt;Perfect, it worked great. Looks like I was making a mistake in this line...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;drawingViewExtension&lt;/SPAN&gt; = &lt;SPAN&gt;""&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 11:24:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-that-selects-which-title-block-to-use-based-on-file/m-p/12052729#M154340</guid>
      <dc:creator>BK-MTFNE</dc:creator>
      <dc:date>2023-06-22T11:24:40Z</dc:date>
    </item>
  </channel>
</rss>

