ParamValue Property
Description
The value of the parameter.
Property type
Read-only property
Syntax
Visual Basic
Public Property ParamValue( _
   ByVal vParam As Variant _
) As String
Parameters
vParam
Either the name of the parameter or the index of the parameter in the list of project properties (zero-based).
Example
Check whether version control is enabled for this project
Set prj = my_TDConnection.ProjectProperties
If prj.ParamValue("VCS") = "Y" Then
    MsgBox "Version control is on"
Else
    MsgBox "Version control is off"
End If
See Also