Click here to Skip to main content
15,879,074 members
Articles / Programming Languages / Visual Basic

Visual SourceSafe Journal Monitor Service

Rate me:
Please Sign up or sign in to vote.
4.94/5 (12 votes)
27 Jan 200412 min read 151.8K   853   59  
VMS is a windows service developed in .Net that monitors a Microsoft Visual SourceSafe (VSS) database. Customized alerts may be sent based on the defined filters.
Namespace DataStore
	Public MustInherit Class BaseDataStore
		Inherits Config.BaseConfig
		Protected _DataStore As Config.DataStore

		' Method for caching entries into datastore
		Public MustOverride Sub CacheEntries(ByVal EntryData As EntryData)

		' method for filtering entries within datastore for reporting
		Public MustOverride Function FilterEntries(ByVal alert As Config.Alerts.Service.Alert) As EntryData

		' datastore property
		Public Property DataStore() As Config.DataStore
			Get
				Return _DataStore
			End Get
			Set(ByVal Value As Config.DataStore)
				_DataStore = Value
			End Set
		End Property
	End Class
End Namespace

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
If you got this far, you are probably interested in who exactly I am and are eager to pick some knowledge out of my head.

I am a programmer - no doubt. I grew up with an Atari 400 using BASIC and PILOT and saving my programs to a casset tape. Over the years, I would rush to the library looking for books with source code of computer games in them that I could create with basic. After long hours of coding, I would save, then load, and then spend the next few days figuring out where I made a mistake - and even the book for that matter! What I'm trying to say is, you got to learn by doing. Don't give up, and always get help from someone else - wether it be source code, a book, or actually communicating with them on a one-on-one relationship.

I'll admit it - I'm a book worm. I have a shelf full of red books (if you know what I mean), and tons of other shelves of other books. I can't recommend just one, but I have found that Wrox is the best for me. After that, I have O'Reilly and Sams in third.

As far as source code goes, I have my own personal site with source code (and lots of working demos), and other sites that I post code to.

Ok, so we are down to contact info. I have ICQ. If you need the number it is 364308. Pretty low eh? I've been a die hard at this computer stuff for years on end. I even ran my own BBS and was a SysOp on many other BBS's in the Pittsburgh area when the Internet was still known as a toy called "the information super highway".

Ok, I'll close with that and let you go on your way. If you see my code - please vote. If it is bad, put up some feedback letting me know. And if you want to see more to me then just code (I'm an artist too), then just visit my web site.

Comments and Discussions