I have a derived property set on an extended IDO of SLStockActItems. This is used to determine if the user is currently in a group and what their transaction limit is. The problem is that the derived property only shows the value if I manually refresh the collection. The rest of the values are loaded from an SP. Does anyone know a way to just refresh a single property? If I refresh the whole collection, it sets everything back to the first record values.
I tried this but it does not seem to work:
Sub RefreshKeepCurrent()
ThisForm.PrimaryIDOCollection.RefreshKeepCurIndex()
End Sub
It seems like this should be easy. What am I missing?