Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Excerpt

GetEnvironmentVariable() enables to get get environmental variables like TEMP.


Code Block
var tmp:string;
begin
	tmp := GetEnvironmentVariable('TEMP');
	.
	.
	.
end;

...