<?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 configuration problem in inventor 2016? in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006381#M113291</link>
    <description>&lt;P&gt;This is more of an Excel question, so an Excel forum might be more responsive on this.&lt;/P&gt;
&lt;P&gt;However, according to this thread it should work but you need to set the security settings in Excel accordingly:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.excelforum.com/excel-programming-vba-macros/356856-importing-bas-files.html" target="_self"&gt;http://www.excelforum.com/excel-programming-vba-macros/356856-importing-bas-files.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Jan 2016 11:18:06 GMT</pubDate>
    <dc:creator>adam.nagy</dc:creator>
    <dc:date>2016-01-26T11:18:06Z</dc:date>
    <item>
      <title>ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5982851#M113280</link>
      <description>&lt;P&gt;hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;we have just installed inventor 2016 but the rule who created my partist dont work now, but work great in inventor 2015, the problem is&amp;nbsp;do not keep the vb macro&amp;nbsp;in my excel sheet???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&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;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2016 16:46:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5982851#M113280</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-11T16:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5983237#M113281</link>
      <description>&lt;P&gt;Can you post the code in the iLogic rule?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you update to a newer version of Excel, also?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Brandon&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2016 18:57:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5983237#M113281</guid>
      <dc:creator>BrandonBG</dc:creator>
      <dc:date>2016-01-11T18:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5983245#M113282</link>
      <description>&lt;P&gt;no i have a same version of excel than before, excel 97-2003!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2016 19:00:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5983245#M113282</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-11T19:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5983295#M113283</link>
      <description>&lt;P&gt;the rule:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'define oDoc&lt;BR /&gt;oDoc = ThisDoc.Document&lt;/P&gt;&lt;P&gt;'specify the drawing sheet&lt;BR /&gt;oSheet = oDoc.Sheets("Sheet:1") ' sheet by name&lt;BR /&gt;'oSheet = oDoc.Sheets(1) ' first sheet&lt;/P&gt;&lt;P&gt;' say there is a Partslist on the sheet.&lt;BR /&gt;oPartslist = oSheet.PartsLists(1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;' create a new NameValueMap object&lt;BR /&gt;oOptions = ThisApplication.TransientObjects.CreateNameValueMap&lt;/P&gt;&lt;P&gt;'specify an existing template file&lt;BR /&gt;'to use For formatting colors, fonts, etc&lt;BR /&gt;oOptions.Value("Template") = "I:\INVENTOR\INVENTOR_2016\CARTOUCHE\LISTE_DE_COUPE_2016.xls"&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;'specify the columns to export&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;oOptions.Value("ExportedColumns") = "COMPOSANTE;STOCK NUMBER;PI2;LONGUEUR;LARGEUR;QTY;QTE TOTALE;ÉPAISSEUR;CHANTS;DETAIL;COMMANDE;L;M;VEINAGE;USINAGE;NESTING;POIDS"&lt;/P&gt;&lt;P&gt;'specify the start cell&lt;BR /&gt;oOptions.Value("StartingCell") = "T2"&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;'specify the XLS tab name&lt;BR /&gt;'here the file name is used&lt;BR /&gt;oOptions.Value("TableName") = ThisDoc.FileName(False) 'without extension&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'choose to autofit the column width in the xls file&lt;BR /&gt;oOptions.Value("AutoFitColumnWidth") = False&lt;/P&gt;&lt;P&gt;'choose to apply cell formatting in the xls file&lt;BR /&gt;oOptions.Value("ApplyCellFormatting") = True&lt;/P&gt;&lt;P&gt;DOSSIER = ThisDoc.Path&lt;BR /&gt;POSITION1 = InStrRev(DOSSIER, "\")&lt;BR /&gt;POSITION2 = Right(DOSSIER, Len(DOSSIER) - POSITION1)&lt;/P&gt;&lt;P&gt;myFile2 = "I:\DOCUMENTS\ARTICLES\" &amp;amp; POSITION2 &amp;amp; "\" &amp;amp; POSITION2 &amp;amp; "_STANDARD" &amp;amp; ".xls"&lt;BR /&gt;If(System.IO.File.Exists(myFile2)) Then&lt;BR /&gt;Kill (myFile2)&lt;BR /&gt;End If&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;' export the Partslist to Excel with options&lt;BR /&gt;oPartslist.Export("I:\DOCUMENTS\ARTICLES\" &amp;amp; POSITION2 &amp;amp; "\" &amp;amp; POSITION2 &amp;amp; "_STANDARD" &amp;amp; ".xls", _&lt;BR /&gt;PartsListFileFormatEnum.kMicrosoftExcel, oOptions)&lt;/P&gt;&lt;P&gt;'define Excel Application object&lt;BR /&gt;excelApp = CreateObject("Excel.Application")&lt;BR /&gt;'set Excel to run visibly&lt;BR /&gt;'change to false if you want to run it invisibly&lt;BR /&gt;excelApp.Visible = True&lt;BR /&gt;'open the workbook&lt;BR /&gt;wb = excelApp.Workbooks.Open("I:\DOCUMENTS\ARTICLES\" &amp;amp; POSITION2 &amp;amp; "\" &amp;amp; POSITION2 &amp;amp; "_STANDARD" &amp;amp; ".xls")&lt;/P&gt;&lt;P&gt;'suppress prompts (such as the compatibility checker)&lt;BR /&gt;excelApp.DisplayAlerts = False&lt;BR /&gt;'select the original exported sheet&lt;BR /&gt;excelApp.Sheets(ThisDoc.FileName(False)).Select&lt;BR /&gt;'cut a column&lt;BR /&gt;excelApp.Columns("S:AM").Cut&lt;BR /&gt;'select sheet to paste to&lt;BR /&gt;excelApp.Sheets("EXPORTATION").Select&lt;BR /&gt;'select range to paste to&lt;BR /&gt;excelApp.Range("A1").Insert&lt;BR /&gt;excelApp.Range("T2")=iProperties.Value("Summary", "Author")&lt;BR /&gt;excelApp.Sheets(ThisDoc.FileName(False)).Select&lt;BR /&gt;excelApp.Range("A3").Select&lt;BR /&gt;'save the workbook&lt;BR /&gt;wb.Save&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2016 19:19:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5983295#M113283</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-11T19:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5991010#M113284</link>
      <description>&lt;P&gt;anybody can help me?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 15:39:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5991010#M113284</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-15T15:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5991060#M113285</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It usually helps if you can narrow things down on your side by removing code unnecessary for reproducing the issue and also test in &lt;STRONG&gt;VBA&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;If people see that it can be reproduced with a couple of lines of &lt;STRONG&gt;VBA&lt;/STRONG&gt; code and it's not &lt;STRONG&gt;iLogic&lt;/STRONG&gt; specific, more of them&amp;nbsp;might chip in &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You only need an &lt;STRONG&gt;xls&lt;/STRONG&gt; file with a macro in it and the following &lt;STRONG&gt;VBA&lt;/STRONG&gt; code to reproduce the behaviour:&lt;/P&gt;
&lt;PRE&gt;Sub SavePartsListUsingXlsTemplate()
  Dim oDoc As DrawingDocument
  Set oDoc = ThisApplication.ActiveDocument
  
  Dim oSheet As Sheet
  Set oSheet = oDoc.ActiveSheet
  
  Dim oPartslist As PartsList
  Set oPartslist = oSheet.PartsLists(1)

  Dim oOptions As NameValueMap
  Set oOptions = ThisApplication.TransientObjects.CreateNameValueMap
  
  ' This template is in 97-2003 format and
  ' contains a macro
  oOptions.value("Template") = "C:\temp\Excel_97-2003_with_macro.xls"
  
  ' In case of Inventor 2016 this saves the file in xlsx format
  ' which cannot contain macros, so the macro gets removed
  Call oPartslist.Export( _
    "C:\temp\Excel_97-2003_with_macro_export.xls", _
    kMicrosoftExcel, oOptions)
End Sub&lt;/PRE&gt;
&lt;P&gt;It seems like &lt;STRONG&gt;Inventor 2015&lt;/STRONG&gt; saves the created file in old &lt;STRONG&gt;xls&lt;/STRONG&gt; format which can contain macros whereas &lt;STRONG&gt;2016&lt;/STRONG&gt; saves it in the new &lt;STRONG&gt;xlsx&lt;/STRONG&gt; format&amp;nbsp;(even though the file will have &lt;STRONG&gt;xls&lt;/STRONG&gt; extension).&lt;/P&gt;
&lt;P&gt;You can easily verify that the file saved by &lt;STRONG&gt;Inventor 2016&lt;/STRONG&gt; is an &lt;STRONG&gt;xlsx&lt;/STRONG&gt; by changing the created &lt;STRONG&gt;xls&lt;/STRONG&gt; file's extension to &lt;STRONG&gt;zip&amp;nbsp;&lt;/STRONG&gt;(because the new &lt;STRONG&gt;xlsx&lt;/STRONG&gt; file format is actually a &lt;STRONG&gt;zip&lt;/STRONG&gt;) and then try to unzip it.&lt;/P&gt;
&lt;P&gt;The new &lt;STRONG&gt;xlsx&lt;/STRONG&gt; does not support macros, only &lt;STRONG&gt;xlsm&lt;/STRONG&gt; does, but that's not the format &lt;STRONG&gt;Inventor 2016&lt;/STRONG&gt; is saving to, and it does not seem like you can change that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I cannot think of a workaround other than using the &lt;STRONG&gt;Excel API&lt;/STRONG&gt; directly to create the &lt;STRONG&gt;xls&lt;/STRONG&gt; file and fill it up with data yourself, but I'll ask around.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 16:02:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5991060#M113285</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2016-01-15T16:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5993567#M113286</link>
      <description>&lt;P&gt;thanks for your reply Adam &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i change my extension file&amp;nbsp;to xlsm and replace oPartlist.Extport("myFile.xlsm") PartsListFileFormatEnum.KMicrosoftExcel, oOptions)&amp;nbsp; by Call oPartslist.Export("myFile.xlsm") KMicrosoftExcel, oOptions) but dont worl again &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 11:43:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5993567#M113286</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-18T11:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5997512#M113287</link>
      <description>&lt;P&gt;That's what I was trying to say too &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;but that's not the format&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Inventor 2016&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;is saving to, and it &lt;STRONG&gt;does not seem like&lt;/STRONG&gt; you can change that.&lt;/SPAN&gt;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's why I said that I think probably the only solution is to create the Excel file directly using Excel API.&lt;/P&gt;
