System.Exception

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All
I have already asked this questio but I'll be more specific

I'm using the component: openFileDialo
* openFileDialog1.Multiselect = true
* I don't choose Directory, just some files in it
* I select a little more then 200 files
* I have .Net Framework version: 1.0.3705 on WinXP
* The file names are with very long name + path

when I choose Many files the this exception comes
{"Too many files selected. Please select fewer files and try again." } System.Exceptio

Any ideas ? is there any limit ?
Does anyone know maybe about some bugs on this component
Do I need to install .Net Framework 1.1

thanx.
 
I have already asked this questio but I'll be more specific:
I'm using the component: openFileDialog
* openFileDialog1.Multiselect = true;
* I don't choose Directory, just some files in it.
* I select a little more then 200 files.
* I have .Net Framework version: 1.0.3705 on WinXP.
* The file names are with very long name + path.

when I choose Many files the this exception comes:
{"Too many files selected. Please select fewer files and try again." } System.Exception

Any ideas ? is there any limit ?!
Does anyone know maybe about some bugs on this component ?
Do I need to install .Net Framework 1.1 ?


in my knowlegde the paths of all selected files are concatenated and then
returned from the native GetSaveFileName() function. maybe the path you are
using is too deep to the resulting string is getting to large.
you could try it with a path less deep and tell us if the results are the
same.
 
Back
Top