Registriert seit: 23. Jun 2003
416 Beiträge
Delphi 2006 Professional
|
Re: Returncode von WinRar
22. Jan 2005, 14:02
Hi,
da ich eben gemerkt habe, dass mein Delphi mit der Funktion noch gar nichts anzufangen weiß, hier ein anderer Weg:
Delphi-Quellcode:
function GetEnvVar(name: String): String;
var
pc: PChar;
l: Integer;
begin
l := GetEnvironmentVariable(PChar(name), nil, 0);
GetMem(pc, l);
try
GetEnvironmentVariable(PChar(name), pc, l);
result := pc;
finally
FreeMem(pc, l);
end;
end;
Aufruf mit:
Label1.Caption := GetEnvVar('PATH');
"Electricity is actually made up of extremely tiny particles called electrons, that you cannot see with the naked eye unless you have been drinking." (Dave Barry)
|