Repository.Pool.AddPool: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
m (Protected "Repository.AddPool" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading])
No edit summary
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:APIClass|Repository Class|Repository}}
Adds a spare parts pool
{{Template:Repository.AddPool}} {{Template:BooleanReturn.Cmt}}
== Method 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 ==
==Syntax==
'''pool'''
*AddPool'''( pool {{APIPrefix|As}} [[cPool Class|cPool]] ) {{APIPrefix|As Boolean}}
{{APIComment|The pool to add to the repository.}}
 
Parameters:
:''pool'': The [[cPool Class|cPool]] to add.


== Usage Example ==
== Usage Example ==

Revision as of 18:41, 27 February 2014


Template:Repository.AddPool 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.

       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)