Kinook Software Forum

Kinook Software Forum (https://www.kinook.com/Forum/index.php)
-   [VBP] User Tips, Tricks and Samples (https://www.kinook.com/Forum/forumdisplay.php?f=19)
-   -   Manually setting macros (https://www.kinook.com/Forum/showthread.php?t=1817)

martys 06-09-2006 08:45 AM

Manually setting macros
 
For developer builds, we don't worry about version numbers when we build every night. However, when semi-official builds go out to QA, we want to set the build version number properly. So, rather than trying to do it programmatically, since version numbers are questionable in their progression, we put a "Set Macro" step at the beginning of the build, so it's pretty much a two-step process. Start the build, input the version numbers. Of course, we want to have a messagebox popping up to ask what we want to set it to in all cases, not just when no macro exists. And rather than having to type in the whole version number, it could display the existing version number. To make a long story short (too late), here's a little script that will prompt the user for any macro and display the current version.

Code:

function getMacro(name)
        dim tmp
        tmp = ""
        if not vbld_AllMacros.Item(name) is nothing then tmp = vbld_AllMacros.Item(name)
        getMacro = inputbox("Please enter " & name, "Set Macro", tmp)
end function

Then you call it in the Set Macro action using [getMacro("Version")]


All times are GMT -5. The time now is 08:06 AM.


Copyright © 1999-2023 Kinook Software, Inc.