I have
Delegate
type andfunction
in string format. how can i add that function in thedelegate
?
Datatable Events;
/* Having Records
Control Events MethodName
ControlName Validating Leave Enter
TextBox1 Textbox1_Validating TextBox1_Leave --
*/
foreach(DataRow Row in Events.Rows)
{
if (Row["Validating"].ToString() != "")
{
//Here is I need a help that how can i add Textbox1_Validating event in
//TextBox1.Validating
}
}