Repository.Pool.AddPool: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
 
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:APIClass|Repository Class|Repository}}
{{Template:API}}{{Template:APIBreadcrumb|.[[Repository Class|Repository]]}}
{{Template:Repository.AddPool.Cmt}} {{Template:BooleanReturn.Cmt}}


==Syntax==
*AddPool( pool {{APIPrefix|As}} [[cPool Class|cPool]] ) {{APIPrefix|As Boolean}}


Parameters:
<onlyinclude>Adds a new spare part pool to the current project. Returns a '''Boolean''' value; when true, indicates indicates a successful save.</onlyinclude>
:''pool'': The [[cPool Class|cPool]] to add.


== Usage Example ==
 
  {{APIComment|'Declare a new repository connection class.}}
'''Remarks''': If a pool with the same name already exists in the destination project, the name will be incremented automatically. For example, if "Pool1" already exists, the new pool might be renamed to "Pool2," "Pool3," etc.
  Dim MyRepository As New Repository
 
== Syntax ==
'''.Pool.AddPool'''(''pool'')
 
=== Parameters ===
''pool''
:Required. The [[CPool Class|cPool]] object that represents the spare part pool to be added.
 
 
== Example ==
This example creates a new spare part pool resource, and then saves it in the first available project in a Synthesis repository.
'''VBA'''
  {{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}}
  {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
  MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}})
    
    
  {{APIComment|'Connect to the Synthesis repository.}}
  {{APIComment|'Create a new pool. The following example creates a pool named "MyNewSpares."}}
  Dim Success As Boolean = False
  {{APIPrefix|Dim}} NewSpares {{APIPrefix|As New}} cPool
  Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
  NewSpares.Name = {{APIString|"MyNewSpares"}}
 
  {{APIComment|'Declare a new Pool.}}
{{APIComment|'Add the new spare part pool to project #1.}}
  Dim newPool As New cPool("NewPool1")
  MyRepository.Project.SetCurrentProject(1) 
 
  {{APIPrefix|Call}} MyRepository.Pool.AddPool(NewSpares)
  {{APIComment|'Add the Pool to the repository.}}
 
   Dim SuccessAddPool As Boolean
'''VB.NET'''
  SuccessAddPool = MyRepository.AddPool(newPool)
{{APIComment|'Declare a new Repository object and connect to a Synthesis repository.}}
  {{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository
  MyRepository.ConnectToAccessRepository({{APIString|"C:\RSRepository1.rsr10"}})
  {{APIComment|'Create a new pool. The following example creates a pool named "MyNewSpares."}}
  {{APIPrefix|Dim}} NewSpares {{APIPrefix|As New}} cPool ({{APIString|"MyNewSpares"}})
  {{APIComment|'Add the new spare part pool to project #1.}}
  MyRepository.Project.SetCurrentProject(1)    
  MyRepository.Pool.AddPool(NewSpares)

Latest revision as of 20:35, 18 August 2016

APIWiki.png


Member of: SynthesisAPI.Repository


Adds a new spare part pool to the current project. Returns a Boolean value; when true, indicates indicates a successful save.


Remarks: If a pool with the same name already exists in the destination project, the name will be incremented automatically. For example, if "Pool1" already exists, the new pool might be renamed to "Pool2," "Pool3," etc.

Syntax

.Pool.AddPool(pool)

Parameters

pool

Required. The cPool object that represents the spare part pool to be added.


Example

This example creates a new spare part pool resource, and then saves it in the first available project in a Synthesis repository.

VBA

 'Declare a new Repository object and connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10")
 
 'Create a new pool. The following example creates a pool named "MyNewSpares." 
  Dim NewSpares As New cPool
  NewSpares.Name = "MyNewSpares"

 'Add the new spare part pool to project #1. 
  MyRepository.Project.SetCurrentProject(1)   
  Call MyRepository.Pool.AddPool(NewSpares)
VB.NET

 'Declare a new Repository object and connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr10")

 'Create a new pool. The following example creates a pool named "MyNewSpares." 
  Dim NewSpares As New cPool ("MyNewSpares")

 'Add the new spare part pool to project #1. 
  MyRepository.Project.SetCurrentProject(1)   
  MyRepository.Pool.AddPool(NewSpares)