View Single Post
  #4  
Old 04-19-2010, 06:10 PM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,015
To save all macros (highest precedence for different types with same name):
Code:
vbld_AllMacros.Save "%TEMP%\All.macros"
http://www.kinook.com/VisBuildPro/Ma...scriptmisc.htm

To save a particular type of macros (i.e., Temporary):
Code:
Application.Macros(vbldMacroTemporary).Save "%TEMP%\Temp.macros"
Put the code in a Run Script step.

http://www.kinook.com/VisBuildPro/Manual/runscript.htm
Reply With Quote