Repository.Pool.AddPool: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) No edit summary |
Albert Szeto (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
== Property Syntax== | == Property Syntax== | ||
{{APIName|AddPool(}} | |||
{{APIPrefix|ByVal}} | |||
{{APIName|pool}} | |||
{{APIPrefix|As}} | |||
{{APIName|[[cPool Class|cPool]])}} | |||
{{APIPrefix|As Boolean}}<br> | |||
{{APIComment|Saves the spare parts pool in the repository. }} | |||
{{ | == Parameters == | ||
'''pool''' | |||
{{APIComment|The pool to add to the repository.}} | |||
== Usage Example == | |||
{{APIComment|Declare a new repository connection class.}} | |||
Private WithEvents MyRepository As New Repository | |||
{{APIComment|Connect to the Synthesis repository.}} | |||
Dim Success As Boolean = False | |||
Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") | |||
{{APIComment|Declare a new Pool.}} | |||
Dim newPool As New cPool("NewPool1") | |||
{{APIComment|Add the Pool to the repository.}} | |||
Dim SuccessAddPool As Boolean | |||
SuccessAddPool = MyRepository.AddPool(newPool) |
Revision as of 21:33, 19 September 2013
Property Syntax
AddPool(
ByVal
pool
As
cPool)
As Boolean
Saves the spare parts pool in the repository.
Parameters
pool The pool to add to the repository.
Usage Example
Declare a new repository connection class.
Private WithEvents MyRepository As New Repository
Connect to the Synthesis repository.
Dim Success As Boolean = False Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
Declare a new Pool.
Dim newPool As New cPool("NewPool1")
Add the Pool to the repository.
Dim SuccessAddPool As Boolean SuccessAddPool = MyRepository.AddPool(newPool)