Add a project to the list of connected projects. | |
Syntax: | SCODE = object.AddProject ( Project ) |
Parameters: |
Project As
String - A string representing
the name of the project to add.
|
Description: | browser.AddProject Adds a project to the
list of projects to query against. Returns S_OK if the project is
added. Returns S_FALSE if the project was not added. Example Dim i As Variant i = browser.AddProject("TEST") If CInt(i) <> 0 Then MsgBox "Failed to add
project" |