A special note about the new BUILD property. It returns a number value indicating the current incremental release build of the object. It can be used to check a couple of things ... both at the same time.

Used like this, it can test to see if the latest build is installed:

code:
If $Form.Build < 32
?"Kixforms build not current"
Quit()
EndIf

But ... if Kixforms isn't installed on the platform, what happens then. Well - a more clever way of using this feature may be to add the VAL() function into the mix, like this:

code:
If Val($Form.Build) < 32
?"Kixforms not installed or build not current"
Quit()
EndIf

This catches both Kixforms not installed (an invalid $Form handle) and build not current.