I want the text in a textbox "txtConvertedInches" to be selected when i press the radio button "rbFromInches".
private: System::Void rbFromInches_CheckedChanged(System::Object^ sender, System::EventArgs^ e) {
bConvertingToInches = !rbFromInches->Checked;
ToggleControls();
txtConvertedInches->SelectAll(); //I thought this would do it, but nothing happens
}