473,387 Members | 1,535 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

OpenFileDialog

I am having problems giving my dialog box the initial directory at runtime.
I can get it working if I code it at design time, does any one know why this
code wont allow me to get the initial directory from a Class at runtim.

with openfiledialog1

.InitialdDirectory = MyClass.GetDirectory

.ShowDialog()

end with
--
Cheers
Ithaqua
Nov 21 '05 #1
14 3797
"Ithaqua" <It*****@discussions.microsoft.com> schrieb:
I am having problems giving my dialog box the initial directory at runtime.
I can get it working if I code it at design time, does any one know why
this
code wont allow me to get the initial directory from a Class at runtim.


Error message? What's the exact problem?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #2
When I use the following code to get a folder location from my Class it
allways opens the dialog box at My Documents.

MyClass
{
Folder_location = "C:\"
}

with openfiledialog1

.InitialdDirectory = MyClass.GetDirectory

.ShowDialog()

end with

How ever if I hard code it like this it opens in the specified directory

with openfiledialog1

.InitialdDirectory = "C:\"

.ShowDialog()

end with
--
Cheers
Ithaqua
"Herfried K. Wagner [MVP]" wrote:
"Ithaqua" <It*****@discussions.microsoft.com> schrieb:
I am having problems giving my dialog box the initial directory at runtime.
I can get it working if I code it at design time, does any one know why
this
code wont allow me to get the initial directory from a Class at runtim.


Error message? What's the exact problem?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #3
When I use the following code to get a folder location from my Class it
allways opens the dialog box at My Documents.

MyClass
{
Folder_location = "C:\"
}

with openfiledialog1

.InitialdDirectory = MyClass.GetDirectory

.ShowDialog()

end with

How ever if I hard code it like this it opens in the specified directory

with openfiledialog1

.InitialdDirectory = "C:\"

.ShowDialog()

end with
--
Cheers
Ithaqua
"Herfried K. Wagner [MVP]" wrote:
"Ithaqua" <It*****@discussions.microsoft.com> schrieb:
I am having problems giving my dialog box the initial directory at runtime.
I can get it working if I code it at design time, does any one know why
this
code wont allow me to get the initial directory from a Class at runtim.


Error message? What's the exact problem?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #4
"Ithaqua" <It*****@discussions.microsoft.com> schrieb:
When I use the following code to get a folder location from my Class it
allways opens the dialog box at My Documents.

MyClass
{
Folder_location = "C:\"
}

with openfiledialog1

.InitialdDirectory = MyClass.GetDirectory


Where is 'GetDirectory' defined?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Nov 21 '05 #5
It is defined in MyClass.

--
Cheers
Ithaqua
"Herfried K. Wagner [MVP]" wrote:
"Ithaqua" <It*****@discussions.microsoft.com> schrieb:
When I use the following code to get a folder location from my Class it
allways opens the dialog box at My Documents.

MyClass
{
Folder_location = "C:\"
}

with openfiledialog1

.InitialdDirectory = MyClass.GetDirectory


Where is 'GetDirectory' defined?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #6
Ithaqua,

Forgive me that I had so smile, that it is in MyClass (although not litary I
hope because that is a keyword), does Herfried for sure know.

I think that he did more wanted to know where the information came from that
is in MyClass. (And if you checked that the information was really correct.)

Cor

"Ithaqua" <It*****@discussions.microsoft.com> schreef in bericht
news:5D**********************************@microsof t.com...
It is defined in MyClass.

--
Cheers
Ithaqua
"Herfried K. Wagner [MVP]" wrote:
"Ithaqua" <It*****@discussions.microsoft.com> schrieb:
> When I use the following code to get a folder location from my Class it
> allways opens the dialog box at My Documents.
>
> MyClass
> {
> Folder_location = "C:\"
> }
>
> with openfiledialog1
>
> .InitialdDirectory = MyClass.GetDirectory


Where is 'GetDirectory' defined?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #7
"Ithaqua" <It*****@discussions.microsoft.com> schrieb:
It is defined in MyClass.


First, 'MyClass' is a reserved keyword in VB.NET, second there might be a
bug in the implementation of the method.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #8
Ithaqua wrote:
When I use the following code to get a folder location from my Class it
allways opens the dialog box at My Documents.

MyClass
{
Folder_location = "C:\"
}

with openfiledialog1

.InitialdDirectory = MyClass.GetDirectory

.ShowDialog()

end with

How ever if I hard code it like this it opens in the specified directory

with openfiledialog1

.InitialdDirectory = "C:\"

.ShowDialog()

end with


Can you post the code for your GetDirectory method here.... I'm guessing
the problem may be there.
Nov 21 '05 #9
Sorry MyClass is not actually the class name, it was just one I made up.
--
Cheers
Ithaqua
"Herfried K. Wagner [MVP]" wrote:
"Ithaqua" <It*****@discussions.microsoft.com> schrieb:
It is defined in MyClass.


