Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
Compute File CRCCalculate the CRC for a file in the filesystem.
uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ChilkatZip2Lib_TLB, OleCtrls; ... procedure TForm1.Button1Click(Sender: TObject); var zipCrc: TChilkatZipCrc crc: Integer; hexStr: String; begin zipCrc := TChilkatZipCrc.Create(Self) crc := zipCrc.FileCrc('someFile.dat'); hexStr := zipCrc.ToHex(crc); Memo1.Lines.Add(hexStr); end; |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.