Strings and Textboxes

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Ok,

I am sure this is an easy question but I am stuck.

I have a variable that is given a value (poplated??) by
an input box. I now would like to insert this string
value into a bound textbox. how do I go about doing it

thanks
Mark
 
In code (maybe on the After Update event for the input box?) put something
like...

Me.SomeBoundTextBox = SomeVariableName


Rick B


Ok,

I am sure this is an easy question but I am stuck.

I have a variable that is given a value (poplated??) by
an input box. I now would like to insert this string
value into a bound textbox. how do I go about doing it

thanks
Mark
 
Back
Top