RevisionControlProject Property

       

Returns or sets the RevisionControlProject property. Read/write String.

Remarks

A revision control project can either be a Visual SourceSafe project, or a FrontPage-based locking project. For a Visual SourceSafe control project, you must start your project with the string "$/"; for a FrontPage-based locking control project, you must set the RevisionControlProject property to "<FrontPage-based Locking>".

To remove a source control project, use the following statement to set the revision control project to an empty string.

Set RevisionControlProject = ""

Example

This example sets the RevisionControlProject property in a Microsoft Visual SourceSafe project.

Private Sub SetRevisionControlProjectName()
	Dim myWeb As WebEx
	Dim myRevisionControlProject As String

	Set myWeb = ActiveWeb
	myRevisionControlProject = _
    		"$/Rogue Cellars/Rogue Cellars Update"

	myWeb.RevisionControlProject = _
    		myRevisionControlProject
End Sub