Repository.Project.GetCurrentProject: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) mNo edit summary |
||
Line 5: | Line 5: | ||
== Syntax == | == Syntax == | ||
'''.Project.GetCurrentProject | '''.Project.GetCurrentProject''' | ||
Line 22: | Line 22: | ||
Dim ProjectName {{APIPrefix|As}} String | Dim ProjectName {{APIPrefix|As}} String | ||
Dim ProjectID {{APIPrefix|As}} Integer | Dim ProjectID {{APIPrefix|As}} Integer | ||
ProjectName = MyRepository.Project.GetCurrentProject | ProjectName = MyRepository.Project.GetCurrentProject.Name | ||
ProjectID = MyRepository.Project.GetCurrentProject | ProjectID = MyRepository.Project.GetCurrentProject.ID | ||
MsgBox ({{APIString|"You are currently connected to: "}} & ProjectName & {{APIString|", ID#"}} & ProjectID) | MsgBox ({{APIString|"You are currently connected to: "}} & ProjectName & {{APIString|", ID#"}} & ProjectID) |
Revision as of 17:30, 23 October 2015
Member of: SynthesisAPI10.Repository
Returns a NameIDPair object that contains the project you are currently connected to.
Syntax
.Project.GetCurrentProject
Example
VBA|VB.NET 'Add code to connect to a Synthesis repository. Dim MyRepository As New Repository ... 'Set the first available project in the repository as the current project. MyRepository.Project.SetCurrentProject(1) 'Output example: Display the name and ID of the current project. Dim ProjectName As String Dim ProjectID As Integer ProjectName = MyRepository.Project.GetCurrentProject.Name ProjectID = MyRepository.Project.GetCurrentProject.ID MsgBox ("You are currently connected to: " & ProjectName & ", ID#" & ProjectID)