Page 1 of 1

Detecting Capital Version

Posted: Tue Jan 10, 2012 1:59 pm
by jamesc323
Hi Wil,

Is there a function in Capital scripting which will allow the detecting of whether the user is running version 7 or 8?
I discovered recently some of the legacy script running in version 7 requires slight modification to run in version 8, but currently the company is running version 7 & 8 concurrently.

Thanks
James

Posted: Tue Jan 10, 2012 6:49 pm
by COBS Tech Support
Yes, do this:

Code: Select all

If Version(3) = 8
   Echo("V8 is running")
Endif


For additional information consult the help topic: Version()