View Single Post
  #2  
Old 10-31-2008, 11:12 AM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,027
You could use project-level script events:

Code:
Sub vbld_StepStartingProject()

	If Step.Action = "SourceSafe" Then  ' replace with source control action being used
		' record step starting time
	End If

End Sub

Sub vbld_StepDoneProject()

	If Step.Action = "SourceSafe" Then
		' log elapsed time, etc.
	End If

End Sub
http://www.kinook.com/VisBuildPro/Ma...riptevents.htm
Reply With Quote