&lt;P&gt;(instead of using &lt;SPAN&gt;oPartslist.Export&lt;/SPAN&gt;)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for the bad news.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2016 14:42:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5997512#M113287</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2016-01-20T14:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5997521#M113288</link>
      <description>&lt;P&gt;ok thanks for your help Adam &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2016 14:44:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5997521#M113288</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-20T14:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5997774#M113289</link>
      <description>&lt;P&gt;anybody know the excel code to insert a .bas file in excel?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;excelApp.Workbooks.VBProject.VBComponents.Import ("I:\INVENTOR\INVENTOR_2016\CARTOUCHE\Module3.bas")&amp;nbsp;&amp;nbsp; ???&lt;/STRONG&gt;&lt;/P&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;&lt;/P&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2016 16:53:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/5997774#M113289</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-20T16:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006378#M113290</link>
      <description>&lt;P&gt;anybody know if is possible ???&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 11:11:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006378#M113290</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-26T11:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006381#M113291</link>
      <description>&lt;P&gt;This is more of an Excel question, so an Excel forum might be more responsive on this.&lt;/P&gt;
&lt;P&gt;However, according to this thread it should work but you need to set the security settings in Excel accordingly:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.excelforum.com/excel-programming-vba-macros/356856-importing-bas-files.html" target="_self"&gt;http://www.excelforum.com/excel-programming-vba-macros/356856-importing-bas-files.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 11:18:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006381#M113291</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2016-01-26T11:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006387#M113292</link>
      <description>&lt;P&gt;Thanks again for your help Adam &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And really sorry for my horrible english &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;do you think it's possible to make a code same to that in ilogic?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 11:23:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006387#M113292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-26T11:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006908#M113293</link>
      <description>&lt;P&gt;There is nothing wrong with your English! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a thread with a sample where&amp;nbsp;Excel API is used from iLogic:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/excel-optimization-using-ilogic-and-solver/td-p/5142990" target="_self"&gt;https://forums.autodesk.com/t5/inventor-customization/excel-optimization-using-ilogic-and-solver/td-p/5142990&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 15:37:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006908#M113293</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2016-01-26T15:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006915#M113294</link>
      <description>&lt;P&gt;ok&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try that this week!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 15:40:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6006915#M113294</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-26T15:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6029506#M113295</link>
      <description>&lt;P&gt;hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i try and make this rule with your&amp;nbsp;link and now&amp;nbsp;keep all my Vb Macro in my xlsm file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;____________________________________________________________________________&lt;/P&gt;&lt;P&gt;AddReference "Microsoft.Office.Interop.Excel"&lt;BR /&gt;Imports Microsoft.Office.Interop.Excel&lt;/P&gt;&lt;P&gt;&amp;nbsp;Dim oExcelApp As New Microsoft.Office.Interop.Excel.Application&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'make Excel visible (not required - for debugging only)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Visible = False&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'opem some Excel file&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.workbooks.Open("I:\INVENTOR\INVENTOR_2016\CARTOUCHE\LISTE_DE_COUPE_2016.xlsm")&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'reference to the active workbook&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WB = oExcelApp.activeWorkbook&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Reference to the active worksheet by its name&lt;BR /&gt;&amp;nbsp;&amp;nbsp; 'WS = WB.Sheets("EXPORTATION")&lt;BR /&gt;&amp;nbsp;'Reference to the specified excel cell (Range object). Row = 3, column = 2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'R = WS.Cells(3, 2)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'do something - e.g., put some value&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'R.Value = oExcelApp.WorksheetFunction.PI()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;DOSSIER = ThisDoc.Path&lt;BR /&gt;POSITION1 = InStrRev(DOSSIER, "\")&lt;BR /&gt;POSITION2 = Right(DOSSIER, Len(DOSSIER) - POSITION1)&lt;/P&gt;&lt;P&gt;myFile2 = "I:\DOCUMENTS\ARTICLES\" &amp;amp; POSITION2 &amp;amp; "\" &amp;amp; POSITION2 &amp;amp; "_STANDARD" &amp;amp; ".xlsm"&lt;BR /&gt;If(System.IO.File.Exists(myFile2)) Then&lt;BR /&gt;Kill (myFile2)&lt;BR /&gt;End If&lt;BR /&gt;WB.SaveAs (myFile2)&lt;/P&gt;&lt;P&gt;______________________________________________________________________&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any other way to take the NameValueMap of the partlist&amp;nbsp; and put to&amp;nbsp;the open Excel sheet?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 17:15:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6029506#M113295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-08T17:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6029860#M113296</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This should help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://adndevblog.typepad.com/manufacturing/2016/02/use-excel-api-to-export-partslist-content.html" target="_self"&gt;http://adndevblog.typepad.com/manufacturing/2016/02/use-excel-api-to-export-partslist-content.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 20:02:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6029860#M113296</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2016-02-08T20:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6030690#M113297</link>
      <description>&lt;P&gt;thank you very much Adam &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 10:23:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6030690#M113297</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-09T10:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6030722#M113298</link>
      <description>&lt;P&gt;it's possible to change the stratingcell and sheet&amp;nbsp;in EXCEL in this ilogic rule?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 10:58:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6030722#M113298</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-09T10:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: ilogic configuration problem in inventor 2016?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6030732#M113299</link>
      <description>&lt;P&gt;Where the data is written is controlled by the iRow and iCol variables' value.&lt;/P&gt;
&lt;P&gt;So whenever in the code they are being set to 1, you would have to set them to a different starting value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have updated the blog post to use iRowStart and iColStart which you can set to change where the table should start on the sheet.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 10:55:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-configuration-problem-in-inventor-2016/m-p/6030732#M113299</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2016-02-09T10:55:41Z</dc:date>
    </item>
  </channel>
</rss>

