Click to See Complete Forum and Search --> : read only property


Archie
June 12th, 2001, 10:34 PM
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

Tower
June 12th, 2001, 10:51 PM
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.

cksiow
June 12th, 2001, 11:07 PM
if you are talking about changing a value of a read-only property for a control, you CAN'T.

HTH