J
John Harrington
I have a field in my RecordSource called Me.field containing a
string.
I have some code that I run this string through to do some rather
complex string manipulation.
I then want to put the result in a text box on my form.
So...
In the Load event of the form I do:
' Bunch of code here that manipulates Me.field and puts
' the result in the string variable called MyString
Me.MyTextBox.Value = MyString
This does not work.
How do I simply assign the value MyString to my text box?
Thanks,
John
string.
I have some code that I run this string through to do some rather
complex string manipulation.
I then want to put the result in a text box on my form.
So...
In the Load event of the form I do:
' Bunch of code here that manipulates Me.field and puts
' the result in the string variable called MyString
Me.MyTextBox.Value = MyString
This does not work.
How do I simply assign the value MyString to my text box?
Thanks,
John