I have a form, I would like the user to be able to open a record and press a button on the form which would then "put" a predefined string into the "comments" field of that record, which is displayed as a text box.
I tried using comments.text = "This is my comment" in the Button's click event, but got an error stating that the textbox needed to have focus or something for this to work.
Any ideas?
Rockn - 30 Apr 2008 15:45 GMT
Set the focus prior to entering the text.
Put
Me.Textboxname.SetFocus
Me.Textboxname.Text = "This is the Comment"
>I have a form, I would like the user to be able to open a record and press
>a button on the form which would then "put" a predefined string into the
[quoted text clipped - 5 lines]
>
> Any ideas?