<?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 Insert Text Parameter into a Text Field in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9731393#M58524</link>
    <description>&lt;P&gt;The values &lt;SPAN&gt;"FCE", "MPO", "RMO", "BAR", "DGO", "HJD"&amp;nbsp;&lt;/SPAN&gt;were manually written.&amp;nbsp;&lt;BR /&gt;I would like to eliminate this old method.&lt;/P&gt;</description>
    <pubDate>Sat, 05 Sep 2020 17:45:26 GMT</pubDate>
    <dc:creator>fce</dc:creator>
    <dc:date>2020-09-05T17:45:26Z</dc:date>
    <item>
      <title>iLogic Insert Text Parameter into a Text Field</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9730434#M58522</link>
      <description>&lt;P&gt;Hello there,&lt;BR /&gt;&lt;BR /&gt;I´m trying to create an iLogic rule to replace the author of old drawings (which is written manually) with the current author of the drawing, but I would like to keep the author as a text parameter &amp;lt;Author&amp;gt; and not as simple text.&lt;BR /&gt;I managed to changed but only as simple text. I´m sure that I´m just missing the correct function.&amp;nbsp;&lt;BR /&gt;Bellow the current code. I would really appreciate some quick help.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;'---------------------&lt;/SPAN&gt;
&lt;SPAN&gt;' Replace "FCE" , "MPO", "RMO", "BAR", "DGO", "HJD" with Author&lt;BR /&gt;'Is the active document a drawing document?&lt;/SPAN&gt;
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;.&lt;SPAN&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN&gt;kDrawingDocumentObject&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;

	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;objDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Document&lt;/SPAN&gt;
	&lt;SPAN&gt;objDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
		  
	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;objDrawDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingDocument&lt;/SPAN&gt;
	&lt;SPAN&gt;objDrawDoc&lt;/SPAN&gt; = &lt;SPAN&gt;objDoc&lt;/SPAN&gt;
	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;colTitleBlkDefs&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;TitleBlockDefinitions&lt;/SPAN&gt;
	&lt;SPAN&gt;colTitleBlkDefs&lt;/SPAN&gt; = &lt;SPAN&gt;objDrawDoc&lt;/SPAN&gt;.&lt;SPAN&gt;TitleBlockDefinitions&lt;/SPAN&gt;
	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;objTitleBlkDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;TitleBlockDefinition&lt;/SPAN&gt;

		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;objTitleBlkDef&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;colTitleBlkDefs&lt;/SPAN&gt;
		&lt;SPAN&gt;' If we are here, we have the title block of interest.&lt;/SPAN&gt;
		&lt;SPAN&gt;' Get the title block sketch and set it active&lt;/SPAN&gt;
		&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;objDrwSketch&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingSketch&lt;/SPAN&gt;
		&lt;SPAN&gt;Call&lt;/SPAN&gt; &lt;SPAN&gt;objTitleBlkDef&lt;/SPAN&gt;.&lt;SPAN&gt;Edit&lt;/SPAN&gt;(&lt;SPAN&gt;objDrwSketch&lt;/SPAN&gt;)
		&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;colTextBoxes&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;TextBoxes&lt;/SPAN&gt;
		&lt;SPAN&gt;colTextBoxes&lt;/SPAN&gt; = &lt;SPAN&gt;objDrwSketch&lt;/SPAN&gt;.&lt;SPAN&gt;TextBoxes&lt;/SPAN&gt;
		&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;objTextBox&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;TextBox&lt;/SPAN&gt;
			&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;objTextBox&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;colTextBoxes&lt;/SPAN&gt;
				
				&lt;SPAN&gt;Select&lt;/SPAN&gt; &lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;objTextBox&lt;/SPAN&gt;.&lt;SPAN&gt;Text&lt;/SPAN&gt;
				&lt;SPAN&gt;Case&lt;/SPAN&gt; &lt;SPAN&gt;"FCE"&lt;/SPAN&gt;, &lt;SPAN&gt;"MPO"&lt;/SPAN&gt;, &lt;SPAN&gt;"RMO"&lt;/SPAN&gt;, &lt;SPAN&gt;"BAR"&lt;/SPAN&gt;, &lt;SPAN&gt;"DGO"&lt;/SPAN&gt;, &lt;SPAN&gt;"HJD"&lt;/SPAN&gt;
				&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;objTextBox&lt;/SPAN&gt;.&lt;SPAN&gt;Text&lt;/SPAN&gt; &amp;lt;&amp;gt; &lt;SPAN&gt;UserFullName&lt;/SPAN&gt;								
                                &lt;U&gt;&lt;STRONG&gt;' I´M STRUGGLING WITH THIS NEXT LINE
				objTextBox.FormattedText = "&amp;lt;StyleOverride FontSize='0,25'&amp;gt;" &amp;amp; iProperties.Value("Summary", "Author") &amp;amp; "&amp;lt;/StyleOverride&amp;gt;"&lt;/STRONG&gt;&lt;/U&gt;
	
