The VBA documentation suggests that BoundValue
is a valid Control
property for a MultiPage
control, but doesn't mention whether it is valid for a TabStrip
control.
When I try to use Debug.Print Me.MultiPage1.BoundValue
or Debug.Print Me.TabStrip1.BoundValue
(even if I explicitly set the focus to the control first), then VBA throws error 450 - Wrong number of arguments or invalid property assignment
. That suggests that I'm calling the member incorrectly, or there's some contextual requirement for it to return. But I can't seem to find any state in which the property is readable.
Is the documentation incorrect (shock, horror!!!)? Is it possible to read the BoundValue
property of a MultiPage
or TabStrip
? Are there any special conditions for it being readable?