news |
info |
people |
software |
stuff |
Note that this routine requires the Version XFCN.
on UL_SetStackVersion name,v,r,text
-- go to the stack
UL_LockAndPush
go stack name
-- set numeric version in form 1.0d2, 1.3b4, etc...
put v & r into numeric
get Version("numbers","stack",numeric)
-- set string for Info dialog
get Version("about","stack",numeric & ", " & text)
-- go back to where we were
UL_UnlockAndPop
end UL_SetStackVersion