B4X
B4X
Get Version of Chilkat
Demonstrate how to find out the version of Chilkat at runtime.Chilkat B4X 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 ChilkatSFtp
sftp.Initialize("sftp")
Dim chilkatVersion As String = sftp.Version
Log(chilkatVersion)
' Most other Chilkat classes also have the Version property
' For example:
Dim json As ChilkatJsonObject
json.Initialize
Log(json.Version)