<?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: Save then Check In PDF in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660780#M94556</link>
    <description>&lt;P&gt;I was worried this wouldn't show up in the Vault Thin Client as&amp;nbsp; a standalone PDF being an attachment to the drawing but it does!&lt;BR /&gt;&lt;BR /&gt;I'm working on tweaking this to automatically find and add the PDF that was just exported in an earlier sub. But this will get me there. Thanks!&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jan 2018 13:52:04 GMT</pubDate>
    <dc:creator>tkennedy26</dc:creator>
    <dc:date>2018-01-03T13:52:04Z</dc:date>
    <item>
      <title>Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7658606#M94549</link>
      <description>&lt;P&gt;We are now using our Vault to store all of our PDFs, where this use to be a shared drive. How can I check in a PDF after it is created? "VaultCheckInTop" Only gets my drawing and model, doesn't recognize the PDF. I've posted my entire code but all I need to do is Check In the PDF. Any ideas?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;Dim invApp As Inventor.Application = ThisApplication
Dim doc As Document = ThisApplication.ActiveDocument
Dim PDFAddIn As Inventor.ApplicationAddIn
Dim oContext As TranslationContext
Dim oOptions As NameValueMap
Dim pdfDataMedium As DataMedium
		
		CurFileName = doc.FullFileName
  		'defines backslash As the subdirectory separator
		Dim strCharSep As String = System.IO.Path.DirectorySeparatorChar
		'find the postion of the last backslash in the path
		FNamePos = InStrRev(CurFileName, "\", -1)   
		'get the file name with the file extension
		Name = Right(CurFileName, Len(CurFileName) - FNamePos)
		'get the file name (without extension)
		ShortName = Left(Name, Len(Name) - 4)
		'get the path of the folder containing the file
		Folder_Location = Left(CurFileName, Len(CurFileName) - Len(Name))
		

        'start pdf addin. save current file as pdf.
        PDFAddIn = invApp.ApplicationAddIns.ItemById("{0AC6FD96-2F4D-42CE-8BE0-8AEA580399E4}")

        oContext = invApp.TransientObjects.CreateTranslationContext
        oContext.Type = IOMechanismEnum.kFileBrowseIOMechanism
        oOptions = invApp.TransientObjects.CreateNameValueMap
        pdfDataMedium = invApp.TransientObjects.CreateDataMedium

        If PDFAddIn.HasSaveCopyAsOptions(pdfDataMedium, oContext, oOptions) Then
            oOptions.Value("Remove_Line_Weights") = 1
            oOptions.Value("Vector_Resolution") = 400
            oOptions.Value("Sheet_Range") = Inventor.PrintRangeEnum.kPrintAllSheets
        End If

        pdfDataMedium.FileName = Folder_Location &amp;amp; "\" &amp;amp; doc.DisplayName &amp;amp; ".PDF"
        Call PDFAddIn.SaveCopyAs(doc, oContext, oOptions, pdfDataMedium)
        'set text box to complete notification
		MessageBox.Show("PDF has been saved", "PDF Saved")
		
		ThisApplication.CommandManager.ControlDefinitions.Item("VaultCheckintop").Execute2(False)'Check In&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Jan 2018 14:47:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7658606#M94549</guid>
      <dc:creator>tkennedy26</dc:creator>
      <dc:date>2018-01-02T14:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7658916#M94550</link>
      <description>&lt;P&gt;You could attach the pdf to the drawing and then check the drawing in.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a rule here that does this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/AlexFielder/iLogic/blob/master/AddRemove/embed%20inventor%20drawings.iLogicVb" target="_blank"&gt;https://github.com/AlexFielder/iLogic/blob/master/AddRemove/embed%20inventor%20drawings.iLogicVb&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jan 2018 16:56:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7658916#M94550</guid>
      <dc:creator>AlexFielder</dc:creator>
      <dc:date>2018-01-02T16:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7659309#M94551</link>
      <description>&lt;P&gt;Hoi better use the add it check in of vault selves:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Dim&amp;nbsp;results&amp;nbsp;As&amp;nbsp;VDF.Vault.Results.LogInResult&amp;nbsp;= VDF.Vault.Library.ConnectionManager.LogIn(My.Settings.Server,&amp;nbsp;My.Settings.DataBase, Vcred.UserName,My.Settings.Password, VDF.Vault.Currency.Connections.AuthenticationFlags.Standard,&amp;nbsp;Nothing)

Dim&amp;nbsp;connection&amp;nbsp;AsVDF.Vault.Currency.Connections.Connection&amp;nbsp;= results.Connection

Dim&amp;nbsp;lfolderID&amp;nbsp;As&amp;nbsp;Long&amp;nbsp;= VaultfolderId

Dim&amp;nbsp;folder&amp;nbsp;As&amp;nbsp;Autodesk.Connectivity.WebServices.Folder&amp;nbsp;= serviceManager.DocumentService.GetFolderById(lfolderID)

Dim&amp;nbsp;myFolder&amp;nbsp;As&amp;nbsp;VDF.Vault.Currency.Entities.Folder&amp;nbsp;=&amp;nbsp;NewVDF.Vault.Currency.Entities.Folder(connection, folder)

Dim&amp;nbsp;myFileIterationNewFile&amp;nbsp;AsVDF.Vault.Currency.Entities.FileIteration&amp;nbsp;=&amp;nbsp;Nothing

Using&amp;nbsp;fileStream&amp;nbsp;As&amp;nbsp;Stream&amp;nbsp;=&amp;nbsp;New&amp;nbsp;FileStream(filePath,FileMode.Open,&amp;nbsp;FileAccess.Read)

' Add the file to the vault

myFileIterationNewFile = connection.FileManager.AddFile(myFolder,Path.GetFileName(filePath),&amp;nbsp;Path.GetFileName(filePath),DateTime.Now,&amp;nbsp;Nothing,&amp;nbsp;Nothing,&amp;nbsp;FileClassification.None,False, fileStream)

End&amp;nbsp;Using

'Logout

VDF.Vault.Library.ConnectionManager.LogOut(connection)

UploadFile = myFileIterationNewFile.EntityMasterId

&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Jan 2018 20:28:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7659309#M94551</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-02T20:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660495#M94552</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/473476"&gt;@bradeneuropeArthur&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's an interesting snippet you shared, it doesn't look like it would run in iLogic without a reference to the VDF .dll though?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: FWIW I mean the .dlls listed here:&amp;nbsp;&lt;A href="http://help.autodesk.com/view/VAULT/Help/ENU/?guid=GUID-959DDEDA-0FB5-4C93-8685-970CC0364498" target="_blank"&gt;http://help.autodesk.com/view/VAULT/Help/ENU/?guid=GUID-959DDEDA-0FB5-4C93-8685-970CC0364498&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 11:17:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660495#M94552</guid>
      <dc:creator>AlexFielder</dc:creator>
      <dc:date>2018-01-03T11:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660709#M94553</link>
      <description>&lt;P&gt;This is a snippet from VB.net add in for inventor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because of these issues I do not prefer I-logic.&lt;/P&gt;&lt;P&gt;vb.net has more flexibility regarding dll links etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could prepare a vb.net add very easy, but with I-logic this is very hard.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let me know if I can help you further with vb.net.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can add a reference in illogic to.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 13:19:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660709#M94553</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-03T13:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660756#M94554</link>
      <description>&lt;P&gt;I completely agree with you about the difficulty in doing this with iLogic and with my last reply was hoping to tease out of you that this was NOT in fact** possible using iLogic - something you have now done. &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I guess it's left to&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4230505"&gt;@tkennedy26&lt;/a&gt;&amp;nbsp;to come back to us as to whether he wants/needs an addin created or could use my rule to attach the created pdf file and then check the files in.&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;** technically, &lt;STRONG&gt;if&lt;/STRONG&gt; the Vault dlls I mentioned were placed in the GAC (I'm assuming they aren't as I haven't checked today) or manually copied to the "&lt;SPAN&gt;C:\Program Files\Autodesk\Inventor [Version]\Bin\iLogicAdd" folder&lt;/SPAN&gt;, one could according to &lt;A href="https://knowledge.autodesk.com/support/inventor-products/learn-explore/caas/CloudHelp/cloudhelp/2014/ENU/Inventor/files/GUID-8DF6F761-1634-4D26-B13A-58AF275FD6F8-htm.html" target="_blank"&gt;this post&lt;/A&gt;&amp;nbsp;use the addreference mechanic to reference those dlls in an iLogic rule.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 13:44:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660756#M94554</guid>
      <dc:creator>AlexFielder</dc:creator>
      <dc:date>2018-01-03T13:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660771#M94555</link>
      <description>&lt;P&gt;I was trying to get into writing this into VB.Net to use the Vault options like you said. But something that I think is unrelated is going on so I'm trying to work through that. I'm looking through programming forums to try and figure this out but after I write some code with my references I get this error (see attached) I'm not that great at this stuff but I'm pretty sure this is a problem on my machine. I'll have access to another machine on Thursday so I'm hoping to try it there until I can figure this out. Thanks for your help though! I'll let you know if I can take this further.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 13:48:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660771#M94555</guid>
      <dc:creator>tkennedy26</dc:creator>
      <dc:date>2018-01-03T13:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660780#M94556</link>
      <description>&lt;P&gt;I was worried this wouldn't show up in the Vault Thin Client as&amp;nbsp; a standalone PDF being an attachment to the drawing but it does!&lt;BR /&gt;&lt;BR /&gt;I'm working on tweaking this to automatically find and add the PDF that was just exported in an earlier sub. But this will get me there. Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 13:52:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660780#M94556</guid>
      <dc:creator>tkennedy26</dc:creator>
      <dc:date>2018-01-03T13:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660820#M94557</link>
      <description>&lt;P&gt;You're very welcome.&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RE: your problem with the missing references, it leads me to ask the following questions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) how did you create the addin project that you're using? was it&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;manually or&lt;/LI&gt;
