I have a WinForms remoted application using a simple OpenFileDialog control. When I instantiate the dialog, the program hangs and never responds. This only happens on Windows 2000. The program functions perfectly on Win XP & Win 98. The user is running the program as a local Admin, so Code Access Security should not be a problem (it should generate an exception anyway). Just to be sure, I verified the security. The code is very simple. I found one other post relating to this on the web, but it did not have an answer. Here is the code:
OpenFileDialog fileDialog = new OpenFileDialog( );
if( fileDialog.ShowDialog( ) == DialogResult.OK )
{
...
}
The program freezes at the call to ShowDialog( ). Does anyone know what is going on

OpenFileDialog "hangs" on Windows 2000
alext_2002
- mike
TechWriter
RemotingConfiguration.Configure(null);
this.openFileDialog1.ShowDialog();
- mike
sakile
kokfai
fdgrau
Dev2808
libragirl
thanks
- mike
Eric_D
< xml version="1.0" encoding="utf-8" >
<configuration>
<system.runtime.remoting>
<application>
<client>
<wellknown type="IntranetManagementServer, ContentManagerServer" url="tcp://vistanet:4297/IntranetManagementServer" />
</client>
<channels>
<channel ref="tcp client" />
</channels>
</application>
</system.runtime.remoting>
</configuration>
TRodS
fantus
What has helped most of the machines is that ALL of the windows updates must be in place- including the dot net service pact. This has fixed all but two machines.
Still working on those two- when we have the time.
Maybe this helps some but I know that it is not the answer for all.
Leonardo Juszkiewicz
rgsiii
thanks
- mike
ashade
John Lagonikas