i'm triyng to show the text that i write in a text box in another textbox (with multiline = true) and i can't get to change of line when i put in the enter code like listed below please help me.
Private Sub parle_KeyDown(Keycode As Integer, Shift As Integer)
If Keycode = 13 Then
text.text = text.text + Chr$(13) + parle.text
parle.text = ""
end if
End Sub
miguel
migoul@hotmail.com
Private Sub parle_KeyDown(Keycode As Integer, Shift As Integer)
If Keycode = 13 Then
text.text = text.text + Chr$(13) + parle.text
parle.text = ""
end if
End Sub
miguel
migoul@hotmail.com