I made a property's access 'Friend' because I wanted it to be accessed through its containing parent object - the idea was to stop me from accessing it directly because of some issues.
In ActiveOtherStuff, the method GetPropertyValue is as follows:
Public Shared Function GetPropertyValue(ByVal target As Object, ByVal propertyName As String) As ObjectWhile the target argument is perfectly sound on entry into the Method, the code chokes when the line Prop.GetValue(target) is called with an error saying that target is Null. The error disappeared when I changed the Property's access back to Public.
Jav
Copyright (c) Marimer LLC