&lt;SPAN&gt;'					&lt;/SPAN&gt;&lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;For&lt;/SPAN&gt;
				&lt;SPAN&gt;Else&lt;/SPAN&gt;
					&lt;SPAN&gt;done&lt;/SPAN&gt;=1
					&lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;For&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;Select&lt;/SPAN&gt;
			
				&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;done&lt;/SPAN&gt; = 1
					&lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;For&lt;/SPAN&gt;
				&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
			&lt;SPAN&gt;Next&lt;/SPAN&gt; &lt;SPAN&gt;objTextBox&lt;/SPAN&gt;
		&lt;SPAN&gt;Call&lt;/SPAN&gt; &lt;SPAN&gt;objTitleBlkDef&lt;/SPAN&gt;.&lt;SPAN&gt;ExitEdit&lt;/SPAN&gt;(&lt;SPAN&gt;True&lt;/SPAN&gt;)
		&lt;SPAN&gt;Next&lt;/SPAN&gt; &lt;SPAN&gt;objTitleBlkDef&lt;/SPAN&gt;
		
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2020 18:20:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9730434#M58522</guid>
      <dc:creator>fce</dc:creator>
      <dc:date>2020-09-04T18:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Insert Text Parameter into a Text Field</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9731352#M58523</link>
      <description>&lt;P&gt;Hi! I am not an iLogic expert. But, I think you might approach the issue in a wrong way. Where did the following values originally come from? Where they from the Author iProperty? If yes, you should change the iProperty value and everything will update accordingly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"FCE", "MPO", "RMO", "BAR", "DGO", "HJD"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2020 17:03:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9731352#M58523</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2020-09-05T17:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Insert Text Parameter into a Text Field</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9731393#M58524</link>
      <description>&lt;P&gt;The values &lt;SPAN&gt;"FCE", "MPO", "RMO", "BAR", "DGO", "HJD"&amp;nbsp;&lt;/SPAN&gt;were manually written.&amp;nbsp;&lt;BR /&gt;I would like to eliminate this old method.&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2020 17:45:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9731393#M58524</guid>
      <dc:creator>fce</dc:creator>
      <dc:date>2020-09-05T17:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Insert Text Parameter into a Text Field</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9757817#M58525</link>
      <description>&lt;P&gt;Do you have any idea how to achieve it?&lt;/P&gt;</description>
      <pubDate>Sun, 20 Sep 2020 15:11:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9757817#M58525</guid>
      <dc:creator>fce</dc:creator>
      <dc:date>2020-09-20T15:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Insert Text Parameter into a Text Field</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9758896#M58526</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1755553"&gt;@fce&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How about this? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #808080;"&gt;'---------------------&lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;' Replace "FCE" , "MPO", "RMO", "BAR", "DGO", "HJD" with Author&lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'Is the active document a drawing document?&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ActiveDocument&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;kDrawingDocumentObject&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;

	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;objDoc&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ActiveDocument&lt;/SPAN&gt;
		  
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objDrawDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;DrawingDocument&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;objDrawDoc&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;objDoc&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;colTitleBlkDefs&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;TitleBlockDefinitions&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;colTitleBlkDefs&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;objDrawDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TitleBlockDefinitions&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTitleBlkDef&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;TitleBlockDefinition&lt;/SPAN&gt;

		&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTitleBlkDef&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;colTitleBlkDefs&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;' If we are here, we have the title block of interest.&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;' Get the title block sketch and set it active&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objDrwSketch&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;DrawingSketch&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Call&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTitleBlkDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Edit&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;objDrwSketch&lt;/SPAN&gt;)
		&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;colTextBoxes&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;TextBoxes&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;colTextBoxes&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;objDrwSketch&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TextBoxes&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTextBox&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;TextBox&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTextBox&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;colTextBoxes&lt;/SPAN&gt;
				
				&lt;SPAN style="color: #ff0000;"&gt;Select&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Case&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTextBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Text&lt;/SPAN&gt;
				&lt;SPAN style="color: #ff0000;"&gt;Case&lt;/SPAN&gt; &lt;SPAN style="color: #008080;"&gt;"FCE"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"MPO"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"RMO"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"BAR"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"DGO"&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"HJD"&lt;/SPAN&gt;
				&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTextBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Text&lt;/SPAN&gt; &amp;lt;&amp;gt; &lt;SPAN style="color: #800000;"&gt;UserFullName&lt;/SPAN&gt;								
                                &lt;SPAN style="color: #808080;"&gt;' I´M STRUGGLING WITH THIS NEXT LINE&lt;/SPAN&gt;
				&lt;SPAN style="color: #800000;"&gt;objTextBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;FormattedText&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"&amp;lt;Property Document='drawing' PropertySet='Inventor Summary Information' Property='Author' FormatID='' PropertyID=''&amp;gt;AUTHOR&amp;lt;/Property&amp;gt;"&lt;/SPAN&gt;
	
