
Adding a custom property to a form
It's very easy to add a property to a form
General Declarations area
-------------------------------------
Private m_bMyVariable as Boolean
Public Property Get MyVariable() As Boolean
MyVariable = m_bMyVariable
End Property
Public Property Let MyVariable(NewData As Boolean)
m_bMyVariable = NewData
End Property
------------------------------snip--------------------------
Pardon my ignorance- but what is the point of doing this?
Can you not just use
MyVariable = m_bMyVariable, etc
and eliminate a level of complexity in the programming?
.--
Don Kelly
remove the "bull " to reply