Ver Mensaje Individual
  #3  
Antiguo 16-05-2007
Avatar de cHackAll
[cHackAll] cHackAll is offline
Baneado?
 
Registrado: oct 2006
Posts: 2.159
Reputación: 20
cHackAll Va por buen camino
Cool Mmmm

Lo mismo que lo tuyo:

Código Delphi [-]
procedure GetDrives;
var Drive: Char;
begin
 for Drive := 'A' to 'Z' do
  begin
   if GetDriveType(PChar(Drive + ':\')) in [DRIVE_REMOVABLE, DRIVE_CDROM, DRIVE_RAMDISK] then
    Form1.Memo1.Lines.Add(Drive + ':');
   end;
end;

No entiendo lo que quieres concretamente. tu mismo te respondiste!
Responder Con Cita