Private Function GetProject(sDomainName As String, sProjectName As String) As String 'The following Visual Basic example gets the properties ' of a project. Dim sReply As String On Error GoTo err sReply = m_SAClient.GetProject _ (sDomainName, sProjectName) GetProject = sReply Exit Function err: MsgBox "Program failed:" + err.Description End Function