B
BrianGenisio
Hi all,
I am having a problem with the FolderBrowserDialog. I have attached an
application that exercises the problem by calling the
FolderBrowserDialog. When I Run this app as a different user, and
click "Make New Folder", the dialog does not update. (The new folder is
created... the dialog does not update) If I run this app normally, the
dialog updates normally.
To replicate the issue, compile this appliation, and run it as a
different user on your system by right-clicking and choosing "Run As".
Does anyone know how to fix this problem?
*Hint: This same problem exists with the Win32 function
SHBrowseForFolder. The .NET FolderBrowserDialog control is obviously
just a wrapper to this Win32 call.
Code:
using System;
using System.Windows.Forms;
namespace FolderTest
{
class Test
{
static void Main(string[] args)
{
FolderBrowserDialog folderBrowser = new
FolderBrowserDialog();
folderBrowser.ShowDialog( );
}
}
}
I am having a problem with the FolderBrowserDialog. I have attached an
application that exercises the problem by calling the
FolderBrowserDialog. When I Run this app as a different user, and
click "Make New Folder", the dialog does not update. (The new folder is
created... the dialog does not update) If I run this app normally, the
dialog updates normally.
To replicate the issue, compile this appliation, and run it as a
different user on your system by right-clicking and choosing "Run As".
Does anyone know how to fix this problem?
*Hint: This same problem exists with the Win32 function
SHBrowseForFolder. The .NET FolderBrowserDialog control is obviously
just a wrapper to this Win32 call.
Code:
using System;
using System.Windows.Forms;
namespace FolderTest
{
class Test
{
static void Main(string[] args)
{
FolderBrowserDialog folderBrowser = new
FolderBrowserDialog();
folderBrowser.ShowDialog( );
}
}
}