F
Fiona
I have a form with a multiline textbox which has (EnterKeyBehavior
=True) property.
When the ok button is clicked on the form, the contents of the textbox
is placed into a range on a worksheet. Problem is the ascii symbol for
the enter key, it is displayed at the end of every line.
Is there anything I can do to stop this ?
Private Sub CmdOK_Click()
ActiveSheet.Range("Notes") = TxtNotes.Text
Unload Me
End Sub
=True) property.
When the ok button is clicked on the form, the contents of the textbox
is placed into a range on a worksheet. Problem is the ascii symbol for
the enter key, it is displayed at the end of every line.
Is there anything I can do to stop this ?
Private Sub CmdOK_Click()
ActiveSheet.Range("Notes") = TxtNotes.Text
Unload Me
End Sub