<?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: Browse folder path using ilogic in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591626#M12936</link>
    <description>&lt;P&gt;Above code works fine and open the folder, but i am not able to select multiple files (drawings) and also not able to open the drawings.&lt;/P&gt;&lt;P&gt;If i click open button, its not works.&lt;/P&gt;</description>
    <pubDate>Thu, 29 Feb 2024 19:17:10 GMT</pubDate>
    <dc:creator>karram</dc:creator>
    <dc:date>2024-02-29T19:17:10Z</dc:date>
    <item>
      <title>Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12589085#M12932</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to create browser button and add folder path using ilogic?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="karram_0-1709152352207.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1331534i5331914874F5C57E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="karram_0-1709152352207.png" alt="karram_0-1709152352207.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 20:32:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12589085#M12932</guid>
      <dc:creator>karram</dc:creator>
      <dc:date>2024-02-28T20:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12589541#M12933</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1101480"&gt;@karram&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See solved post &lt;A href="https://forums.autodesk.com/t5/inventor-programming-ilogic/select-a-folder-in-windows-explorer/m-p/9603433#M112599" target="_blank" rel="noopener"&gt;here&lt;/A&gt;. Kudos up the origional post if it solves your question.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 01:20:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12589541#M12933</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2024-02-29T01:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12589884#M12934</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the solved items code, its works perfectly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But my case after open the folder, i need to select only drawings files (*.idw) and then i add my other requirement rules, like &amp;gt;&amp;gt; For Example:&amp;nbsp; all open drawings i delete particular sketched symbol..... like other performance.&lt;/P&gt;&lt;P&gt;So i need open folder and select drawings files.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Below is solved code as per your link&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Imports&lt;/SPAN&gt; &lt;SPAN&gt;System&lt;/SPAN&gt;.&lt;SPAN&gt;Windows&lt;/SPAN&gt;.&lt;SPAN&gt;Forms&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;filepath&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt; = &lt;SPAN&gt;"K:\"&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;selectedfolder&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFolderDlg&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;New&lt;/SPAN&gt; &lt;SPAN&gt;FolderBrowserDialog&lt;/SPAN&gt;
&lt;SPAN&gt;oFolderDlg&lt;/SPAN&gt;.&lt;SPAN&gt;SelectedPath&lt;/SPAN&gt; = &lt;SPAN&gt;filepath&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oResult&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DialogResult&lt;/SPAN&gt; = &lt;SPAN&gt;oFolderDlg&lt;/SPAN&gt;.&lt;SPAN&gt;ShowDialog&lt;/SPAN&gt;()
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oResult&lt;/SPAN&gt; = &lt;SPAN&gt;DialogResult&lt;/SPAN&gt;.&lt;SPAN&gt;OK&lt;/SPAN&gt;
	&lt;SPAN&gt;selectedfolder&lt;/SPAN&gt; = &lt;SPAN&gt;oFolderDlg&lt;/SPAN&gt;.&lt;SPAN&gt;SelectedPath&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;Try&lt;/SPAN&gt;
&lt;SPAN&gt;Process&lt;/SPAN&gt;.&lt;SPAN&gt;Start&lt;/SPAN&gt;(&lt;SPAN&gt;selectedfolder&lt;/SPAN&gt;)
&lt;SPAN&gt;Catch&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 29 Feb 2024 06:07:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12589884#M12934</guid>
      <dc:creator>karram</dc:creator>
      <dc:date>2024-02-29T06:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12589935#M12935</link>
      <description>&lt;P&gt;If you want to select files then use the inventor dialogue in the help files &lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=FileDialog_Sample" target="_blank" rel="noopener"&gt;here&lt;/A&gt;. Change the extension to filter for drawings. You will likely find a version on this forum allready modified for multiple file selection also. Or just poke around with the options in this one and learn&amp;nbsp; little.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="visual"&gt;    ' Create a new FileDialog object.
    Dim oFileDlg As FileDialog
    Call ThisApplication.CreateFileDialog(oFileDlg)

    ' Define the filter to select part and assembly files or any file.
    oFileDlg.Filter = "Inventor Files (*.iam;*.ipt)|*.iam;*.ipt|All Files (*.*)|*.*"

    ' Define the part and assembly files filter to be the default filter.
    oFileDlg.FilterIndex = 1

    ' Set the title for the dialog.
    oFileDlg.DialogTitle = "Open File Test"

    ' Set the initial directory that will be displayed in the dialog.
    oFileDlg.InitialDirectory = "C:\Temp"

    ' Set the flag so an error will be raised if the user clicks the Cancel button.
    oFileDlg.CancelError = True

    ' Show the open dialog.  The same procedure is also used for the Save dialog.
    ' The commented code can be used for the Save dialog.
    On Error Resume Next
    oFileDlg.ShowOpen
