<?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: Convert CC Part To Normal in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566623#M308426</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/113420"&gt;@-niels-﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRIKE&gt;I must be missing something...&amp;nbsp; When I open the part the VBA editor is disabled and unable to run any code and that's why I never offered one..&amp;nbsp; There's another article that Autodesk has with a reset code but was unable to use it either.&amp;nbsp; What am I missing?&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Never mind I guess I'm not awake yet..&amp;nbsp; I didn't see that you had to select the part in an assembly and run the code.. &amp;nbsp; My bad.. &amp;nbsp;&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://forums.autodesk.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Sep 2016 13:10:51 GMT</pubDate>
    <dc:creator>Mark.Lancaster</dc:creator>
    <dc:date>2016-09-16T13:10:51Z</dc:date>
    <item>
      <title>Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562273#M308407</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would/Could someone out there take the attached CC part and convert it to a normal part please. I've tried all the marco's/ilogics I could find but can't make it work.&lt;/P&gt;&lt;P&gt;Please covert to INV 2016 (no greater)&lt;/P&gt;&lt;P&gt;Thanks in advance!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 17:32:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562273#M308407</guid>
      <dc:creator>edonline69</dc:creator>
      <dc:date>2016-09-14T17:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562334#M308408</link>
      <description>&lt;P&gt;Did you try this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-forum/content-center-part-to-normal-ipt/td-p/6381907" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-forum/content-center-part-to-normal-ipt/td-p/6381907&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sub strip_CC()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oDoc As PartDocument&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oDoc = ThisApplication.ActiveDocument&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Check to see if it is not a true content center part . otherwise bail out&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If oDoc.ComponentDefinition.IsContentMember = False Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Enable all commands and set the subtype to a standard part.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oDoc.DisabledCommandTypes = 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oDoc.SubType = "{4D29B490-49B2-11D0-93C3-7E0706000000}"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Optionally clean up other Content Center related properties.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; On Error Resume Next&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oDoc.PropertySets.Item("Content Library Component Properties").Delete&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim DTPropSet As PropertySet&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set DTPropSet = oDoc.PropertySets.Item("Design Tracking Properties")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DTPropSet.Item("Catalog Web Link").Value = ""&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oDoc.Save&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End Sub&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 17:50:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562334#M308408</guid>
      <dc:creator>mdavis22569</dc:creator>
      <dc:date>2016-09-14T17:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562388#M308409</link>
      <description>&lt;P&gt;Yes I did.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 18:14:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562388#M308409</guid>
      <dc:creator>edonline69</dc:creator>
      <dc:date>2016-09-14T18:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562551#M308410</link>
      <description>&lt;P&gt;Its a split lock washer.. You can model it from scratch in under 30 seconds..&lt;/P&gt;
&lt;P&gt;It took longer to even ask your question here..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 19:36:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562551#M308410</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2016-09-14T19:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562594#M308411</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/85907"&gt;@mdavis22569&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sub strip_CC()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oDoc As PartDocument&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oDoc = ThisApplication.ActiveDocument&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Check to see if it is not a true content center part . otherwise bail out&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If oDoc.ComponentDefinition.IsContentMember = False Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Enable all commands and set the subtype to a standard part.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oDoc.DisabledCommandTypes = 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oDoc.SubType = "{4D29B490-49B2-11D0-93C3-7E0706000000}"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Optionally clean up other Content Center related properties.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; On Error Resume Next&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oDoc.PropertySets.Item("Content Library Component Properties").Delete&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim DTPropSet As PropertySet&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set DTPropSet = oDoc.PropertySets.Item("Design Tracking Properties")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DTPropSet.Item("Catalog Web Link").Value = ""&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oDoc.Save&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End Sub&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hi edonline69,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't have 2016 on this machine, so...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Is&amp;nbsp;the file&amp;nbsp;read only, or in a read only location when you're trying this?&lt;/LI&gt;
&lt;LI&gt;If you remove the "on error" line in the above code does a resulting error tell you something?&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;Can you use this iLogic?:&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Try
	ThisApplication.ActiveDocument.PropertySets.Item("Content Library Component Properties").Delete
	MessageBox.Show("KA-POW!" &amp;amp; vbLf &amp;amp; "Content Center Properties smashed!", "iLogic")
Catch
	MessageBox.Show("huh?" &amp;amp; vbLf &amp;amp; _
	"Something didn't work..." &amp;amp;vbLf &amp;amp; _
	"...file is read only maybe?" &amp;amp;vbLf &amp;amp; _
	"...file has no Content Center Properties, maybe?" &amp;amp;vbLf &amp;amp; _
	"...other?", "iLogic")
