Hi,
I am creating a DLL containing a number of LET/GET public properties in a class module. Depending on the input a screen(form) will be showed. One of these properties is for example ShowUserRoles.
=====
Public Property Let ShowUserRoles(ByVal vData As Boolean)
mvarShowUserRoles = vData
End Property
Public Property Get ShowUserRoles() As Boolean
ShowUserRoles = mvarShowUserRoles
End Property
====
At what stage does the DLL goes through all the classes to check how the properties are set, because the value of mvarShowUserRoles (for example) is always set to false?
Many thanks in advance
I am creating a DLL containing a number of LET/GET public properties in a class module. Depending on the input a screen(form) will be showed. One of these properties is for example ShowUserRoles.
=====
Public Property Let ShowUserRoles(ByVal vData As Boolean)
mvarShowUserRoles = vData
End Property
Public Property Get ShowUserRoles() As Boolean
ShowUserRoles = mvarShowUserRoles
End Property
====
At what stage does the DLL goes through all the classes to check how the properties are set, because the value of mvarShowUserRoles (for example) is always set to false?
Many thanks in advance