Home - RAD C++ GUI Lib 1.2.2 Documentation
Published on March 09, 2007 [03:04:02 PM]



Browse class : System

Property : driveTypes     ( Read Only )


Description

A readonly property that returns an array of type StringList having each element of it as drive tye in textual format.
Remarks

#include
Form form1("System Drive Types");

rad_main()

StringList drives = System.drives;
StringList types = System.driveTypes;

String temp = "Total Drives found : " + str(drives.length) + "\n\n";

for(int i=0; i temp = temp + "\n" + drives[i] + " - " + types[i];
}
form1.msgBox(temp);

rad_end()




Visit www.radcpp.com for more help and updates. Documentation created using FlaX.Doc