N
Nicolas
Is there a way to have a handle on a control having only the control name
So I dont have to loop through all the controls nested on the form.
checking for the control name = my string
this could be long and heavy on memory
Assuming the control name is "btn_Save"
How to get to ctr being the required control so that I can apply changes
ctr.GetType().GetProperty(oProperty).SetValue( ctr,newVal, null);
So I dont have to loop through all the controls nested on the form.
checking for the control name = my string
this could be long and heavy on memory
Assuming the control name is "btn_Save"
How to get to ctr being the required control so that I can apply changes
ctr.GetType().GetProperty(oProperty).SetValue( ctr,newVal, null);