'    oFileDlg.ShowSave

    ' If an error was raised, the user clicked cancel, otherwise display the filename.
    If Err Then
        MsgBox "User cancelled out of dialog"
    ElseIf oFileDlg.FileName &amp;lt;&amp;gt; "" Then
        MsgBox "File " &amp;amp; oFileDlg.FileName &amp;amp; " was selected."
    End If&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 06:48:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12589935#M12935</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2024-02-29T06:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591626#M12936</link>
      <description>&lt;P&gt;Above code works fine and open the folder, but i am not able to select multiple files (drawings) and also not able to open the drawings.&lt;/P&gt;&lt;P&gt;If i click open button, its not works.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 19:17:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591626#M12936</guid>
      <dc:creator>karram</dc:creator>
      <dc:date>2024-02-29T19:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591651#M12937</link>
      <description>&lt;P&gt;That sample shown earlier is the generic sample so you need to customize to what you need.&amp;nbsp; See image below, once the object is declared you can see all the methods available.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AAcheson_0-1709234745887.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1332069i7DB08F153E796E47/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AAcheson_0-1709234745887.png" alt="AAcheson_0-1709234745887.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One specific for drawings.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;'present a File Selection dialog
	Dim oFileDlg As Inventor.FileDialog = Nothing
	InventorVb.Application.CreateFileDialog(oFileDlg)
	
	oFileDlg.CancelError = True
	oFileDlg.MultiSelectEnabled = True
	oFileDlg.ShowQuickLaunch = True
	
	' Define the filter to select files 
	oFileDlg.Filter = "Inventor Drawing Files (*.idw;*.dwg)|*.idw;*.dwg"
	
	' Set the title for the dialog.
	oFileDlg.DialogTitle = "Choose the files to work with."
	
	On Error Resume Next
	'oFileDlg.ShowSave()
	oFileDlg.ShowOpen()
	
	If Err.Number &amp;lt;&amp;gt; 0 Then
	Return
	ElseIf oFileDlg.FileName &amp;lt;&amp;gt; "" Then
		selectedfiles = oFileDlg.FileName
	End If
	
	' Split the string on the vertical bar character.
	Dim sFiles As String() = selectedfiles.Split(New Char() {"|"c})
	
	'Loop through result strings with For Each.
	For Each sFile  As String In sFiles
		Logger.Info("Drawing File.", sFile)
	Next&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 19:31:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591651#M12937</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2024-02-29T19:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591669#M12938</link>
      <description>&lt;P&gt;Now multiple drawings files selected thanks, but not able to open the drawings in inventor. If i select the multiple drawings and click open no operation carried.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 19:37:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591669#M12938</guid>
      <dc:creator>karram</dc:creator>
      <dc:date>2024-02-29T19:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591774#M12939</link>
      <description>&lt;P&gt;The purpose of the dialogue is to return file paths not to open the files. Your recreating the User Interface by code so you need to open the files by code also. The line below needs to be inserted in the for loop. Did the logger statement show you the correct file paths?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;ThisApplication.Documents.Open(filepath,True) &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 20:28:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591774#M12939</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2024-02-29T20:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591776#M12940</link>
      <description>&lt;P&gt;Also now i add delete sketched symbol in end of the browser folder path code.&lt;/P&gt;&lt;P&gt;how can i add and merge the code. can you help&lt;/P&gt;&lt;P&gt;My requirements:&lt;/P&gt;&lt;P&gt;1. Open browser folder as working space.&lt;/P&gt;&lt;P&gt;2. Select the drawings files as per the requirements and selected file to be open.&lt;/P&gt;&lt;P&gt;3. Then targeted sketched symbol delete my open drawings.&lt;/P&gt;&lt;P&gt;4. Save and close&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;'present a File Selection dialog&lt;/SPAN&gt;
	&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oFileDlg&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN&gt;FileDialog&lt;/SPAN&gt; = &lt;SPAN&gt;Nothing&lt;/SPAN&gt;
	&lt;SPAN&gt;InventorVb&lt;/SPAN&gt;.&lt;SPAN&gt;Application&lt;/SPAN&gt;.&lt;SPAN&gt;CreateFileDialog&lt;/SPAN&gt;(&lt;SPAN&gt;oFileDlg&lt;/SPAN&gt;)
	
	&lt;SPAN&gt;oFileDlg&lt;/SPAN&gt;.&lt;SPAN&gt;CancelError&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
	&lt;SPAN&gt;oFileDlg&lt;/SPAN&gt;.&lt;SPAN&gt;MultiSelectEnabled&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
	&lt;SPAN&gt;oFileDlg&lt;/SPAN&gt;.&lt;SPAN&gt;ShowQuickLaunch&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
	
	&lt;SPAN&gt;' Define the filter to select files &lt;/SPAN&gt;
	&lt;SPAN&gt;oFileDlg&lt;/SPAN&gt;.&lt;SPAN&gt;Filter&lt;/SPAN&gt; = &lt;SPAN&gt;"Inventor Drawing Files (*.idw;*.dwg)|*.idw;*.dwg"&lt;/SPAN&gt;
	
	&lt;SPAN&gt;' Set the title for the dialog.&lt;/SPAN&gt;
	&lt;SPAN&gt;oFileDlg&lt;/SPAN&gt;.&lt;SPAN&gt;DialogTitle&lt;/SPAN&gt; = &lt;SPAN&gt;"Choose the files to work with."&lt;/SPAN&gt;
	
	&lt;SPAN&gt;On&lt;/SPAN&gt; &lt;SPAN&gt;Error&lt;/SPAN&gt; &lt;SPAN&gt;Resume&lt;/SPAN&gt; &lt;SPAN&gt;Next&lt;/SPAN&gt;
	&lt;SPAN&gt;'oFileDlg.ShowSave()&lt;/SPAN&gt;
	&lt;SPAN&gt;oFileDlg&lt;/SPAN&gt;.&lt;SPAN&gt;ShowOpen&lt;/SPAN&gt;()
	
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Err&lt;/SPAN&gt;.&lt;SPAN&gt;Number&lt;/SPAN&gt; &amp;lt;&amp;gt; 0 &lt;SPAN&gt;Then&lt;/SPAN&gt;
	&lt;SPAN&gt;Return&lt;/SPAN&gt;
	&lt;SPAN&gt;ElseIf&lt;/SPAN&gt; &lt;SPAN&gt;oFileDlg&lt;/SPAN&gt;.&lt;SPAN&gt;FileName&lt;/SPAN&gt; &amp;lt;&amp;gt; &lt;SPAN&gt;""&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
		&lt;SPAN&gt;selectedfiles&lt;/SPAN&gt; = &lt;SPAN&gt;oFileDlg&lt;/SPAN&gt;.&lt;SPAN&gt;FileName&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;' Specify the name of the sketched symbol you want to delete&lt;/SPAN&gt;
