Repository.Pool.UpdatePool: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) m (moved UpdatePool to Repository.UpdatePool) |
Albert Szeto (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:APIClass|Repository Class|Repository}} | {{Template:APIClass|Repository Class|Repository}} | ||
== | == Method Syntax == | ||
{{APIName|UpdatePool(}} | {{APIName|UpdatePool(}} | ||
{{APIPrefix|ByVal}} | {{APIPrefix|ByVal}} |
Revision as of 21:43, 19 September 2013
Method 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))