RevisionControlProject Property

Microsoft FrontPage Visual Basic

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

expression.RevisionControlProject()

expression    Required. An expression that returns a WebEx object.

Remarks

A revision control project can either be a Microsoft Visual SourceSafe project, or a FrontPage-based locking project. For a Visual SourceSafe control project, you must start the RevisionControlProject property 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, set the RevisionControlProject property to an empty string.

Example

The following example sets the RevisionControlProject property in a 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