This could be very easy, but it's very late this moment and I'm stuck with this.
What I'm trying to do is to check if there's a Button clicked and then execute an event in another button_click event.
For example:
ButtonNumbers is clicked then you clicked another buttonOK to let the user only put some numbers in to a TextBox.
When he clicked ButtonLetters after clicking the OKbutton then he can only put some lettersd into the TextBox.
I prefere to use regular buttons instead of radiobuttons.
Can I use something simular like the checkevent for radiobuttons for buttons?
Thanks in advance,
sparrow1
Last edited by sparrow1; May 8th, 2006 at 05:03 PM.
Wkr,
sparrow1
If I helped you, don't forget to Rate my post. Thank you
You may be interested to know that if you set the Appearance property of a RadioButton to Button it will look exactly like a regular Button control but it will work as a toggle. When you click the button it will remain depressed until you click it a second time. The depressed state is equivalent to (Checked = True). The CheckBox control has a similar property. The difference is that when you depress a RadioButton with this Appearance it will popup all other RadioButtons.