Help with inserting a comment

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to insert a fixed comment "N/A"in the start of a comment field
every time a user click a button on a form. The comment field may already
have a comment written in it. I need to be able to insert the "N/A" followed
by a dilimeter such as a Comma, before any text that may have been entered in
the Comment field without deleting the pre existing text. any idea?
thanks
Al
 
Al said:
I would like to insert a fixed comment "N/A"in the start of a comment
field every time a user click a button on a form. The comment field
may already have a comment written in it. I need to be able to insert
the "N/A" followed by a dilimeter such as a Comma, before any text
that may have been entered in the Comment field without deleting the
pre existing text. any idea?
thanks
Al

Me!TextBoxName = "N/A, " & Me!TextBoxName
 
Maybe with something like this, where XXX is the name of a textbox bound
to the field:

With Me.XXX
.Value = "N/A, " & .Value
End Withb
 
Back
Top