ServerHelpFile, ServerProject
These properties of the Project object let you set and query the name of the help file invoked for the COM servers in the project, and the first part of the name used to create the COM objects.
Usage |
prjProject.ServerHelpFile = cHelpFileName cHelpFileName = prjProject.ServerHelpFile prjProject.ServerProject = cProjectName cProjectName = prjProject.ServerProject |
Parameter |
Value |
Meaning |
cHelpFileName |
Character |
The path and filename of the help file invoked from an object or class browser when examining the COM object. |
Empty string |
There is no help file for the servers in this project. (Not a great idea, of course.) |
|
cProjectName |
Character |
The first portion of the ProgID, the programmatic identifier that uniquely identifies the server. |
Example |
* This command returns the current help file for Project oProj: ? oProj.ServerHelpFile * This command changes the server name in all ProgIDs oProj.ServerProject = "MyTestServerProject" |
See Also |