02-23-2022 06:10 AM
I am building an application based on DIAdem, and I want to test and confirm that it will work within the feature limitations between DIAdem Base/Advanced/Professional editions. What options exist (if any) that allow me to run my application (VBScript) within each of the different DIAdem editions?
02-23-2022 08:36 AM
Hi markwkiehl,
If you encapsulate all the functions in a VBS script, you can run your application in all editions.
But maybe this is of interest for you:
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