Dear All,
In my windows application, iam dynamically build a text box(ultratexteditor-Infragistics V 7.3),
now i need to handle all events of that text box, can you please help me out for handling the events for the dynamically build control,
if possible please reply me with sample code that will be very helpful
Please reply me as soon as possible, Thanks in advance
Thanks & Regards,Vasanth
I'm not sure what you're asking. Handling the events of the UltraTextEditor is no different than attaching an event handler to any other control, i.e.
this.ultraTextEditor1.ValueChanged += new EventHandler(ultraTextEditor1_ValueChanged);
void ultraTextEditor1_ValueChanged(object sender, EventArgs e){
// Do stuff here
}
-Matt