Repository.Pool.AddPool: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 9: Line 9:


== Usage Example ==
== Usage Example ==
{{APIComment|Declare a new repository connection class.}}
<div style="margin-right: 150px;">
        Private WithEvents MyRepository As New Repository
{{APIComment|'Declare a new repository connection class.}}
 
  Dim MyRepository As New Repository
{{APIComment|Connect to the Synthesis repository.}}
 
        Dim Success As Boolean = False
{{APIComment|'Connect to the Synthesis repository.}}
        Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
  Dim Success As Boolean = False
 
  Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
{{APIComment|Declare a new Pool.}}
 
        Dim newPool As New cPool("NewPool1")
{{APIComment|'Declare a new Pool.}}
 
  Dim newPool As New cPool("NewPool1")
{{APIComment|Add the Pool to the repository.}}
 
        Dim SuccessAddPool As Boolean
{{APIComment|'Add the Pool to the repository.}}
        SuccessAddPool = MyRepository.AddPool(newPool)
  Dim SuccessAddPool As Boolean
  SuccessAddPool = MyRepository.AddPool(newPool)
</div>

Revision as of 22:18, 23 May 2014


Saves the spare parts pool in the repository. Returns True if successful, otherwise returns False.

Syntax

  • AddPool( pool As cPool ) As Boolean

Parameters:

pool: The cPool to add.

Usage Example

 'Declare a new repository connection class. 
 Dim 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)