Delphi ActiveX Requires Chilkat v11.0.0+
Delphi ActiveX
Transition from Zip.AppendSb to Zip.AddSb
Provides instructions for replacing deprecated AppendSb method calls with AddSb.Chilkat Delphi ActiveX Downloads
var
success: Integer;
zip: TChilkatZip;
pathInZip: WideString;
sb: TChilkatStringBuilder;
charset: WideString;
begin
success := 0;
zip := TChilkatZip.Create(Self);
// ...
// ...
pathInZip := 'example.txt';
sb := TChilkatStringBuilder.Create(Self);
sb.Append('This is a test');
charset := 'utf-8';
// ------------------------------------------------------------------------
// The AppendSb method is deprecated:
success := zip.AppendSb(pathInZip,sb.ControlInterface,charset);
// ------------------------------------------------------------------------
// For consistency, the name has changed to AddSb.
success := zip.AddSb(pathInZip,sb.ControlInterface,charset);