OpenFileDialog - MyComputer

  • Thread starter Thread starter PiotrKolodziej
  • Start date Start date
P

PiotrKolodziej

Hi
I have a problem. When i enter MyComputer via openfiledialog, i cant see any
drives, to change, and generally window is open.
Thanks for any help.
 
Hello Piotr,
have you tried this?
OpenFileDialog myOpenFileDialog=new OpenFileDialog();


myOpenFileDialog.FileName = "*.*";

myOpenFileDialog.ShowDialog(this);

regards Alwin
 
In this case you should verify your assembly.
V1.1
%WINDIR%\Microsoft.NET\Framework\v1.1.4322\System.Windows.Forms.dll
or
V2.0
%WINDIR%\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll
does it exist or does your application use another one?
I feel your Dll has a problem, or your app doesn't load the correct one.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top