473,661 Members | 2,501 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

.InitialdDirect ory = MyClass.GetDire ctory

.ShowDialog()

end with
--
Cheers
Ithaqua
Nov 21 '05 #1
14 3853
"Ithaqua" <It*****@discus sions.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

.InitialdDirect ory = MyClass.GetDire ctory

.ShowDialog()

end with

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

with openfiledialog1

.InitialdDirect ory = "C:\"

.ShowDialog()

end with
--
Cheers
Ithaqua
"Herfried K. Wagner [MVP]" wrote:
"Ithaqua" <It*****@discus sions.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

.InitialdDirect ory = MyClass.GetDire ctory

.ShowDialog()

end with

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

with openfiledialog1

.InitialdDirect ory = "C:\"

.ShowDialog()

end with
--
Cheers
Ithaqua
"Herfried K. Wagner [MVP]" wrote:
"Ithaqua" <It*****@discus sions.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*****@discus sions.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

.InitialdDirect ory = MyClass.GetDire ctory


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*****@discus sions.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

.InitialdDirect ory = MyClass.GetDire ctory


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*****@discus sions.microsoft .com> schreef in bericht
news:5D******** *************** ***********@mic rosoft.com...
It is defined in MyClass.

--
Cheers
Ithaqua
"Herfried K. Wagner [MVP]" wrote:
"Ithaqua" <It*****@discus sions.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
>
> .InitialdDirect ory = MyClass.GetDire ctory


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*****@discus sions.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

.InitialdDirect ory = MyClass.GetDire ctory

.ShowDialog()

end with

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

with openfiledialog1

.InitialdDirect ory = "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*****@discus sions.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

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

Similar topics

3
2994
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 Connection object (OleDBConnection) will not Open (conIncident.Open) given the following situation: 1. Program is loaded and connection is established to Access database on C:
3
360
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 (*.mdb)|*.mdb|All files (*.*)|*.*"; if (openFileDialog.ShowDialog() == DialogResult.OK) DataBaseLocation.Text = openFileDialog.FileName;
2
3075
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 anything else, eg, navigate to other folders, and then press "cancel" the file is created. This occurrs just with the simple code below. Any ideas private void button1_Click(object sender, System.EventArgs e // open the common dialog bo...
4
7992
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 Explorer i am getting error saying that cannot delete that folder as some process is using it. After that i selected a file from the same folder in OpenFileDialog. When i tried to delete the folder after selecting the file also it is giving the...
8
6037
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
3001
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 property for ".dat" files at first time, it works. When I try to use openfiledialog to set different InitialDirectory an different Filter property for ".txt" files at second time, I got frozen window. Even I added code to dispose openfiledialog after...
8
6080
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 only the files I want to see appear in the file list box. When I change the filter to one of the other filters, all the files in the list disappear. If I then manually type a filter into the "Filename" textbox, then the files appear and the filter...
1
3774
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 that file with an OpenFileDialog. I used the following code to create the dialog: Dim a As New OpenFileDialog a.ShowDialog() a.Dispose()
3
3253
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. This 'persistence' also holds between different invocations of the same program. Even when the .cs file is re-compiled, the OpenFileDialog again opens in the directory where it was directed to the previous time. 1. Is this a 'feature' of...
0
2152
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 (http://www.codeproject.com/KB/dialog/FileDialogExtender.aspx) ) and allows the user to select the viewing method before opening the dialog to show a file directory. The following event is assigned to a button on my form which, when prompted, displays the dialog. public...
0
8855
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8758
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8545
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8633
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7364
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4179
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4346
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1986
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1743
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.