FolderBrowserDialog在Windows 2000上崩溃 [英] FolderBrowserDialog crashes on Windows 2000

查看:51
本文介绍了FolderBrowserDialog在Windows 2000上崩溃的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

FolderBrowserDialog在我的Windows 2000计算机上崩溃。


这是一个C#测试程序:


使用System;

使用System.Windows.Forms;


公共类TestForm:Form {

FolderBrowserDialog folderBrowserDlg;

OpenFileDialog openFileDlg;

字符串folderName;

字符串fileName;


MainMenu mainMenu;

MenuItem mi_Browse;

MenuItem mi_Open;

MenuItem mi_FileMenu;

MenuItem mi_Exit;


public TestForm(){

mainMenu = new MainMenu();


mi_FileMenu = new MenuItem();

mi_FileMenu.Text ="& File" ;


mi_Browse = new MenuItem();

mi_Browse.Text ="& Select Directory ..." ;;

mi_Browse.Shortcut = Shortcut.CtrlS;

mi_Browse.Click + = new EventHandler(MI_Browse_OnClick);


mi_Open = new MenuItem();

mi_Open.T ext ="& Open File ..." ;;

mi_Open.Shortcut = Shortcut.CtrlO;

mi_Open.Click + = new EventHandler(MI_Open_OnClick);


mi_Exit = new MenuItem();

mi_Exit.Text =" E& xit Test ..." ;;

mi_Exit.Shortcut = Shortcut.CtrlX;

mi_Exit.Click + = new EventHandler(MI_Exit_OnClick);


mainMenu.MenuItems.Add(mi_FileMenu);

mi_FileMenu.MenuItems.Add(mi_Browse);

mi_FileMenu.MenuItems.Add(mi_Open);

mi_FileMenu.MenuItems.Add(mi_Exit);


folderBrowserDlg = new FolderBrowserDialog();

openFileDlg = new OpenFileDialog();


Menu = mainMenu;

Text =" Dialog Test Form";

}


void MI_Browse_OnClick(object sender,EventArgs e)

{

DialogResult结果;


result = folderBrowserDlg.ShowDialog();

if(result == DialogResult .OK){

fo lderName = folderBrowserDlg.SelectedPath;

}

}


void MI_Open_OnClick(对象发送者,EventArgs e)

{

DialogResult结果;


result = openFileDlg.ShowDialog();

if(result == DialogResult。 OK){

fileName = openFileDlg.FileName;

}

}


void MI_Exit_OnClick(对象发送者,EventArgs e)

{

关闭();

}


[STAThread ]

static void Main(){

Application.Run(new TestForm());

}

} $ / $

在Windows 2000下,10次中有4次,它第一次崩溃我试图显示FolderBrowserDialog。
。我重新启动后立即运行了测试

。要运行测试,启动程序,

并按Ctrl-S。它没有立即崩溃的时间,

如果我继续调出FolderBrowserDialog,它很快就会崩溃

。 OpenFileDialog(包含在测试程序中)

在Windows 2000上没有崩溃.DocumentBrowserDialog

在Windows XP计算机上没有崩溃。


当FolderBrowserDialog崩溃时,它就在它之后立即显示对话框。
显示对话框。对话框显示正常。


出现错误消息窗口 - ''

>地址"在地址处引用的存储器。记忆

无法读取。这两个地址总是一样的。

关闭错误信息窗口后,会出现第二条错误消息

窗口 - ''程序已生成错误,将会是

由Windows关闭。您需要重新启动程序。

正在创建错误日志。''日志文件是一个巨大的

二进制文件。没有异常被写入控制台。


如果FolderBrowserDialog崩溃了Windows

2000,并且之前没有人报告它会让我感到惊讶。但是,我现在无法知道
。我测试的Windows 2000电脑

开启非常稳定。有时,Windows资源管理器会在计算机上崩溃,但是已经超过一个月了。


为了帮助解决这个问题:


*之前是否报告过FolderBrowserDialog崩溃,

是在微软网站还是其他地方?我找不到。


*有人可以在他们的Windows 2000多次上运行相同的测试

次,并发布是否崩溃?


*有没有人在桌面.NET

应用程序中使用FolderBrowserDialog,并使用Windows 2000测试它是否稳定?


非常感谢,

Daniel Goldman

解决方案

嗨丹尼尔,