End Try&lt;/PRE&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;</description>
      <pubDate>Wed, 14 Sep 2016 19:53:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562594#M308411</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2016-09-14T19:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562629#M308412</link>
      <description>&lt;P&gt;Agreed, but this is a library part&amp;nbsp;constrained in hundred of sub-assemblies where I don't want re-constrain all over again.&lt;/P&gt;&lt;P&gt;I'm just trying to have the ability to change the stainless steel material to 18.8 ST ST that&amp;nbsp;appears in my part lists. Yes I can manually do it but If I can automate it the better.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 20:11:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562629#M308412</guid>
      <dc:creator>edonline69</dc:creator>
      <dc:date>2016-09-14T20:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562647#M308413</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/506790"&gt;@edonline69&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Agreed, but this is a &lt;STRONG&gt;library&lt;/STRONG&gt; part&amp;nbsp;...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hi edonline69&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you'll need to move the file out of the library path, then run the code and&amp;nbsp;save the file, then move the file back.&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>Wed, 14 Sep 2016 20:11:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562647#M308413</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2016-09-14T20:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562657#M308414</link>
      <description>&lt;P&gt;I can remove the read only feature no problem.&lt;/P&gt;&lt;P&gt;Even moved the file out of the project folder/content center folder.&lt;/P&gt;&lt;P&gt;I CAN'T EVEN add an illogic rule.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 20:13:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562657#M308414</guid>
      <dc:creator>edonline69</dc:creator>
      <dc:date>2016-09-14T20:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562687#M308415</link>
      <description>&lt;P&gt;yeah it won't even let me add ilogic or vba to it..&lt;/P&gt;
&lt;P&gt;get this when attempting to create an ilogic rule..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add iLogic Rule&lt;/P&gt;
&lt;P&gt;Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;System.Runtime.InteropServices.COMException (0x80004005): Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL))&lt;BR /&gt; at System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&amp;amp; msgData)&lt;BR /&gt; at Inventor.PropertySets.Add(String Name, Object InternalName)&lt;BR /&gt; at iLogic.RuleStorage.iPropertyForVault.FindOrCreateOurPropertySet()&lt;BR /&gt; at iLogic.RuleStorage.iPropertyForVault.MarkInUse()&lt;BR /&gt; at iLogic.InventorEvents.InventorEventsConnector.BeforeAddingRuleObject(Document doc)&lt;BR /&gt; at iLogic.RuleStorage.DocumentRuleListUtil.AddRule(Document doc, String ruleName, String ruleText, RuleOptions flagsEtc, Boolean isInteractive, RuleEvalErrorList ruleEvalErrors)&lt;BR /&gt; at iLogic.Commands.AddRuleCommand.AddRule(Document doc, String ruleName, String ruleText)&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 20:20:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562687#M308415</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2016-09-14T20:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562721#M308416</link>
      <description>&lt;P&gt;Yah me too.&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;I know I'm taking a shot in the dark to see if there is some one out there that can solve this mystery.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 20:28:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562721#M308416</guid>
      <dc:creator>edonline69</dc:creator>
      <dc:date>2016-09-14T20:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562726#M308417</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/506790"&gt;@edonline69&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I CAN'T EVEN add an illogic rule.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hi edonline69,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once the file is re-located to a read/write location,&amp;nbsp;try going&amp;nbsp;to the &lt;STRONG&gt;Manage&lt;/STRONG&gt; tab &amp;gt; &lt;STRONG&gt;iLogic&lt;/STRONG&gt; panel &amp;gt;&lt;STRONG&gt; Add Rule&lt;/STRONG&gt; button.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: I was slow on the reply, I now see mcgyvr's reply and yours as well. So I'm not sure if the Add Rule button works for you? Maybe not?&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>Wed, 14 Sep 2016 20:32:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562726#M308417</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2016-09-14T20:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562729#M308418</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_W&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/506790"&gt;@edonline69&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I CAN'T EVEN add an illogic rule.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hi edonline69,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once the file is re-located to a read/write location,&amp;nbsp;try going&amp;nbsp;to the &lt;STRONG&gt;Manage&lt;/STRONG&gt; tab &amp;gt; &lt;STRONG&gt;iLogic&lt;/STRONG&gt; panel &amp;gt;&lt;STRONG&gt; Add Rule&lt;/STRONG&gt; button.&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;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;90% of the ribbon is grayed out for me.. Including that..&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe all the other attempts have corrupted or "super locked" this one..&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2016 20:31:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562729#M308418</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2016-09-14T20:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562740#M308419</link>
      <description>&lt;P&gt;Hi mcgyvr,&lt;/P&gt;
