Repository.Pool.UpdatePool

From ReliaWiki
Jump to navigation Jump to search



Property Syntax

UpdatePool( ByVal pool As cPool) As Boolean
Updates the spare parts Pool in the repository.

Parameters

pool The pool to update in 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")

Get the list of Pools in the connected repository.

       Dim ListOfPools() As cPool
       ListOfPools = MyRepository.GetAllPools()

After modifying the Pool, Update the repository.

       Dim SuccessUpdatePool As Boolean = False
       SuccessUpdatePool = MyRepository.UpdatePool(ListOfPools(0))