View Single Post
  #2  
Old 08-04-2005, 05:51 PM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,027
The vbld_StepDone event still fires if a step's action is skipped. If you need to execute some logic in the event only if it wasn't skipped, use code like this:

If Step.BuildStatus <> vbldStepStatSkipped Then
' logic if not skipped goes here
End If
Reply With Quote