Repository.Pool.AddPool: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:APIClass|Repository Class|Repository}}
 
Adds a spare parts pool
== Method Syntax==
== Method Syntax==
{{APIName|AddPool(}}
{{APIName|'''AddPool'''(}}
{{APIPrefix|ByVal}}
{{APIPrefix|ByVal}}
{{APIName|pool}}
{{APIName|pool}}

Revision as of 23:46, 23 September 2013


Adds a spare parts pool

Method 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)