Okay I found an answer:
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
if (radioButton1->Checked)
{
textBox1->Text = "";
}
}
Now.... How do I remove the Check?
probably there is a function like SetCheck or similar.
P.S why do you persist on posting C++/CLI questions in this forum??
This is the Windows Programming forum. Its there a Forum better suited?
Try the same clocked function but with a parameter of false;
radioButton1->Checked(false); //uncheck button
Edited - typo
Last edited on