First, 'MyClass' is a reserved keyword in VB.NET, second there might be a
bug in the implementation of the method.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #10
I have checked and this returns the directory location like it should.
ReadOnly Property getDirectory()
Get

' Get the value of the private class variable in one instance
Return _directoryLocation

End Get
End Property
--
Cheers
Ithaqua
"beaker" wrote:
Ithaqua wrote:
When I use the following code to get a folder location from my Class it
allways opens the dialog box at My Documents.

MyClass
{
Folder_location = "C:\"
}

with openfiledialog1

.InitialdDirectory = MyClass.GetDirectory

.ShowDialog()

end with

How ever if I hard code it like this it opens in the specified directory

with openfiledialog1

.InitialdDirectory = "C:\"

.ShowDialog()

end with


Can you post the code for your GetDirectory method here.... I'm guessing
the problem may be there.

Nov 21 '05 #11
"Ithaqua" <It*****@discussions.microsoft.com> schrieb:
I have checked and this returns the directory location like it should.
ReadOnly Property getDirectory()
Get

' Get the value of the private class variable in one instance
Return _directoryLocation

End Get
End Property


Although this won't solve the problem

\\\
Public ReadOnly Property Directory() As String
Get
Reurn ...
End Get
End Property
///

should be preferred.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Nov 21 '05 #12
"Ithaqua" <It*****@discussions.microsoft.com> wrote in message
news:E8**********************************@microsof t.com...
I am having problems giving my dialog box the initial directory at runtime.
I can get it working if I code it at design time, does any one know why
this
code wont allow me to get the initial directory from a Class at runtim.

with openfiledialog1

.InitialdDirectory = MyClass.GetDirectory

.ShowDialog()

end with
--
Cheers
Ithaqua


Shouldn't that be: .InitialDirectory without the extra "d"
Nov 21 '05 #13
Sorry that is a typeo in my post to this group

--
Cheers
Ithaqua
"Harry Strybos" wrote:
"Ithaqua" <It*****@discussions.microsoft.com> wrote in message
news:E8**********************************@microsof t.com...
I am having problems giving my dialog box the initial directory at runtime.
I can get it working if I code it at design time, does any one know why
this
code wont allow me to get the initial directory from a Class at runtim.

with openfiledialog1

.InitialdDirectory = MyClass.GetDirectory

.ShowDialog()

end with
--
Cheers
Ithaqua


Shouldn't that be: .InitialDirectory without the extra "d"

Nov 21 '05 #14
you could try

application.startuppath

that would get the filder of where your app started

-iwdu150
Nov 21 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Jody Gelowitz | last post by:
VS.NET 2002 and 2003 are installed. ..NET Framework 1.0 and 1.1 installed Program running under VisualBasic.NET 2002 with .NET Framwork 1.0 I am experiencing a problem with ADO.NET where the...
3
by: bobrad | last post by:
MAYBE SOMEBODY CAM HELP I AM USING THE FOLLOWING CODE TO GET A LOCATION OF A FILE IN A WINFORM DIALOG OpenFileDialog openFileDialog = new OpenFileDialog(); OpenFileDialog.Filter = " Access...
2
by: don | last post by:
has anyone experienced problems with interactions between OpenFileDialog and FileStream? When I select "open" from an OpenFileDialog the subsequent calls to FileStream do not create a file. If I do...
4
by: Nagachandra Sekhar Grandhi | last post by:
I am facing a problem with OpenFileDialog. It is as follows. I opened OpenFileDialog dialog box and selected a folder in it. After selecting the folder when i tried to delete the same folder in...
8
by: e-mid | last post by:
why does not openFileDialog have closed event? i want to do something; as soon as the dialog closes. is there a way to do this?
6
by: barbara_dave | last post by:
Hi, All, I want to use the openfiledialog to open different extension files in different directory( only one type files at one time). I set the OpenFiledialog InitialDirectory and Filter...
8
by: marcus.kwok | last post by:
I am having a weird problem and I have can't figure out why it is happening. I create an OpenFileDialog and set a filename filter. When the dialog first opens, the filter works correctly, and...
1
by: sam | last post by:
OpenFileDialog appears to be "holding onto" the parent folder of a selected file until the application using the dialog quits. After creating a folder containing a file, I attempted to select...
3
by: Martijn Mulder | last post by:
It strikes me that System.Windows.Forms.OpenFileDialog seems te 'remember' which directory it was in last, even when a new OpenFileDialog-object is created for every access to the file system....
0
by: mbewers1 | last post by:
Hi I'm having a problem trying to get a customised OpenFileDialog() to fulfil my requirements. The code for this custom-built dialog has been taken from another site...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.