I’m testing some new features in the latest beta for an open source module and I want to be able to offer them for users of that latest version of Xojo but fall back to a different method for older versions.
I see that there is a XojoVersionString
method that returns the current version of Xojo (in this case, it’s "2024r2"
). I could do this:
#If XojoVersion = "2024r2" Then
// Do something
#EndIf
How do I detect if the version is >=
that 2024r2 when a string is provided?
2 posts - 2 participants