01-13-2022 10:19 AM
I am trying to make a script that will allow me to easily change between and load different functions for the older Diadem 2012 and the current Diadem 2021. Is there a function that can find what version of diadem is currently being used so that I can make the swap between the 2 versions?
Solved! Go to Solution.
01-14-2022 02:50 AM
Hi BrandonHosken,
Here is a list of such information:
msgbox "Version: " & programversion
msgbox "Revision: " & programrevision
MsgBox "Build No: " & ProgramBuild
' since DIAdem 2010
msgbox "Version name: " & ProgramVersionName
' since DIAdem 2012
msgbox "atfx - DataPlugin Version: " & navigator.Settings.RegisteredDataPlugins("atfx").Version
' since DIAdem 2014
msgbox "Bitness: " & ApplicationBitness
Greetings
Walter
01-14-2022 08:52 AM
Thank you!