I have enabled the Click event for an ultraTextEditor, but it activates only if you click on the actual border of the text box drawn. Its as if the Editor object occludes the text area, and a Click event cannot be enabled for it, I think. Can anyone tell me how to get around this so that a click anywhere on the textbox is honored?
It is exactly what you said, there is a TextBox control positioned over the area inside the control's borders. You can get a reference to that control via UltraTextEditor like so:
UltraTextEditor ultraTextEditor = null;EditorWithText editor = ultraTextEditor.Editor as EditorWithText;TextBox textBox = editor.TextBox;
Do you have the VB.Net equivalent to this?
Thanks,
Dave Schuricht
Hi Dave,
The KB article that I linked above has both a C# and a VB sample attached to it.