&lt;LI&gt;using the template provided by the Inventor SDK&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;2) is your addin project stored somewhere like github? (so that I &amp;amp; others might help)&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 14:01:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660820#M94557</guid>
      <dc:creator>AlexFielder</dc:creator>
      <dc:date>2018-01-03T14:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660935#M94558</link>
      <description>&lt;P&gt;what version of visual studio are you running?&lt;/P&gt;&lt;P&gt;Have you installed the Inventor API and Vault API?&lt;/P&gt;&lt;P&gt;What version of inventor and vault are you running?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding the coding:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I have provided is also possible in I-logic but is more difficult.&lt;/P&gt;&lt;P&gt;The could of make an attachment has advantages and some disadvantages for the vault data base and relations.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;it is easier to add these files because the vault api is not needed.&lt;/LI&gt;&lt;LI&gt;the file is not easily to be checked out from vault if the file needs to be added (Pdf).&lt;/LI&gt;&lt;LI&gt;the attachement cannot be deleted without inventor (Pdf)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;so the code id have provided is easier in future, keep this in consideration!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 14:37:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660935#M94558</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-03T14:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660959#M94559</link>
      <description>&lt;P&gt;The picture that error was taken from was actually from the Inventor SDK User Interaction sample. I get the same result when I use the Vault SDK samples and when I start a new project and manually add the references.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 14:45:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7660959#M94559</guid>
      <dc:creator>tkennedy26</dc:creator>
      <dc:date>2018-01-03T14:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661022#M94560</link>
      <description>&lt;P&gt;What version of Visual studio do you have installed?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 15:03:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661022#M94560</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-03T15:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661059#M94561</link>
      <description>&lt;P&gt;I'm using VS 2015 Community, Inventor 2017 and Vault Pro 2017.&lt;BR /&gt;&lt;BR /&gt;I installed the SDK tools for both programs, so I have all of the examples, the Vault dll reference files, and the Inventor Add In shows up as an option to in Visual Studio. Do I have to install something else too?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 15:09:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661059#M94561</guid>
      <dc:creator>tkennedy26</dc:creator>
      <dc:date>2018-01-03T15:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661290#M94562</link>
      <description>&lt;P&gt;I don't think you have mentioned what Windows version you are running? One assumes Windows 10, but...?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 16:05:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661290#M94562</guid>
      <dc:creator>AlexFielder</dc:creator>
      <dc:date>2018-01-03T16:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661307#M94563</link>
      <description>&lt;P&gt;Still on Windows 7 Professional. IT has given me permission to upgrade to 10, but most everyone else is staying on 7. Do you think this could solve it?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 16:09:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661307#M94563</guid>
      <dc:creator>tkennedy26</dc:creator>
      <dc:date>2018-01-03T16:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661334#M94564</link>
      <description>&lt;P&gt;Honestly I don't know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have Windows 7 Pro here and Windows 10 Pro at home.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you able to share the project you have?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Failing that, you could try downloading and building this project I have been working on for some time with&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3801119"&gt;@MrSmithtastic&lt;/a&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/AlexFielder/MyFirstInventorAddin" target="_blank"&gt;https://github.com/AlexFielder/MyFirstInventorAddin&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know for certain that it builds on both my systems.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 16:16:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661334#M94564</guid>
      <dc:creator>AlexFielder</dc:creator>
      <dc:date>2018-01-03T16:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661939#M94565</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open your project in Visual studio and change in the framework to a different version:&lt;/P&gt;&lt;P&gt;This should solve the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let me know if it has worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Framework.PNG" style="width: 275px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/445263iE75ABE83F7513F74/image-size/large?v=v2&amp;amp;px=999" role="button" title="Framework.PNG" alt="Framework.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 19:37:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7661939#M94565</guid>
      <dc:creator>bradeneuropeArthur</dc:creator>
      <dc:date>2018-01-03T19:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Save then Check In PDF</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7673350#M94566</link>
      <description>&lt;P&gt;Sorry it took me so long to reply. Fortunately and Unfortunately I did not get to test changing the framework, I put it down for a bit and when I opened it up this week everything seems to be working OK. I'll keep it in mind if it happens again. Thanks for all your help.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 21:31:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/save-then-check-in-pdf/m-p/7673350#M94566</guid>
      <dc:creator>tkennedy26</dc:creator>
      <dc:date>2018-01-08T21:31:21Z</dc:date>
    </item>
  </channel>
</rss>

