<?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: VBA FileDialog object - problem with InitialDirectory in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550151#M146133</link>
    <description>I use Inventor 2009, SP 2 but now I found solution.&lt;BR /&gt;
Path must be written in FileName attribut&lt;BR /&gt;
{code}&lt;BR /&gt;
Call ThisApplication.CreateFileDialog(oFileDlg)&lt;BR /&gt;
oFileDlg.InitialDirectory = 'C:\temp'&lt;BR /&gt;
oFileDlg.FileName = 'C:\temp\example.ipt'&lt;BR /&gt;
oFileDlg.ShowSave&lt;BR /&gt;
{code}</description>
    <pubDate>Wed, 09 Sep 2009 07:36:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-09-09T07:36:31Z</dc:date>
    <item>
      <title>VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550148#M146130</link>
      <description>I need (in VBA makro) save file to given folder.&lt;BR /&gt;
I want to do it with FileDialog object but I can't set folder in dialog windows with InitialDirectory method.&lt;BR /&gt;
There is always last used folder in dialog window.&lt;BR /&gt;
Does anybody know why InitialDirectory doesn't work?&lt;BR /&gt;
&lt;BR /&gt;
{code}&lt;BR /&gt;
Call ThisApplication.CreateFileDialog(oFileDlg)&lt;BR /&gt;
oFileDlg.InitialDirectory = "C:\temp"&lt;BR /&gt;
oFileDlg.ShowSave&lt;BR /&gt;
{code}</description>
      <pubDate>Wed, 02 Sep 2009 09:38:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550148#M146130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-02T09:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550149#M146131</link>
      <description>I have the same problem.  And it is odd becuase it is only with the Save, the Open works fine.&lt;BR /&gt;
&lt;BR /&gt;
For me the Save always goes to my default inventor last save directory.&lt;BR /&gt;
&lt;BR /&gt;
Any input would be appreciated.</description>
      <pubDate>Tue, 08 Sep 2009 19:44:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550149#M146131</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-08T19:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550150#M146132</link>
      <description>Could you let me know which version of Inventor (and service pack) each of &lt;BR /&gt;
you is seeing this issue with?&lt;BR /&gt;
&lt;BR /&gt;
thanks,&lt;BR /&gt;
Sanjay-</description>
      <pubDate>Tue, 08 Sep 2009 22:00:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550150#M146132</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-08T22:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550151#M146133</link>
      <description>I use Inventor 2009, SP 2 but now I found solution.&lt;BR /&gt;
Path must be written in FileName attribut&lt;BR /&gt;
{code}&lt;BR /&gt;
Call ThisApplication.CreateFileDialog(oFileDlg)&lt;BR /&gt;
oFileDlg.InitialDirectory = 'C:\temp'&lt;BR /&gt;
oFileDlg.FileName = 'C:\temp\example.ipt'&lt;BR /&gt;
oFileDlg.ShowSave&lt;BR /&gt;
{code}</description>
      <pubDate>Wed, 09 Sep 2009 07:36:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550151#M146133</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-09T07:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550152#M146134</link>
      <description>Inventor 2009 Service Pack 1&lt;BR /&gt;
