I have an event in a component (VCLZip) that uses the comp type, but to display the result as a string I think I need to convert the comp value to int64, but I can not find a way to do so. Is there a way to convert a comp value to int64? or is there a different way to display a comp value as a string with commas ... maybe Format?
function FormatKBSize( Bytes: Cardinal ): string;
{ Converts a numeric value into a string that represents the number expressed as a size value in kilobytes. }
var
arrSize: array [ 0 .. 255 ] of char;
begin
{ explorer style }
Result := '';
{ same formating used in the Size column of Explorer in detailed mode }
Result := ShLwApi.StrFormatKBSizeW( Bytes, arrSize, Length( arrSize ) - 1 );
end;
procedure TFormMain.VCLZip1StartZipInfo( Sender: TObject; NumFiles: Integer; TotalBytes: Comp;
var EndCentralRecord: TEndCentral; var StopNow: Boolean );
var
Tb: int64;
begin
InfoWin.Lines.Add( '' );
InfoWin.Lines.Add( 'Number of files to be zipped: ' + IntToStr( NumFiles ) + '...' );
Tb := TotalBytes; // <= this will not compile
Tb := Int64(TotalBytes); // <= this will not compile
InfoWin.Lines.Add( 'Total bytes to process: ' + FormatKBSize( Tb ) + '...' );
end;
Edit - this seems to work but is there a better way?
InfoWin.Lines.Add( Format( '%n', [ TotalBytes ] ) );
Tb := TotalBytesand the following statement are making little sense, while message accompanying "wont compile" error explains a lot. Moreover, selecting this message and pressing F1 yields an explanation and resolution recipe. Not my downvote but really could be. – user539484 Nov 9 '11 at 3:37Tb := TotalBytesmakes perfect sense. The question is why it is so hard to assign aCompto anInt64. – David Heffernan Nov 9 '11 at 5:21