Board index » Visual Studio » replacement for FileListBox...

replacement for FileListBox...

Visual Studio282
Is there available DotNet code to replace the VB6 FileListBox and

DirListBox, keeping the original appearances?



Thanks in advance for any help


-
 

Re:replacement for FileListBox...

Just me,



While not using the VB comptible namespace (which you should avoid in my

opinion) only by building it yourself using a listbox.



Cor





-

Re:replacement for FileListBox...

" Just Me" <newsgroups@a-znet.com>schrieb:

Quote
Is there available DotNet code to replace the VB6 FileListBox and

DirListBox, keeping the original appearances?



These controls are still available as part of

"Microsoft.VisualBasic.Compatibility.dll". However, I would not use them

because there is no guarantee that this library will be available in future

versions of VS.NET. Use OpenFileDialog/FolderBrowserDialog instead.



You will find a "replacement" for the DirListBox here:



<URL:download.microsoft.com/download/8/0/3/8038df53-4450-409a-a293-f8f1d0cc0efb/DirListBox.msi>">download.microsoft.com/download/8/0/3/8038df53-4450-409a-a293-f8f1d0cc0efb/DirListBox.msi>



--

Herfried K. Wagner [MVP]

<URL:dotnet.mvps.org/>">dotnet.mvps.org/>



-

Re:replacement for FileListBox...

Thanks







-