Creates a protocol file with the changes of the corresponding source file.

Syntax:

CreateChangesProtocol( ProtocolFile As Variant, DeletedItems As Variant, 
NewItems As Variant, ChangedItems As Variant ) As Boolean
Parameters: ProtocolFile Name of the corresponding protocol file to be returned.
DeletedItems Number of deleted items to be returned.
NewItems Number of new items to be returned.
ChangedItems Number of changed items to be returned.

Example:
Dim ProjFile As ProjectFile
Dim RetVal As Boolean
Dim ProtocolFile As Variant
Dim DeletedItems As Variant
Dim NewItems As Variant
Dim ChangedItems As Variant

Set ProjFile = Application.ActiveProjectFile

RetVal = ProjFile.CreateChangesProtocol( ProtocolFile, DeletedItems, _
			NewItems, ChangedItems )

See also:

Class ProjectFile


Last Updated: 04/27/05