&lt;SPAN style="color: #808080;"&gt;'					Exit For&lt;/SPAN&gt;
				&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt;
					&lt;SPAN style="color: #800000;"&gt;done&lt;/SPAN&gt;=1
					&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt;
				&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
				&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Select&lt;/SPAN&gt;
			
				&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;done&lt;/SPAN&gt; = 1
					&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt;
				&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTextBox&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Call&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTitleBlkDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ExitEdit&lt;/SPAN&gt;(&lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;)
		&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;objTitleBlkDef&lt;/SPAN&gt;
		
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Sep 2020 12:52:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9758896#M58526</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-09-21T12:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Insert Text Parameter into a Text Field</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9758949#M58527</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN class="UserName lia-user-name lia-user-rank-Advisor lia-component-message-view-widget-author-username"&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5330176" target="_self"&gt;&lt;SPAN class=""&gt;JhoelForshav,&lt;/SPAN&gt;&lt;/A&gt;&lt;BR /&gt;thanks a lot, it works.&lt;BR /&gt;How would you add the style override like in the previous version of the rule?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="lia-message-author-with-avatar"&gt;&lt;PRE&gt;&lt;SPAN&gt;objTextBox.FormattedText = "&amp;lt;StyleOverride FontSize='0,25'&amp;gt;" &amp;amp; UserFullName &amp;amp; "&amp;lt;/StyleOverride&amp;gt;"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Advisor lia-component-message-view-widget-author-username"&gt;&lt;SPAN&gt;&amp;nbsp;Greetings,&lt;BR /&gt;&lt;/SPAN&gt;Francisco&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2020 13:03:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9758949#M58527</guid>
      <dc:creator>fce</dc:creator>
      <dc:date>2020-09-21T13:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Insert Text Parameter into a Text Field</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9758969#M58528</link>
      <description>&lt;P&gt;Glad it works &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1755553"&gt;@fce&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this to include the style override &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #800000;"&gt;objTextBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;FormattedText&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"&amp;lt;StyleOverride FontSize='0,25'&amp;gt; &amp;lt;Property Document='drawing' PropertySet='Inventor Summary Information' Property='Author' FormatID='' PropertyID=''&amp;gt;AUTHOR&amp;lt;/Property&amp;gt; &amp;lt;/StyleOverride&amp;gt;"&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Sep 2020 13:11:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9758969#M58528</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-09-21T13:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Insert Text Parameter into a Text Field</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9758974#M58529</link>
      <description>&lt;P&gt;Nice! That´s awesome, Thanks.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2020 13:14:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-insert-text-parameter-into-a-text-field/m-p/9758974#M58529</guid>
      <dc:creator>fce</dc:creator>
      <dc:date>2020-09-21T13:14:14Z</dc:date>
    </item>
  </channel>
</rss>