&lt;SPAN&gt;targetSymbolName&lt;/SPAN&gt; = &lt;SPAN&gt;"Reference document No"&lt;/SPAN&gt;

&lt;SPAN&gt;' Loop through all drawing files in the folder&lt;/SPAN&gt;

&lt;SPAN&gt;While&lt;/SPAN&gt; &lt;SPAN&gt;drawingFile&lt;/SPAN&gt; &amp;lt;&amp;gt; &lt;SPAN&gt;""&lt;/SPAN&gt;
    &lt;SPAN&gt;' Open each drawing document&lt;/SPAN&gt;
    &lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingDocument&lt;/SPAN&gt;
    &lt;SPAN&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;Documents&lt;/SPAN&gt;.&lt;SPAN&gt;Open&lt;/SPAN&gt;(&lt;SPAN&gt;folderPath&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;drawingFile&lt;/SPAN&gt;, &lt;SPAN&gt;True&lt;/SPAN&gt;)
    
    &lt;SPAN&gt;' Check if the document is a drawing&lt;/SPAN&gt;
    &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN&gt;DocumentTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kDrawingDocumentObject&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
        &lt;SPAN&gt;' Loop through all sheets in the drawing&lt;/SPAN&gt;
		&lt;SPAN&gt;For&lt;/SPAN&gt; &lt;SPAN&gt;Each&lt;/SPAN&gt; &lt;SPAN&gt;oSymbol&lt;/SPAN&gt; &lt;SPAN&gt;In&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;.&lt;SPAN&gt;SketchedSymbols&lt;/SPAN&gt;
	&lt;SPAN&gt;'look for the symbol by name&lt;/SPAN&gt;
	&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;oSymbol&lt;/SPAN&gt;.&lt;SPAN&gt;Name&lt;/SPAN&gt; = &lt;SPAN&gt;"Reference document No"&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
		&lt;SPAN&gt;oSymbol&lt;/SPAN&gt;.&lt;SPAN&gt;Delete&lt;/SPAN&gt;
	&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;SPAN&gt;Next&lt;/SPAN&gt; 

        &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Save&lt;/SPAN&gt;()
        &lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;Close&lt;/SPAN&gt;()
    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
    
    &lt;SPAN&gt;' Get the next drawing file in the folder&lt;/SPAN&gt;
    &lt;SPAN&gt;drawingFile&lt;/SPAN&gt; = &lt;SPAN&gt;Dir&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;While&lt;/SPAN&gt;

&lt;SPAN&gt;MsgBox&lt;/SPAN&gt;(&lt;SPAN&gt;"Deletion of specific sketched symbols completed for all drawings in the folder."&lt;/SPAN&gt;, &lt;SPAN&gt;MsgBoxStyle&lt;/SPAN&gt;.&lt;SPAN&gt;Information&lt;/SPAN&gt;, &lt;SPAN&gt;"Complete"&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 20:28:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12591776#M12940</guid>
      <dc:creator>karram</dc:creator>
      <dc:date>2024-02-29T20:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Browse folder path using ilogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12592185#M12941</link>
      <description>&lt;P&gt;The code you worked in over &lt;A href="https://forums.autodesk.com/t5/inventor-programming-ilogic/batch-delete-sketched-symbol-in-drawings/td-p/12587735" target="_blank" rel="noopener"&gt;here&lt;/A&gt; in this other post is more complete than the one supplied in this post so please work with the other post rather than duplicate.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 01:28:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/browse-folder-path-using-ilogic/m-p/12592185#M12941</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2024-03-01T01:28:24Z</dc:date>
    </item>
  </channel>
</rss>

