PDA

View Full Version : How can I set the log filename based on the current date?


kinook
03-23-2004, 12:36 PM
In the Logging options (http://www.kinook.com/VisBuildPro/Manual/projloggingtab.htm) dialog (File | Properties | Logging), a value of

%PROJDIR%\%PROJROOT%\[vbld_FormatDate()].xml

for the Log filename will log to a file in the project path with the filename formatted with the current date in yyyymmdd format. It uses the system script (http://www.kinook.com/VisBuildPro/Manual/sysscriptdatetime.htm) function vbld_FormatDate.

Or, you can call the vbld_FormatDateEx() script function if different formatting is required. For instance,

[vbld_FormatDateEx(Now, "yyyy-mm-d hh-MM-SS")]

See the help for more details.
http://www.visualbuild.com/Manual/sysscriptdatetime.htm
http://www.visualbuild.com/Manual/buildlogging.htm