我已经在Windows 2000上编译了你的代码,运行了几次,它确实应该是它的b $ b。大约20次使用后没有任何瑕疵。


希望这有帮助


Publicjoe


http://www.publicjoe.f9.co上的C#教程.uk / csharp / tut.html

C#电子书 http://www.publicjoe.f9.co.uk/csharp/samples/ebook.html - 71

章节

VB电子书在 http:// www.publicjoe.f9.co.uk/vbnet/samples/ebook.html - 28

章节

C ++电子书 http://www.publicjoe.f9.co.uk/cppt/samples/ebook .html - 8

章节

Java电子书在 http://www.publicjoe.f9.co.uk/java/samples/ebook.html - 2

章节

< hh ******@yahoo.com>在消息中写道

news:11 ********************** @ g14g2000cwa.googlegr oups.com ...

FolderBrowserDialog在我的Windows 2000计算机上崩溃。

这是一个C#测试程序:

使用System;
使用System.Windows.Forms; <公共类TestForm:Form {
FolderBrowserDialog folderBrowserDlg;
OpenFileDialog openFileDlg;
String folderName;
字符串fileName;

MainMenu mainMenu;
MenuItem mi_Browse;
MenuItem mi_Open;
MenuItem mi_FileMenu;
MenuItem mi_Exit;

public TestForm(){
mainMenu = new MainMenu();

mi_FileMenu = new MenuItem();
mi_FileMenu.Text ="& File";

mi_Browse = new MenuItem();
mi_Browse.Text ="& Select Directory ..." ;;
mi_Browse.Shortcut = Shortcut.CtrlS;
mi_Browse.Click + = new EventHandler(MI_Browse_OnClick);
mi_Open = new MenuItem();
mi_Open.Text ="& Open File ..." ;;
mi_Open.Shortcut = Shortcut.CtrlO;
mi_Open.Click + = new EventHandler(MI_Open_OnClick);

mi_Exit = new MenuItem();
mi_Exit.Text =" E& xit Test ..." ;;
mi_Exit.Shortcut = Shortcut.CtrlX;
mi_Exit.Click + = new EventHandler(MI_Exit_OnClick);

mainMenu.MenuItems.Add(mi_FileMenu);
mi_FileMenu.MenuItems.Add(mi_Browse);
mi_FileMenu.MenuItems.Add(mi_Open);
mi_FileMenu.MenuItems.Add(mi_Exit);

folderBrowserDlg = new FolderBrowserDialog();
openFileDlg = new OpenFileDialog() ;

Menu = mainMenu;
Text =" Dialog Test Form" ;;
}

void MI_Browse_OnClick(object sender,EventArgs e)
{
DialogResult结果;

结果= folderBrowserDlg.ShowDialog();
if(result == Dialog Result.OK){
folderName = folderBrowserDlg.SelectedPath;
}

void MI_Open_OnClick(object sender,EventArgs e)
{
DialogResult结果;

result = openFileDlg.ShowDialog();
if(result == DialogResult.OK){
fileName = openFileDlg.FileName;
} <无效MI_Exit_OnClick(对象发送者,EventArgs e)
{
关闭();
}

[STAThread]
static void Main(){
Application.Run(new TestForm());
}

在Windows 2000下,10次中的4次,它第一次崩溃我试图显示FolderBrowserDialog。我重新启动后立即运行测试。要运行测试,请启动程序,然后按Ctrl-S。它没有立即崩溃的时间,
如果我不断提出FolderBrowserDialog,它很快就会崩溃。 OpenFileDialog(包含在测试程序中)
在Windows 2000上没有崩溃.OfficeBrowserDialog
没有在Windows XP计算机上崩溃。

当FolderBrowserDialog崩溃时,它就在它之后立即崩溃
显示对话框。对话框显示正常。

出现错误消息窗口 - ''
地址指令在地址处引用的存储器。记忆
无法读取。两个地址始终相同。
关闭错误消息窗口后,出现第二个错误消息窗口 - ''程序生成错误,将被Windows关闭。您将需要重新启动程序。
正在创建错误日志。''日志文件是一个巨大的二进制文件。没有异常被写入控制台。

如果FolderBrowserDialog崩溃Windows
2000会让我感到惊讶,之前没有人报告过它。但是,我现在无法知道这一点。我测试的Windows 2000计算机非常稳定。有时,Windows资源管理器会在计算机上崩溃,但已经过了一个多月。

为了帮助解决这个问题:

*具有FolderBrowserDialog以前报道过崩溃,是在微软网站还是其他地方?我找不到。

*有人可以在他们的Windows 2000多次运行相同的测试,并发布是否崩溃?

*是否有人使用过桌面.NET
应用程序中的FolderBrowserDialog,并测试它在Windows 2000中是否稳定?

非常感谢,
Daniel Goldman



我也只是在2K SP4机器上尝试了你的代码而没有不良结果。你有没有能够在任何其他2K机器上试用它?


布兰登


" hh * *****@yahoo.com"写道:

FolderBrowserDialog在我的Windows 2000计算机上崩溃。

这是一个C#测试程序:

使用System;
使用System.Windows.Forms;

公共类TestForm:Form {
FolderBrowserDialog folderBrowserDlg;
OpenFileDialog openFileDlg;
String folderName;
String fileName ;

MainMenu mainMenu;
MenuItem mi_Browse;
MenuItem mi_Open;
MenuItem mi_FileMenu;
MenuItem mi_Exit;

公共TestForm (){
mainMenu = new MainMenu();

mi_FileMenu = new MenuItem();
mi_FileMenu.Text ="& File";

mi_Browse = new MenuItem();
mi_Browse.Text ="& Select Directory ..." ;;
mi_Browse.Shortcut = Shortcut.CtrlS;
mi_Browse.Click + =新的EventHandler(MI_Browse_OnClick);

mi_Open = new MenuItem();
mi_Open.Text ="& Open Fi le ..." ;;
mi_Open.Shortcut = Shortcut.CtrlO;
mi_Open.Click + = new EventHandler(MI_Open_OnClick);

mi_Exit = new MenuItem();
mi_Exit.Text =" E& xit Test ..." ;;
mi_Exit.Shortcut = Shortcut.CtrlX;
mi_Exit.Click + = new EventHandler(MI_Exit_OnClick);

mainMenu.MenuItems.Add(mi_FileMenu);
mi_FileMenu.MenuItems.Add(mi_Browse);
mi_FileMenu.MenuItems.Add(mi_Open);
mi_FileMenu.MenuItems.Add(mi_Exit );

folderBrowserDlg = new FolderBrowserDialog();
openFileDlg = new OpenFileDialog();

Menu = mainMenu;
Text =" Dialog Test表格;
}

void MI_Browse_OnClick(object sender,EventArgs e)
对话结果;

结果= folderBrowserDlg.ShowDialog ();
if(result == DialogResult.OK){
folderName = folderBrowserDlg.SelectedPath;
}

void MI_Open_OnClick(对象发送者,EventArgs e)
对话结果;

结果= openFileDlg.ShowDialog() ;
if(result == DialogResult.OK){
fileName = openFileDlg.FileName;
}


void MI_Exit_OnClick(对象发送者,EventArgs) e)
{
关闭();
}

[STAThread]
static void Main(){
Application.Run(new TestForm());
}


在Windows 2000下,10次中的4次,它在我第一次尝试显示FolderBrowserDialog时崩溃了。我重新启动后立即运行测试。要运行测试,请启动程序,然后按Ctrl-S。它没有立即崩溃的时间,
如果我不断提出FolderBrowserDialog,它很快就会崩溃。 OpenFileDialog(包含在测试程序中)
在Windows 2000上没有崩溃.OfficeBrowserDialog
没有在Windows XP计算机上崩溃。

当FolderBrowserDialog崩溃时,它就在它之后立即崩溃
显示对话框。对话框显示正常。

出现错误消息窗口 - ''
地址指令在地址处引用的存储器。记忆
无法读取。两个地址始终相同。
关闭错误消息窗口后,出现第二个错误消息窗口 - ''程序生成错误,将被Windows关闭。您将需要重新启动程序。
正在创建错误日志。''日志文件是一个巨大的二进制文件。没有异常被写入控制台。

如果FolderBrowserDialog崩溃Windows
2000会让我感到惊讶,之前没有人报告过它。但是,我现在无法知道这一点。我测试的Windows 2000计算机非常稳定。有时,Windows资源管理器会在计算机上崩溃,但已经过了一个多月。

为了帮助解决这个问题:

*具有FolderBrowserDialog以前报道过崩溃,是在微软网站还是其他地方?我找不到。

*有人可以在他们的Windows 2000多次运行相同的测试,并发布是否崩溃?

*是否有人使用过桌面.NET
应用程序中的FolderBrowserDialog,并测试它在Windows 2000中是否稳定?

非常感谢,
Daniel Goldman


感谢您的测试。不,我还没能尝试任何其他的

WIndows 2000电脑。还有其他人可以多次为FolderBrowserDialog运行测试

程序吗?


Daniel Goldman

FolderBrowserDialog crashes on my Windows 2000 computer.

Here is a C# test program:

using System;
using System.Windows.Forms;

public class TestForm : Form {
FolderBrowserDialog folderBrowserDlg;
OpenFileDialog openFileDlg;
String folderName;
String fileName;

MainMenu mainMenu;
MenuItem mi_Browse;
MenuItem mi_Open;
MenuItem mi_FileMenu;
MenuItem mi_Exit;

public TestForm () {
mainMenu = new MainMenu();

mi_FileMenu = new MenuItem();
mi_FileMenu.Text = "&File";

mi_Browse = new MenuItem();
mi_Browse.Text = "&Select Directory...";
mi_Browse.Shortcut = Shortcut.CtrlS;
mi_Browse.Click += new EventHandler (MI_Browse_OnClick);

mi_Open = new MenuItem();
mi_Open.Text = "&Open File...";
mi_Open.Shortcut = Shortcut.CtrlO;
mi_Open.Click += new EventHandler (MI_Open_OnClick);

mi_Exit = new MenuItem();
mi_Exit.Text = "E&xit Test...";
mi_Exit.Shortcut = Shortcut.CtrlX;
mi_Exit.Click += new EventHandler (MI_Exit_OnClick);

mainMenu.MenuItems.Add (mi_FileMenu);
mi_FileMenu.MenuItems.Add (mi_Browse);
mi_FileMenu.MenuItems.Add (mi_Open);
mi_FileMenu.MenuItems.Add (mi_Exit);

folderBrowserDlg = new FolderBrowserDialog ();
openFileDlg = new OpenFileDialog ();

Menu = mainMenu;
Text = "Dialog Test Form";
}

void MI_Browse_OnClick (object sender, EventArgs e)
{
DialogResult result;

result = folderBrowserDlg.ShowDialog ();
if (result == DialogResult.OK) {
folderName = folderBrowserDlg.SelectedPath;
}
}

void MI_Open_OnClick (object sender, EventArgs e)
{
DialogResult result;

result = openFileDlg.ShowDialog ();
if (result == DialogResult.OK) {
fileName = openFileDlg.FileName;
}
}

void MI_Exit_OnClick (object sender, EventArgs e)
{
Close ();
}

[STAThread]
static void Main () {
Application.Run (new TestForm ());
}
}

Under Windows 2000, 4 of 10 times, it crashed first time I
tried to display the FolderBrowserDialog. I ran the tests
right after rebooting. To run the test, start the program,
and press Ctrl-S. The times it did not immediately crash,
if I kept bringing up the FolderBrowserDialog, it crashed
pretty soon. OpenFileDialog (included in test program)
does not crash on Windows 2000. FolderBrowserDialog
has not crashed on Windows XP computer.

When FolderBrowserDialog crashes, it''s immediately after it
displays the dialog. The dialog appears normal.

An error message window appears - ''The instruction at
"address" referenced memory at "address". The memory
could not be "read". The two addresses are always the same.
After closing error message window, a second error message
window appears - ''program has generated errors and will be
closed by Windows. You will need to restart the program.
An error log is being created.'' The log file is a huge
binary file. No exception gets written to the console.

It would surprise me if FolderBrowserDialog crashed Windows
2000, and nobody reported it before. However, I have no way
of knowing at this point. The Windows 2000 computer I tested
on is pretty stable. Sometimes, Windows Explorer does crash
on the computer, but it''s been more than a month.

To help figure this out:

* Has FolderBrowserDialog crashing been reported before,
either on Microsoft site or elsewhere? I could not find.

* Can someone run same test on their Windows 2000 multiple
times, and post whether it crashes or not?

* Has anyone used FolderBrowserDialog in a desktop .NET
application, and tested it to be stable with Windows 2000?

Many thanks,
Daniel Goldman

解决方案

Hi Daniel,

I have compiled your code on Windows 2000, run it several times, and it does
exactly what it should. No crahses after about 20 times of using it.

Hope this helps

Publicjoe

C# Tutorial at http://www.publicjoe.f9.co.uk/csharp/tut.html
C# Ebook at http://www.publicjoe.f9.co.uk/csharp/samples/ebook.html - 71
Chapters
VB Ebook at http://www.publicjoe.f9.co.uk/vbnet/samples/ebook.html - 28
Chapters
C++ Ebook at http://www.publicjoe.f9.co.uk/cppt/samples/ebook.html - 8
Chapters
Java Ebook at http://www.publicjoe.f9.co.uk/java/samples/ebook.html - 2
Chapters
<hh******@yahoo.com> wrote in message
news:11**********************@g14g2000cwa.googlegr oups.com...

FolderBrowserDialog crashes on my Windows 2000 computer.

Here is a C# test program:

using System;
using System.Windows.Forms;

public class TestForm : Form {
FolderBrowserDialog folderBrowserDlg;
OpenFileDialog openFileDlg;
String folderName;
String fileName;

MainMenu mainMenu;
MenuItem mi_Browse;
MenuItem mi_Open;
MenuItem mi_FileMenu;
MenuItem mi_Exit;

public TestForm () {
mainMenu = new MainMenu();

mi_FileMenu = new MenuItem();
mi_FileMenu.Text = "&File";

mi_Browse = new MenuItem();
mi_Browse.Text = "&Select Directory...";
mi_Browse.Shortcut = Shortcut.CtrlS;
mi_Browse.Click += new EventHandler (MI_Browse_OnClick);

mi_Open = new MenuItem();
mi_Open.Text = "&Open File...";
mi_Open.Shortcut = Shortcut.CtrlO;
mi_Open.Click += new EventHandler (MI_Open_OnClick);

mi_Exit = new MenuItem();
mi_Exit.Text = "E&xit Test...";
mi_Exit.Shortcut = Shortcut.CtrlX;
mi_Exit.Click += new EventHandler (MI_Exit_OnClick);

mainMenu.MenuItems.Add (mi_FileMenu);
mi_FileMenu.MenuItems.Add (mi_Browse);
mi_FileMenu.MenuItems.Add (mi_Open);
mi_FileMenu.MenuItems.Add (mi_Exit);

folderBrowserDlg = new FolderBrowserDialog ();
openFileDlg = new OpenFileDialog ();

Menu = mainMenu;
Text = "Dialog Test Form";
}

void MI_Browse_OnClick (object sender, EventArgs e)
{
DialogResult result;

result = folderBrowserDlg.ShowDialog ();
if (result == DialogResult.OK) {
folderName = folderBrowserDlg.SelectedPath;
}
}

void MI_Open_OnClick (object sender, EventArgs e)
{
DialogResult result;

result = openFileDlg.ShowDialog ();
if (result == DialogResult.OK) {
fileName = openFileDlg.FileName;
}
}

void MI_Exit_OnClick (object sender, EventArgs e)
{
Close ();
}

[STAThread]
static void Main () {
Application.Run (new TestForm ());
}
}

Under Windows 2000, 4 of 10 times, it crashed first time I
tried to display the FolderBrowserDialog. I ran the tests
right after rebooting. To run the test, start the program,
and press Ctrl-S. The times it did not immediately crash,
if I kept bringing up the FolderBrowserDialog, it crashed
pretty soon. OpenFileDialog (included in test program)
does not crash on Windows 2000. FolderBrowserDialog
has not crashed on Windows XP computer.

When FolderBrowserDialog crashes, it''s immediately after it
displays the dialog. The dialog appears normal.

An error message window appears - ''The instruction at
"address" referenced memory at "address". The memory
could not be "read". The two addresses are always the same.
After closing error message window, a second error message
window appears - ''program has generated errors and will be
closed by Windows. You will need to restart the program.
An error log is being created.'' The log file is a huge
binary file. No exception gets written to the console.

It would surprise me if FolderBrowserDialog crashed Windows
2000, and nobody reported it before. However, I have no way
of knowing at this point. The Windows 2000 computer I tested
on is pretty stable. Sometimes, Windows Explorer does crash
on the computer, but it''s been more than a month.

To help figure this out:

* Has FolderBrowserDialog crashing been reported before,
either on Microsoft site or elsewhere? I could not find.

* Can someone run same test on their Windows 2000 multiple
times, and post whether it crashes or not?

* Has anyone used FolderBrowserDialog in a desktop .NET
application, and tested it to be stable with Windows 2000?

Many thanks,
Daniel Goldman



I too just tried your code on a 2K SP4 machine with no ill results. Have you
been able to try it on any other 2K machines?

Brendan

"hh******@yahoo.com" wrote:

FolderBrowserDialog crashes on my Windows 2000 computer.

Here is a C# test program:

using System;
using System.Windows.Forms;

public class TestForm : Form {
FolderBrowserDialog folderBrowserDlg;
OpenFileDialog openFileDlg;
String folderName;
String fileName;

MainMenu mainMenu;
MenuItem mi_Browse;
MenuItem mi_Open;
MenuItem mi_FileMenu;
MenuItem mi_Exit;

public TestForm () {
mainMenu = new MainMenu();

mi_FileMenu = new MenuItem();
mi_FileMenu.Text = "&File";

mi_Browse = new MenuItem();
mi_Browse.Text = "&Select Directory...";
mi_Browse.Shortcut = Shortcut.CtrlS;
mi_Browse.Click += new EventHandler (MI_Browse_OnClick);

mi_Open = new MenuItem();
mi_Open.Text = "&Open File...";
mi_Open.Shortcut = Shortcut.CtrlO;
mi_Open.Click += new EventHandler (MI_Open_OnClick);

mi_Exit = new MenuItem();
mi_Exit.Text = "E&xit Test...";
mi_Exit.Shortcut = Shortcut.CtrlX;
mi_Exit.Click += new EventHandler (MI_Exit_OnClick);

mainMenu.MenuItems.Add (mi_FileMenu);
mi_FileMenu.MenuItems.Add (mi_Browse);
mi_FileMenu.MenuItems.Add (mi_Open);
mi_FileMenu.MenuItems.Add (mi_Exit);

folderBrowserDlg = new FolderBrowserDialog ();
openFileDlg = new OpenFileDialog ();

Menu = mainMenu;
Text = "Dialog Test Form";
}

void MI_Browse_OnClick (object sender, EventArgs e)
{
DialogResult result;

result = folderBrowserDlg.ShowDialog ();
if (result == DialogResult.OK) {
folderName = folderBrowserDlg.SelectedPath;
}
}

void MI_Open_OnClick (object sender, EventArgs e)
{
DialogResult result;

result = openFileDlg.ShowDialog ();
if (result == DialogResult.OK) {
fileName = openFileDlg.FileName;
}
}

void MI_Exit_OnClick (object sender, EventArgs e)
{
Close ();
}

[STAThread]
static void Main () {
Application.Run (new TestForm ());
}
}

Under Windows 2000, 4 of 10 times, it crashed first time I
tried to display the FolderBrowserDialog. I ran the tests
right after rebooting. To run the test, start the program,
and press Ctrl-S. The times it did not immediately crash,
if I kept bringing up the FolderBrowserDialog, it crashed
pretty soon. OpenFileDialog (included in test program)
does not crash on Windows 2000. FolderBrowserDialog
has not crashed on Windows XP computer.

When FolderBrowserDialog crashes, it''s immediately after it
displays the dialog. The dialog appears normal.

An error message window appears - ''The instruction at
"address" referenced memory at "address". The memory
could not be "read". The two addresses are always the same.
After closing error message window, a second error message
window appears - ''program has generated errors and will be
closed by Windows. You will need to restart the program.
An error log is being created.'' The log file is a huge
binary file. No exception gets written to the console.

It would surprise me if FolderBrowserDialog crashed Windows
2000, and nobody reported it before. However, I have no way
of knowing at this point. The Windows 2000 computer I tested
on is pretty stable. Sometimes, Windows Explorer does crash
on the computer, but it''s been more than a month.

To help figure this out:

* Has FolderBrowserDialog crashing been reported before,
either on Microsoft site or elsewhere? I could not find.

* Can someone run same test on their Windows 2000 multiple
times, and post whether it crashes or not?

* Has anyone used FolderBrowserDialog in a desktop .NET
application, and tested it to be stable with Windows 2000?

Many thanks,
Daniel Goldman



Thanks for testing. No, I have not been able to try on any other
WIndows 2000 computers. Could anyone else please run the test
program for FolderBrowserDialog multiple times?

Daniel Goldman


这篇关于FolderBrowserDialog在Windows 2000上崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