<?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>Thema "Betreff: iLogic – Auswahl von Arbeitspunkten für CSV Export" in Inventor - Deutsches Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-deutsches-forum/ilogic-auswahl-von-arbeitspunkten-fur-csv-export/m-p/10761283#M6412</link>
    <description>&lt;P&gt;Hallo&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11371375"&gt;@r.claus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;poste das bitte mal &lt;A href="https://forums.autodesk.com/t5/inventor-ilogic-api-vba-forum/ilogic-selection-of-workpoints-for-csv-export/td-p/10750168" target="_blank" rel="noopener"&gt;hier&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Nov 2021 12:26:14 GMT</pubDate>
    <dc:creator>S_May</dc:creator>
    <dc:date>2021-11-17T12:26:14Z</dc:date>
    <item>
      <title>iLogic – Auswahl von Arbeitspunkten für CSV Export</title>
      <link>https://forums.autodesk.com/t5/inventor-deutsches-forum/ilogic-auswahl-von-arbeitspunkten-fur-csv-export/m-p/10750009#M6411</link>
      <description>&lt;P&gt;Hallo zusammen, ich nutze Inventor und iLogic noch nicht sehr lange und wäre sehr dankbar für eure Hilfe. Für den Export von Arbeitspunkten konnte ich die untenstehende Regel erstellen. Die Arbeitspunkte werden durch Rechteckige Anordnungen eingefügt. Nun exportiert die jetzige Regel immer alle sichtbare Arbeitspunkte.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Nun möchte ich jedoch nur bestimmte Arbeitspunkte exportieren, die mit einem bestimmten Feature, z.B. „Rechteckige Anordnung Workpoints1“ erstellt wurden. Zu beachten ist auch, dass die Anzahl der Arbeitspunkte immer unterschiedlich ist, da mit einem dynamischen Modell gearbeitet wird. Über die Namen der Arbeitspunkte kann also nicht unterschieden werden. Auch wäre es denkbar Arbeitspunkte innerhalb eines Features auf unsichtbar zu setzen, um somit differenzieren zu können, welche Arbeitspunkte exportiert werden. Auch können andere Möglichkeiten zur Auswahl der Arbeitspunkte, z.B. Ordner, vorgeschlagen werden.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Daneben soll die CSV-Datei immer dieselbe Größe haben. Also z.B. 100 Spalten, auch wenn es nur 60 Arbeitspunkte gibt. Ist das möglich? Die Leerstellen können dann mit einem vorgegebenen Wert, z.B. „f“ befüllt werden.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Vielen Dank für eure Unterstützung.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #808080;"&gt;'Export Workpoints Koordinaten&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;partDoc&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;partDef&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;partDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;";"&lt;/SPAN&gt; &lt;SPAN style="color: #808080;"&gt;'or vbTab&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;filePath&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;fileName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Integer&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Zuweisung vom Pfad und Namen der Datei&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;filePath&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Path&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;"\"&lt;/SPAN&gt; 										
&lt;SPAN style="color: #800000;"&gt;fileName&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"CSV Name"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;" "&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #0000ff;"&gt;Auftragsnummer&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;".csv"&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Erstellung der CSV Datei - Für jede Koordinate einen Block&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;System&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;IO&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;File&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateText&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;filePath&lt;/SPAN&gt; + &lt;SPAN style="color: #800000;"&gt;fileName&lt;/SPAN&gt;)

		&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Name"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
	
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;

	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Visible&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Name&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
		&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"f"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&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;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Auftragsnummer"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
		&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Kunde"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
		&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Ausfuehrung"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)		
	
	&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;vbCrLf&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;"X"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)		
			
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;
			
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Visible&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Round&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Point&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;X&lt;/SPAN&gt; * 10,1) &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
		&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"f"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&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;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;Auftragsnummer&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
		&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;Kunde&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
		&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;Ausführung&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
				
	&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;vbCrLf&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;"Y"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
						
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;
			
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Visible&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Round&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Point&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Y&lt;/SPAN&gt; * 10 -5,1) &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
		&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"f"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&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;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;vbCrLf&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;"Z"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)

&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Visible&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Round&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;partDef&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;WorkPoints&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Point&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Z&lt;/SPAN&gt; * 10 -100,1) &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&lt;/SPAN&gt;)
		&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Write&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"f"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #800000;"&gt;dlmtr&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;expFile&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Close&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Öffnen der erstellten CSV Datei&lt;/SPAN&gt;
&lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Launch&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;filePath&lt;/SPAN&gt; + &lt;SPAN style="color: #800000;"&gt;fileName&lt;/SPAN&gt;)&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Nov 2021 09:02:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-deutsches-forum/ilogic-auswahl-von-arbeitspunkten-fur-csv-export/m-p/10750009#M6411</guid>
      <dc:creator>r.claus</dc:creator>
      <dc:date>2021-11-11T09:02:19Z</dc:date>
    </item>
    <item>
      <title>Betreff: iLogic – Auswahl von Arbeitspunkten für CSV Export</title>
      <link>https://forums.autodesk.com/t5/inventor-deutsches-forum/ilogic-auswahl-von-arbeitspunkten-fur-csv-export/m-p/10761283#M6412</link>
      <description>&lt;P&gt;Hallo&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11371375"&gt;@r.claus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;poste das bitte mal &lt;A href="https://forums.autodesk.com/t5/inventor-ilogic-api-vba-forum/ilogic-selection-of-workpoints-for-csv-export/td-p/10750168" target="_blank" rel="noopener"&gt;hier&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 12:26:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-deutsches-forum/ilogic-auswahl-von-arbeitspunkten-fur-csv-export/m-p/10761283#M6412</guid>
      <dc:creator>S_May</dc:creator>
      <dc:date>2021-11-17T12:26:14Z</dc:date>
    </item>
    <item>
      <title>Betreff: iLogic – Auswahl von Arbeitspunkten für CSV Export</title>
      <link>https://forums.autodesk.com/t5/inventor-deutsches-forum/ilogic-auswahl-von-arbeitspunkten-fur-csv-export/m-p/10762986#M6413</link>
      <description>&lt;P&gt;Danke,&lt;BR /&gt;habe ich bereits gemacht.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 09:33:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-deutsches-forum/ilogic-auswahl-von-arbeitspunkten-fur-csv-export/m-p/10762986#M6413</guid>
      <dc:creator>r.claus</dc:creator>
      <dc:date>2021-11-17T09:33:12Z</dc:date>
    </item>
  </channel>
</rss>

