PDA

View Full Version : ignore the --1073741819 error code


morlajb
04-27-2008, 03:55 AM
Hi

I am using the follow VB script o ignore the error.

Sub vbld_StepDone()
If CLng(Application.ExpandMacros("%RUNPROGRAM_EXITCODE%")) = -1073741819 Then
Step.BuildStatus = vbldStepStatSucceeded
End If
End Sub

I want to add to the log file every occurrence of the error.

How can I do it ??

Thanks , Mor

kinook
04-27-2008, 08:24 AM
http://www.visualbuild.com/Manual/logmessagemethod.htm

morlajb
04-27-2008, 08:36 AM
Thanks for the quick response

Mor