&lt;P&gt;I'm looking at 2015. Maybe they've done something in 2016 and on that is protecting CC parts?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe we should back up and ask what the end goal is here? Why are we trying to convert this to a regular part? Maybe there's another approach? Maybe not.&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>Wed, 14 Sep 2016 20:36:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6562740#M308419</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2016-09-14T20:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6563898#M308420</link>
      <description>&lt;P&gt;Hi Curtis,&lt;/P&gt;&lt;P&gt;This end goal is to be able to change the assign material (Steel, Mild) to a different one that is actually use&amp;nbsp;(18.8 ST ST) and to show up in my BOM parts list column.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 12:16:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6563898#M308420</guid>
      <dc:creator>edonline69</dc:creator>
      <dc:date>2016-09-15T12:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6563915#M308421</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/506790"&gt;@edonline69﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you just save the content center part to a folder location outside of the location which is defined for CC then you can change anything that you want.&amp;nbsp; However in the background the content center information is still attached and its not fully defined as a normal part.&amp;nbsp; If you don't care about that then you will be fine.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Sep 2016 12:23:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6563915#M308421</guid>
      <dc:creator>Mark.Lancaster</dc:creator>
      <dc:date>2016-09-15T12:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566511#M308422</link>
      <description>&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;I already tried that, but to make sure I wasn't crazy, I copied the file to my desktop, used the default ipj and opened the file and could not edit the material properties.&lt;/P&gt;&lt;P&gt;I invite you to take the part above and see if you have any luck.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 12:22:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566511#M308422</guid>
      <dc:creator>edonline69</dc:creator>
      <dc:date>2016-09-16T12:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566566#M308423</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/506790"&gt;@edonline69﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem is (as someone else pointed out)..&amp;nbsp; This part is locked and its not even acting like a normal Inventor content center component.&amp;nbsp; If I open from CC or place a CC component in an assembly, the Inventor ribbon for my CC component is still enable and I can make changes to it and the material..&amp;nbsp; However I get the message this is a content center component and editing it is not possible.&amp;nbsp; If I do a save-as and place it in another directory I can change it without any issues.&amp;nbsp;&amp;nbsp; So your CC part is not acting like a normal CC part..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me ask you this..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp; Did you create this part and publish it to content center?&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp; Did you just copy a standard from the read only library over to your read/write library and modify it to meet your standard?&amp;nbsp; If you did which washer family did you do this from?&lt;/P&gt;
&lt;P&gt;3.&amp;nbsp; Did you get this from somewhere else?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 12:38:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566566#M308423</guid>
      <dc:creator>Mark.Lancaster</dc:creator>
      <dc:date>2016-09-16T12:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566590#M308424</link>
      <description>&lt;P&gt;Therefore, in your expert opinion there is no way to "magically" convert this part into a normal part, where all my constraints will be retained in hundreds of my sub assemblies?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 12:47:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566590#M308424</guid>
      <dc:creator>edonline69</dc:creator>
      <dc:date>2016-09-16T12:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566608#M308425</link>
      <description>&lt;P&gt;Did not really read the topic, but is the problem similar to this one?&lt;/P&gt;
&lt;P&gt;&lt;A href="http://forums.autodesk.com/t5/inventor-forum/document-settings-not-available/td-p/6536435" target="_blank"&gt;http://forums.autodesk.com/t5/inventor-forum/document-settings-not-available/td-p/6536435&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used the same "normalize" code from the download i linked to in that topic and it worked for your part....&lt;/P&gt;
&lt;P&gt;(see attached)&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 12:55:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566608#M308425</guid>
      <dc:creator>-niels-</dc:creator>
      <dc:date>2016-09-16T12:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Convert CC Part To Normal</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566623#M308426</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/113420"&gt;@-niels-﻿&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRIKE&gt;I must be missing something...&amp;nbsp; When I open the part the VBA editor is disabled and unable to run any code and that's why I never offered one..&amp;nbsp; There's another article that Autodesk has with a reset code but was unable to use it either.&amp;nbsp; What am I missing?&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Never mind I guess I'm not awake yet..&amp;nbsp; I didn't see that you had to select the part in an assembly and run the code.. &amp;nbsp; My bad.. &amp;nbsp;&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://forums.autodesk.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2016 13:10:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/convert-cc-part-to-normal/m-p/6566623#M308426</guid>
      <dc:creator>Mark.Lancaster</dc:creator>
      <dc:date>2016-09-16T13:10:51Z</dc:date>
    </item>
  </channel>
</rss>

