Just a quick Q. How do I setup a delegate to point at a property. I am getting syntax errors when I try these methods:
-expects sub or function, if either are put in it says property is not a valid identifier.
VB Code:
Public Delegate property delgGrabBalance() As Double
-says the signature is incorrect.
VB Code:
Public Delegate Function delgGrabBalance() As Double
This is the property:
VB Code:
Public Property Balance() As Double Get Return mBalance End Get Set(ByVal Value As Double) mBalance = Value End Set End Property
Thanks for any help!




Reply With Quote