CreatePropertyByPosition Method Example
Dim spmMgr As SharedPropertyGroupManager Dim spmGroup As SharedPropertyGroup Dim spmPropNextNumber As SharedProperty Dim bExists As Boolean Dim iNextValue As Integer ' Create the SharedPropertyGroupManager, ' SharedPropertyGroup, and SharedProperty. Set spmMgr = CreateObject _ ("MTxSpm.SharedPropertyGroupManager.1") Set spmGroup = spmMgr.CreatePropertyGroup _ ("Counter", LockSetGet, Process, bExists) Set spmPropNextNumber = _ spmGroup.CreatePropertyByPosition(0, bExists) ' Get the next number and increment it. iNextValue = spmPropNextNumber.Value spmPropNextNumber.Value = _ spmPropNextNumber.Value + 1