B
Brad Marshall
I want to set a value in a text box control on a form in VB code. I have a
string that contains the control name. This works:
Me.("ControlName") = "Control Value String"
Great! But now I want to reference a control on another open form. This
doesn't work:
Form_Other.("ControlName") = "Control Value String"
How can I establish a reference to a control on another open form whan I
have a string that contains the name of the control?
Thanks. Brad Marshall
string that contains the control name. This works:
Me.("ControlName") = "Control Value String"
Great! But now I want to reference a control on another open form. This
doesn't work:
Form_Other.("ControlName") = "Control Value String"
How can I establish a reference to a control on another open form whan I
have a string that contains the name of the control?
Thanks. Brad Marshall