Chilkat v9.5.0.82 Release Notes

The next version release notes: Chilkat v9.5.0.83 Release NotesThe previous version release notes: Chilkat v9.5.0.80 Release Notes (Chilkat v9.5.0.81 was a hotfix specific to UWP (Universal Windows Platform) on NuGet.) Chilkat v9.5.0.82 Release Notes 1-Feb-2020 TLS 1.3:   TLS 1.3 can be optionally enabled by adding the “EnableTls13” keyword to the UncommonOptions property in various classes:  Socket, Http, Rest, Imap, MailMan, […]

Delphi DLL TaskCompleted Callbacks

Also see: Delphi DLL AbortCheck Callbacks Delphi DLL PercentDone Callbacks Delphi DLL ProgressInfo Callbacks 1) First define a procedure exactly as shown here. Make sure to use the “cdecl” calling convention. 2) Set the task completed callback by calling the appropriate SetTaskCompleted function. For the CkRest object it is CkZip_SetTaskCompleted(rest,MyTaskCompleted); Note: This example shows TaskCompleted callbacks using CkRest. The same […]

Delphi DLL ProgressInfo Callbacks

Also see: Delphi DLL AbortCheck Callbacks Delphi DLL PercentDone Callbacks Delphi DLL TaskCompleted Callbacks 1) First define a procedure exactly as shown here. Make sure to use the “cdecl” calling convention. 2) Set the ProgressInfo callback by calling the appropriate SetProgressInfo function. For the CkSocket object it is CkSocket_SetProgressInfo(sock,MyProgressInfo); Note: This example shows ProgressInfo callbacks using CkSocket. The same technique […]

Delphi DLL AbortCheck Callbacks

Also see: Delphi DLL PercentDone Callbacks Delphi DLL ProgressInfo Callbacks Delphi DLL TaskCompleted Callbacks 1) First define a function exactly as shown here. Make sure to use the “cdecl” calling convention. Returning a non-zero Result will cause the Chilkat method to abort. 2) Set the abort check callback by calling the appropriate SetAbortCheck function. For the CkZip object it is […]

Delphi DLL PercentDone Callbacks

Also see: Delphi DLL AbortCheck Callbacks Delphi DLL ProgressInfo Callbacks Delphi DLL TaskCompleted Callbacks 1) First define a function exactly as shown here.  Make sure to use the “cdecl” calling convention. Returning a non-zero Result will cause the Chilkat method to abort.  It is important to set Result := 0 to allow the Chilkat method to continue. 2) Set the […]