In the video contained here (https://isladogs.co.uk/aeu-11/index.html), Karl Donaubauer addresses the topic of 'New Properties of Objects'.
It deals with properties of various objects that cannot be addressed using "." syntax, but only using the "Properties" collection of the respective object.
He lists the following properties as examples:
My question:
Is there a complete list of these properties that are only accessible via the "Properties" collection?
Perhaps we can leverage collective intelligence here.
Edit (for clarification):
Perhaps I should have phrased that differently at the beginning.
It's not specifically about compiling a complete list for the sake of it, but rather about gathering knowledge about such useful properties in one central location.
I would have thought that uncovering the possibilities this opens up would be of interest to many programmers.
So if anyone knows of any others of such properties, it would be great to mention them here.
It deals with properties of various objects that cannot be addressed using "." syntax, but only using the "Properties" collection of the respective object.
He lists the following properties as examples:
Code:
Me.MyTextBox.Properties("LabelName").Value
Me.MyImage.Properties("ControlSource").Value
Me.MyControl.Properties("Layout").Value
(and also "LayoutID", "RowStart", "RowEnd", "ColumnStart" and "ColumnEnd")
My question:
Is there a complete list of these properties that are only accessible via the "Properties" collection?
Perhaps we can leverage collective intelligence here.
Edit (for clarification):
Perhaps I should have phrased that differently at the beginning.
It's not specifically about compiling a complete list for the sake of it, but rather about gathering knowledge about such useful properties in one central location.
I would have thought that uncovering the possibilities this opens up would be of interest to many programmers.
So if anyone knows of any others of such properties, it would be great to mention them here.
Last edited: