WindowsForms
why can't i change from one form to another, it's as though Form3 doesn't exist, did the same with Form2

$codegif in chat

u might need to change it on the Designer.cs file as well


private void Next_button_Click(object sender, EventArgs e)
{
this.Hide();
Form3 f3 = new Form3();
f3.ShowDialog();
this.Close();
}