Glenn, Antonio et al,
You both have shown a lot higher knowledge in regards to the finer points of coding and working behind the scenes at the code level of RMS. Would you be kind enough to possibly provide a little excerpt or suggestion regarding the implementation of Public Properties and RMS?
I have posted a few times in the past days in regards to some code minutae and think that this may benefit people other than myself.
In examining the other accessible elements of RMS, there are a number of defined properties. My understanding of Properties is limited to a few Google searched pages.
3 steps to Properties
1 A Private variable to hold the property value
2 A Property Let procedure for setting the property value (if the variable will hold an object reference, you will use a Property Set procedure instead)
3 A Property Get procedure for retrieving the property value
-------------------------- Public Property Get WeightScale() As WeightScale
End Property
--------------------------
Since WeightScale is an Object, I assume it should be used with Set.
The Property Get could then be used to poll the Weight As Double Value?
If you can, and I am sorry to impose on anyone, could you please give a little more insight if your schedule allows? I appreciate all of your contributions to the board as they have helped me and others a lot!
Thanks, Kevin