private void ShowError(string msg) { Form error = new Error(msg); error.Show(); Form newTry = new MakePurchase(); newTry.Show(); this.Close(); }
private void MakePurchaseButton_Click(object sender, EventArgs e) { Form makePurchase = new MakePurchase(); makePurchase.Show(); }