(didn't know 2 was out ill have to update)&lt;BR /&gt;
&lt;BR /&gt;
That filename trick worked my only problem is that it fills the Filename property which is what i use to check for valid selections.  ill be able to work around that though in my error checking to prevent a million copies of that default name being created.&lt;BR /&gt;
&lt;BR /&gt;
thanks&lt;BR /&gt;
&lt;BR /&gt;
EDIT:&lt;BR /&gt;
i used this code since my initial directory changes from time to time....&lt;BR /&gt;
&lt;BR /&gt;
{code}&lt;BR /&gt;
&lt;BR /&gt;
newPath.DialogTitle = "Select Location for New File"&lt;BR /&gt;
newPath.InitialDirectory = ThisApplication.FileLocations.Workspace&lt;BR /&gt;
newPath.FileName = newPath.InitialDirectory + "\.dwg"&lt;BR /&gt;
newPath.CancelError = True&lt;BR /&gt;
&lt;BR /&gt;
{code}&lt;BR /&gt;
&lt;BR /&gt;
this allows an invalid save with an error and doesn't default your directory to one spot.

Edited by: ENDCad on Sep 9, 2009 4:02 PM</description>
      <pubDate>Wed, 09 Sep 2009 16:00:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550152#M146134</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-09T16:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550153#M146135</link>
      <description>I checked and unfortunately, this was a known issue in Inventor 2009. &lt;BR /&gt;
Providing the full path in the filename is the only workaround, as you've &lt;BR /&gt;
discovered. This issue is fixed in Inventor 2010 and doesn't need a filename &lt;BR /&gt;
specification.&lt;BR /&gt;
&lt;BR /&gt;
Sanjay-</description>
      <pubDate>Wed, 09 Sep 2009 18:45:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550153#M146135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-09T18:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550154#M146136</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;
Sanjay wrote:&lt;BR /&gt;&lt;BR /&gt;
I checked and unfortunately, this was a known issue in Inventor 2009. &lt;BR /&gt;&lt;BR /&gt;
Providing the full path in the filename is the only workaround, as you've &lt;BR /&gt;&lt;BR /&gt;
discovered. This issue is fixed in Inventor 2010 and doesn't need a filename &lt;BR /&gt;&lt;BR /&gt;
specification.&lt;BR /&gt;&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
Sanjay,&lt;BR /&gt;&lt;BR /&gt;
&lt;BR /&gt;&lt;BR /&gt;
I am a user of Inventor 2010 SP1 and unfortunately this issue is NOT solved yet!!!!!!!!!!!!!!&lt;BR /&gt;
I have the same problems with the "Initial Directory"&lt;BR /&gt;
&lt;BR /&gt;
How can i solve this?&lt;BR /&gt;
&lt;BR /&gt;
thx&lt;BR /&gt;
&lt;BR /&gt;
bjorn</description>
      <pubDate>Fri, 27 Nov 2009 08:28:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/2550154#M146136</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-11-27T08:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3795518#M146138</link>
      <description>&lt;P&gt;2013 &amp;amp; it seems this thing is still sneaking around.. or???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2013 18:10:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3795518#M146138</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-04T18:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3801747#M146139</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm testing that under 2013 SP1.1 Update 2 and it seems to work correctly:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Public Sub CreateFileDialog()

    Dim App As Inventor.Application
    Set App = ThisApplication
    
    Dim dlg As FileDialog
    Call App.CreateFileDialog(dlg)
    
    dlg.InitialDirectory = "C:\"
    dlg.filter = "Inventor Files (*.ipt)|*.ipt | Assembly File (*.iam)|*.iam"
    dlg.DialogTitle = "Save Native"
    
    dlg.ShowSave

End Sub&lt;/PRE&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Philippe.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2013 15:50:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3801747#M146139</guid>
      <dc:creator>philippe.leefsma</dc:creator>
      <dc:date>2013-03-11T15:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3802168#M146140</link>
      <description>&lt;P&gt;Doesn´t work for me in C# &amp;amp; when I copy paste your code directly&amp;nbsp;in the&amp;nbsp;VBA editor&amp;nbsp; &amp;amp; run&amp;nbsp;I end up in my vault project folder..&amp;nbsp; e.g. not C:\". &amp;nbsp;I´m on the same build.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2013 21:40:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3802168#M146140</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-11T21:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3809575#M146141</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;there is a C# demo code in the API help reference. Hope it helps you to figure out the problem:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;public void TestFileDialog()
{
    Application oApp = ThisApplication;

    // Create a new FileDialog object.
    FileDialog oFileDlg;
    oApp.CreateFileDialog(out(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 not be raised if the user clicks the Cancel button.
    oFileDlg.CancelError = false;

    // Show the open dialog.  The same procedure is also used for the Save dialog.
    // The commented code can be used for the Save dialog.
    oFileDlg.ShowOpen();
    // oFileDlg.ShowSave();

    System.Windows.Forms.MessageBox.Show("File " + oFileDlg.FileName + " was selected.", "Selected file");

}
 

&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2013 01:14:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3809575#M146141</guid>
      <dc:creator>xiaodong_liang</dc:creator>
      <dc:date>2013-03-20T01:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3809700#M146142</link>
      <description>&lt;P&gt;Yep.. That´s more or less the same code I used, but no cigar as mentioned earlier,&amp;nbsp;Using the IV2009 workaround described in this thread, does the job so I´m long gone.&amp;nbsp;I&amp;nbsp;have a strong&amp;nbsp;feeling&amp;nbsp;the internal vaultclient is overriding oFileDlg.InitialDirectory.. Check it out &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2013 08:09:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/3809700#M146142</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-20T08:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4325887#M146143</link>
      <description>&lt;P&gt;Workaround described in this thread doesn't work for an open file dialog. Anybody got a work around for an open file dialog? or an alternative method&amp;nbsp;&lt;SPAN&gt;of calling an open file dialog box where the initial directory can be set??&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thx in advance&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2013 17:37:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4325887#M146143</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-10T17:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4332225#M146144</link>
      <description>&lt;P&gt;Hi &lt;SPAN class="UserName lia-user-name"&gt;&lt;A id="link_13fea3aea91" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/533189" target="_self"&gt;&lt;SPAN&gt;ZX_Spectrum_48k&lt;/SPAN&gt;&lt;/A&gt; ,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="UserName lia-user-name"&gt;could you clarify what kind of problem you hit? I did not get a clue from the existing messages in the thread.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 01:27:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4332225#M146144</guid>
      <dc:creator>xiaodong_liang</dc:creator>
      <dc:date>2013-07-17T01:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4338009#M146145</link>
      <description>&lt;PRE&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;The sample code in  the 2014 help menu as reproduced below will not produce a file dialog box starting in c:\temp, instead the file dialog will display the last used folder.&lt;BR /&gt;Seems to have been an issue for a while ......................&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Public Sub TestFileDialog()
    &lt;SPAN&gt;' Create a new FileDialog object.&lt;/SPAN&gt;
    Dim oFileDlg As FileDialog
    Call ThisApplication.CreateFileDialog(oFileDlg)

    &lt;SPAN&gt;' Define the filter to select part and assembly files or any file.&lt;/SPAN&gt;
    oFileDlg.Filter = "Inventor Files (*.iam;*.ipt)|*.iam;*.ipt|All Files (*.*)|*.*"

    &lt;SPAN&gt;' Define the part and assembly files filter to be the default filter.&lt;/SPAN&gt;
    oFileDlg.FilterIndex = 1

    &lt;SPAN&gt;' Set the title for the dialog.&lt;/SPAN&gt;
    oFileDlg.DialogTitle = "Open File Test"

    &lt;SPAN&gt;' Set the initial directory that will be displayed in the dialog.&lt;/SPAN&gt;
    &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;oFileDlg.InitialDirectory = "C:\Temp"&lt;/FONT&gt;&lt;/STRONG&gt;

    &lt;SPAN&gt;' Set the flag so an error will be raised if the user clicks the Cancel button.&lt;/SPAN&gt;
    oFileDlg.CancelError = True

    &lt;SPAN&gt;' Show the open dialog.  The same procedure is also used for the Save dialog.&lt;/SPAN&gt;
    &lt;SPAN&gt;' The commented code can be used for the Save dialog.&lt;/SPAN&gt;
    On Error Resume Next
    oFileDlg.ShowOpen
&lt;SPAN&gt;'    oFileDlg.ShowSave&lt;/SPAN&gt;

    &lt;SPAN&gt;' If an error was raised, the user clicked cancel, otherwise display the filename.&lt;/SPAN&gt;
    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
End Sub&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Jul 2013 07:59:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4338009#M146145</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-22T07:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4345200#M146146</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Strange. It seems to work for me and starts in whatever folder I set as InitialDirectory:&amp;nbsp;&lt;A href="http://www.screencast.com/t/w2K7yJ9q" target="_self"&gt;http://www.screencast.com/t/w2K7yJ9q&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2013 23:11:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4345200#M146146</guid>
      <dc:creator>adam.nagy</dc:creator>
      <dc:date>2013-07-26T23:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4346619#M146147</link>
      <description>&lt;P&gt;&lt;STRONG&gt;*Make sure the directory actually exists and you have proper permissions*&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;We had this issue recently and discovered if the directory doesn't exist it will simply use the last directory it succesfully hit.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2013 17:19:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4346619#M146147</guid>
      <dc:creator>jdkriek</dc:creator>
      <dc:date>2013-07-29T17:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4347133#M146148</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*Make sure the directory actually exists and you have proper permissions*&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't think thats the problem - I can get initial directory to behave if I have no inventor files open.&lt;/P&gt;&lt;P&gt;As soon as I have an inventor file open, always get the project folder regardless of what initial directory is set to.&lt;/P&gt;&lt;P&gt;Anyone else find the same thing??&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2013 04:46:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4347133#M146148</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-30T04:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4356218#M146149</link>
      <description>&lt;P&gt;We have the same problem in all 4 seats of Inventor Pro 2014.&lt;/P&gt;&lt;P&gt;oFileDlg.InitialDirectory settings are not honoured and the dialog opens with Workspace in focus. We have Vault 2014 Workgroup installed and signed in.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2013 23:49:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4356218#M146149</guid>
      <dc:creator>binuvarkey</dc:creator>
      <dc:date>2013-08-06T23:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: VBA FileDialog object - problem with InitialDirectory</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4356239#M146150</link>
      <description>&lt;P&gt;When the dialog opens in the Project Folder, if we browse to another directory from the dialog box and cancel the dialog or open the file, next time initialdirectory is set to the other directory we browsed to or opened file from.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2013 00:34:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/vba-filedialog-object-problem-with-initialdirectory/m-p/4356239#M146150</guid>
      <dc:creator>binuvarkey</dc:creator>
      <dc:date>2013-08-07T00:34:06Z</dc:date>
    </item>
  </channel>
</rss>

