kimi18 Posted September 20, 2013 Share Posted September 20, 2013 Hello Again I want do one Form, but I do not know a few things. How can I make one Button which if I click on, the checkbox, raciobutton items will be empty? TEdit -> "TEditname".clear , and checkbox, raciobutton...? Or it isn't possible? Quote Link to comment Share on other sites More sharing options...
FHannes Posted September 20, 2013 Share Posted September 20, 2013 Well, first off, you want to use the form designer to actually create your form, you can find it in the tools menu. Then you'll need to create an onclick event and assign it to the button you're talking about. I've attached an example. FormSample.scar Quote Link to comment Share on other sites More sharing options...
kimi18 Posted September 20, 2013 Author Share Posted September 20, 2013 OMG, Thank you Freddy, yes I use the form designer, and create onclick event, but didn't know this: CheckBox1.Checked := False; RadioButton1.Checked := False; RadioButton2.Checked := False; OMG, it is so easy, Sorry for my question Quote Link to comment Share on other sites More sharing options...
FHannes Posted September 20, 2013 Share Posted September 20, 2013 OMG, Thank you Freddy, yes I use the form designer, and create onclick event, but didn't know this: CheckBox1.Checked := False; RadioButton1.Checked := False; RadioButton2.Checked := False; OMG, it is so easy, Sorry for my question No problem, feel free to ask if you're stuck on anything. That's why the forums are here. Quote Link to comment Share on other sites More sharing options...