code to make enable button in c#.net
-
i want the code to enable one button out of three when other two are are disable and vice versa in c#.net
ursbuddy
That's pretty straightforward. What have you tried ? To tie the three buttons together, you'd need to create a control. It's easier just to write code that enables one button and disables the other two.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
i want the code to enable one button out of three when other two are are disable and vice versa in c#.net
ursbuddy
you must think about how this will logically work then...... Toggle between the button.enabled property. if you want the button disabled you say button1.enabled = false; if you want the button enabled you say button1.enabled = true; That should u going dude.