vote up 1 vote down star

Hello,

I have a Windows .NET application and one of the forms has a WebBrowser control, an OK button and a Cancel button.

The WebBrowser control hosts a TextArea html element, so I can write inside.

If the OK button is the form's AcceptButton (form.AcceptButton = btnOk) then when I press Enter the event is captured by the form, and no new line is added in my TextArea.

TextBox has a property AcceptsReturn that does exactly what I would need, but there is no similar property for WebBrowser control.

Any ideas on how to retain the Enter event for the TextArea if the form which hosts the WebBrowser has an AcceptButton?

Thanks.

alt text

flag

33% accept rate

1 Answer

vote up 2 vote down

I think you'd have to turn off the AcceptButton on your form while the TextArea has the focus in order for this to work. Your form has no way of "knowing" that it's not supposed to respond to the Enter key while something in particular is going on inside the WebBrowser control.

link|flag
I think it's the only working optin, though I hoped for a solution similar to TextBox control. If I have a multiline TextBox and I set AcceptsReturn to true, I can press enter and a newline is added. – Vasi Sep 30 at 13:25
I think it's too complex a situation to be handled by a simple AcceptsReturn property in the WebBrowser. You wouldn't want to just cancel the OK button on Enter if the focus is in the WebBrowser control, because that's likely to be the only control on the form other than the OK and Cancel buttons. – MusiGenesis Sep 30 at 13:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.