Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Email alert, if files checked in/out 1

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hello,
I would like to know, if VSS can send an email alert, if files are checked IN/OUT.

Thanx in advance,
Gautam
 
You have two options, code your solution, or buy a 3rd party application.

Microsoft has information on how to do this at:

The only application I've seen that will do this is SourceVizor (
I coded my own solution by creating an add-in DLL that traps certain events. For the e-mail notification, I use the BeforeCheckIn and AfterCheckIn event handlers to generate the email.

kamikrazy@yahoo.com
 
The microsoft article that Kamikrazy suggests looks really good - it takes you through all the detail required to create an ActiveX DLL to interface with SourceSafe. I've read through it, and now started using it, but I have a runtime error with VB:-

"User defined type not defined" - which refers to the VSSApp bit in the code below.

Code:
Implements IVSSEventHandler
Dim WithEvents VSSHandler As VSSApp

I've added the SourceSafe Type Library to my project references. Does anyone what I need to include/define in order to get VSSApp recognised?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top