If you mean disallow by restrict then you can watch for the enter keystroke like this:
Sub textArea_onkeyup
If window.event.keycode = 13 Then
textArea.value = Left(textArea.value, Len(textArea.value - 1))
End If
End Sub
I think that should work, sorry if it doesn't. Hope I've helped... "A computer scientist is a person who knows when it is time to hit the computer."
John
johnmc@mvmills.com