Quote:
Originally Posted by gurp99
This is the code I have. I have a Update and a Change event. Should I remove the change event?
|
Yes.
Quote:
and what does vbCr, ", " mean?
|
As you can see from the code, it's part of a Replace expression:
Replace(txtEnclosureAttached.Text, vbCr, ", ")
which basically says to replace any carriage returns in the 'txtEnclosureAttached.Text' with a comma followed by a space.