In the radio button.CheckedChanged event , you open a form by creating its instance and calling the show() method on the instance like so:;
formX inst1 = new formX();
inst1.show();
i have assumed the name of the form to open is formX