Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Qm Version
#1
How cani make it check to see what version of macros they have, and say if they dont have the newest macro like 2.3 and up the macro wont run it will tell them to come to site and update macros
#2
Gets current version:
Macro
Trigger SF9     Help - how to add the trigger to the macro
Code:
Copy      Help
out _qmver_str

Then just do...
Macro
Trigger SF9     Help - how to add the trigger to the macro
Code:
Copy      Help
str ReqVer = "2.3.0"
str MyVer = _qmver_str
if MyVer != ReqVer
,mes "Update QM..."
,web "http://www.quickmacros.com" 0x4
#3
ok thanks.
#4
QM version numeric value also is in QMVER.

to see
out "0x%X" QMVER

to check
if(QMVER<0x203000C)
,....
#5
but how do i make the macro not run if they dont have the right version?
#6
if(QMVER<0x203000C) ret


Forum Jump:


Users browsing this thread: 1 Guest(s)