зеркало из https://github.com/mono/mail-archives.git
143 строки
5.2 KiB
HTML
143 строки
5.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [Mono-bugs] [Bug 77477][Min] New - OpenFileDialog: Selecting a
|
|
directory and clicking OK does not navigate directory
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%2077477%5D%5BMin%5D%20New%20-%20OpenFileDialog%3A%20Selecting%20a%0A%09directory%20and%20clicking%20OK%20does%20not%20navigate%20directory&In-Reply-To=bug-77477%40chernobyl.ximian.com">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
|
<LINK REL="Previous" HREF="038971.html">
|
|
<LINK REL="Next" HREF="038973.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[Mono-bugs] [Bug 77477][Min] New - OpenFileDialog: Selecting a
|
|
directory and clicking OK does not navigate directory</H1>
|
|
<B>bugzilla-daemon at bugzilla.ximian.com</B>
|
|
<A HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%2077477%5D%5BMin%5D%20New%20-%20OpenFileDialog%3A%20Selecting%20a%0A%09directory%20and%20clicking%20OK%20does%20not%20navigate%20directory&In-Reply-To=bug-77477%40chernobyl.ximian.com"
|
|
TITLE="[Mono-bugs] [Bug 77477][Min] New - OpenFileDialog: Selecting a
|
|
directory and clicking OK does not navigate directory">bugzilla-daemon at bugzilla.ximian.com
|
|
</A><BR>
|
|
<I>Sun Feb 5 15:00:10 EST 2006</I>
|
|
<P><UL>
|
|
<LI>Previous message: <A HREF="038971.html">[Mono-bugs] [Bug 77476][Nor] New - PictureBox calls Width on
|
|
uninitialized image.
|
|
</A></li>
|
|
<LI>Next message: <A HREF="038973.html">[Mono-bugs] [Bug 77478][Maj] New - Method to delegate conversion
|
|
wrong for interface types
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#38972">[ date ]</a>
|
|
<a href="thread.html#38972">[ thread ]</a>
|
|
<a href="subject.html#38972">[ subject ]</a>
|
|
<a href="author.html#38972">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
<HR>
|
|
<!--beginarticle-->
|
|
<PRE>Please do not reply to this email- if you want to comment on the bug, go to the
|
|
URL shown below and enter your comments there.
|
|
|
|
Changed by <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">kdaniels at usfamily.net.</A>
|
|
|
|
<A HREF="http://bugzilla.ximian.com/show_bug.cgi?id=77477">http://bugzilla.ximian.com/show_bug.cgi?id=77477</A>
|
|
|
|
--- shadow/77477 2006-02-05 15:00:10.000000000 -0500
|
|
+++ shadow/77477.tmp.26105 2006-02-05 15:00:10.000000000 -0500
|
|
@@ -0,0 +1,69 @@
|
|
+Bug#: 77477
|
|
+Product: Mono: Class Libraries
|
|
+Version: 1.1
|
|
+OS:
|
|
+OS Details: Fedora Core 3
|
|
+Status: NEW
|
|
+Resolution:
|
|
+Severity:
|
|
+Priority: Minor
|
|
+Component: Windows.Forms
|
|
+AssignedTo: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">peter at novonyx.com</A>
|
|
+ReportedBy: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">kdaniels at usfamily.net</A>
|
|
+QAContact: <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">mono-bugs at ximian.com</A>
|
|
+TargetMilestone: ---
|
|
+URL:
|
|
+Cc:
|
|
+Summary: OpenFileDialog: Selecting a directory and clicking OK does not navigate directory
|
|
+
|
|
+Please fill in this template when reporting a bug, unless you know what you
|
|
+are doing.
|
|
+Description of Problem:
|
|
+When an OpenFileDialog is displayed, clicking on a directory and then
|
|
+clicking the OK button should cause the directory to be displayed in the
|
|
+dialog.
|
|
+
|
|
+Steps to reproduce the problem:
|
|
+1. compile and execute the following program
|
|
+
|
|
+using System;
|
|
+using System.Windows.Forms;
|
|
+namespace TestFD
|
|
+{
|
|
+ class Class1
|
|
+ {
|
|
+ [STAThread]
|
|
+ static void Main(string[] args)
|
|
+ {
|
|
+ OpenFileDialog fd = new OpenFileDialog();
|
|
+ if(fd.ShowDialog()==DialogResult.OK){
|
|
+ Console.WriteLine("OK box Clicked");
|
|
+ Console.WriteLine("File Name = {0}",fd.FileName);
|
|
+ fd.Dispose();
|
|
+ }
|
|
+ }
|
|
+ }
|
|
+}
|
|
+
|
|
+
|
|
+2. Click on a directory entry.
|
|
+3. Click the OK button.
|
|
+
|
|
+Actual Results:
|
|
+(1)Either no action will occur or (2) the Dialog box will exit.
|
|
+
|
|
+If a file has not been selected prior to selecting a directory, then no
|
|
+action will occur.
|
|
+
|
|
+If a file was selected prior to selecting a directory, then the Dialog Box
|
|
+will exit.
|
|
+
|
|
+Expected Results:
|
|
+Selecting a directory followed by clicking OK will always cause the
|
|
+contents of the selected directory to be displayed.
|
|
+
|
|
+How often does this happen?
|
|
+Always
|
|
+
|
|
+Additional Information:
|
|
+mono from SVN
|
|
</PRE>
|
|
|
|
|
|
<!--endarticle-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI>Previous message: <A HREF="038971.html">[Mono-bugs] [Bug 77476][Nor] New - PictureBox calls Width on
|
|
uninitialized image.
|
|
</A></li>
|
|
<LI>Next message: <A HREF="038973.html">[Mono-bugs] [Bug 77478][Maj] New - Method to delegate conversion
|
|
wrong for interface types
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#38972">[ date ]</a>
|
|
<a href="thread.html#38972">[ thread ]</a>
|
|
<a href="subject.html#38972">[ subject ]</a>
|
|
<a href="author.html#38972">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
|
|
<hr>
|
|
<a href="http://lists.ximian.com/mailman/listinfo/mono-bugs">More information about the mono-bugs
|
|
mailing list</a><br>
|
|
</body></html>
|