Page 1 of 1

SPS Version Number

Posted: Wed May 19, 2021 2:46 pm
by KWoods
Is there a way to get the version number of the SoftPro release in the API? I want to be able to show what version the order was created with.

Re: SPS Version Number

Posted: Wed May 19, 2021 3:27 pm
by BobRichards
Get the order CreatedWithVersion property for a string holding the Select version that created the order. String can be converted to actual Version struct if desired...

Code: Select all

string s = (string)order.GetProperty("CreatedWithVersion");
Version v = new Version(s);