#1
|
|||
|
|||
Need to save/dump macro values to a file
I am sorry if this has been answered before, but I am looking for a way to save all of the macros and values to a text file. Anybody know how to do this?
|
#2
|
|||
|
|||
Which macros? In what format? Macros.Save will save in XML format.
http://www.kinook.com/VisBuildPro/Ma...savemethod.htm |
#3
|
|||
|
|||
We are trying to save all macros at the start of a build for later debugging if need be. Format really does not mater, XML will work just fine. I am trying to figure out how to use the Macro.Save currently.
|
#4
|
|||
|
|||
To save all macros (highest precedence for different types with same name):
Code:
vbld_AllMacros.Save "%TEMP%\All.macros" To save a particular type of macros (i.e., Temporary): Code:
Application.Macros(vbldMacroTemporary).Save "%TEMP%\Temp.macros" http://www.kinook.com/VisBuildPro/Manual/runscript.htm |
|
|