Xojo Plugin
Xojo Plugin
Get Version of Chilkat
Demonstrate how to find out the version of Chilkat at runtime.Chilkat Xojo Plugin Downloads
// Most Chilkat classes include a Version property.
// To find the version of Chilkat, such as "9.5.0.94",
// instantiate the object and examine the Version property.
// For example:
Dim sftp As New Chilkat.SFtp
Dim chilkatVersion As String
chilkatVersion = sftp.Version
System.DebugLog(chilkatVersion)
// Most other Chilkat classes also have the Version property
// For example:
Dim json As New Chilkat.JsonObject
System.DebugLog(json.Version)