private void button6_Click(object sender, EventArgs e) { firstinterface f = new firstinterface(); this.Hide(); f.Show(); }
private void timer1_Tick(object sender, EventArgs e) { try { rectangleShape2.Width += 1; if (rectangleShape2.Width >= 530) { timer1.Stop(); firstinterface op = new firstinterface(); op.Show(); Visible = false; this.Hide(); } } catch { return; } }