View Single Post
  #2  
Old 10-19-2005, 11:02 AM
kevina kevina is online now
Registered User
 
Join Date: 03-26-2003
Posts: 825
The simplest way would probably be to add some script to the vbld_StepStarted event of the subroutine, to output any additional info you want to display in the log. Here is a sample vbscript event method implementation (modify as necessary for your macro name(s) and formatting desired):

Function vbld_StepStarted()
Builder.LogMessage " with %TESTMACRO%" + " = " + Application.ExpandMacrosAndScript("%TESTMACRO%")
End Function
Reply With Quote