I want to be able to call the accompanying caption of a bounded text field control.
When you have control and a label in a stacked layout, you can simply refer to your label using the .controls property:
Me.SomeControl. Controls(0).Cap tion
But when the using a tabular layout, the label does not seem to be linked anymore, i.e.:
Me.SomeControl. Controls.Count will return 0
Does anyone know how to reestablish a link or some other way around this?
When you have control and a label in a stacked layout, you can simply refer to your label using the .controls property:
Me.SomeControl. Controls(0).Cap tion
But when the using a tabular layout, the label does not seem to be linked anymore, i.e.:
Me.SomeControl. Controls.Count will return 0
Does anyone know how to reestablish a link or some other way around this?
Comment