P
PaulRuebens
Guest
Okay Im doing a basic program to see how VB NET works. It simple in that I want to just list the drives on my machine. So far here is my code
Problem Im getting is that I get an error back that says "Directory not declared".......
did I do something wrong? Thanks!
Code:
dim sDrives() as String
dim i as integer
sDrives = Directory.GetlogicalDrives()
For i = 0 to Ubound(sDrives)
Console.Writeline(sDrives(i))
Next
Problem Im getting is that I get an error back that says "Directory not declared".......
did I do something wrong? Thanks!