#1
|
|||
|
|||
Date-specific logfile
How can I get a datetime-specific logile something like:
log04012004-0402.log Under project properties I tried: %PROJDIR%\%PROJROOT%%[vbld_FormatDate()]%.log but the VBScript did not resolve. Any ideas? Doug |
#2
|
|||
|
|||
That works here. Hold down Shift when mousing over the field to cause the script to be evaluated for the tooltip.
|
#3
|
|||
|
|||
It works
I tried:
%PROJDIR%\%PROJROOT%%[vbld_FormatDate]%-%[vbld_FormatTime]%.log and held down SHIFT key and it worked. thanks. |
#4
|
|||
|
|||
I didn't notice the extra percent signs you had. Those should be removed:
%PROJDIR%\%PROJROOT%[vbld_FormatDate()].log %PROJDIR%\%PROJROOT%[vbld_FormatDate]-[vbld_FormatTime].log |
|
|