Hello
In the past I used Visual Studio 6 and recently I changed to .net.
But I have some projects where I use a Filelistbox and a dirlistbox.
When I want to do the same in .net i can't make it.
Anyone Idees?
Hello
In the past I used Visual Studio 6 and recently I changed to .net.
But I have some projects where I use a Filelistbox and a dirlistbox.
When I want to do the same in .net i can't make it.
Anyone Idees?
If those controls are not included in .NET , then you'll probably have to look around for 3rd party replacements or "roll-your-own", possibly using a treeview for the dirs and a listbox for the files.
Private Sub Drive1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Drive1.SelectedIndexChanged
Dir1.Path = Drive1.Drive
End Sub
Private Sub Dir1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Dir1.SelectedIndexChanged
File1.Path = Dir1.Path
End Sub
Dir1 = Dirlistbox
Drive1 = Drivelistbox
file1 = Filelistbox
the components are in Visual Basic .net just not added into the pannel. Right click on the Forms Pannel goto Add/Remove and scroll down towards the bottom of the dialog box and you should see them just check them and then you can begin!.