I am having a drop down and a radio button on my form. What i would like to do is i would like to call radio_CheckedChangedon drodown_SelectedIndexChanged. Can any one tell me the best way to do
I am having a drop down and a radio button on my form. What
Share
Just write
radio_CheckedChanged(sender, EventArgs.Empty). Its very much like calling a method which is infact what it is.EDIT
This is not an elegant way to do this so it would be better if you could encapsulate the code logic into seperate methods and then call these in the respective handlers based on your conditions