
12-03-2018, 06:12
|
 |
Registered User
|
|
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 696 Times in 191 Posts
|
|
Quote:
Originally Posted by Webster17
Thanks man, got most of the fixes but still the disk issue problem persists
|
Code:
function MbOrTb(Float: Extended): String;
begin
if Float/1024 < 1024 then Result:= format('%.2n', [Float/1024])+' MB' else
Result:= format('%.2n', [Float/(1024*1024)])+' GB';
StringChange(Result, ',', '.');
end;
__________________
if you understand read more
|