Is there any control drivelistbox in Dot Net ?
I have seen this control in VB6 but not in dot net ?
Is there any control drivelistbox in Dot Net ? I have seen this control
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends on what you’re using (WPF, WinForms, etc.) but I suppose there is not. You could easily make one though, just populate a ListBox with a list of drives.
You can get an array of the logical drives on your computer using the
Environment.GetLogicalDrives()method.