In VB6 what is the difference between Property Set and Property Let?

Property Set is for objects (e.g., class instances)

Property Let is for “normal” datatypes (e.g., string, boolean, long, etc.)

Leave a Comment