Sample code for 30+ languages & platforms
Visual FoxPro

Get Version of Chilkat

Demonstrate how to find out the version of Chilkat at runtime.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL loSftp
LOCAL lcChilkatVersion
LOCAL loJson

* 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:
loSftp = CreateObject('Chilkat.SFtp')
lcChilkatVersion = loSftp.Version
? lcChilkatVersion

* Most other Chilkat classes also have the Version property
* For example:
loJson = CreateObject('Chilkat.JsonObject')
? loJson.Version

RELEASE loSftp
RELEASE loJson