Does anybody know how to write a read only property. I don't need code, just a verbal description. thank you for any help.
Archie Kantzavelos
Printable View
Does anybody know how to write a read only property. I don't need code, just a verbal description. thank you for any help.
Archie Kantzavelos
Write all properties variable as Private.
Use Property Let and Property Get to set your property.
Don't write Property Let for read-only property.
if you are talking about changing a value of a read-only property for a control, you CAN'T.
HTH