private void SearchQuotes_Click(object sender, EventArgs e) { SearchQuotes SearchQuotesForm = new SearchQuotes(); SearchQuotesForm.Tag = this; SearchQuotesForm.Show(this); this.Hide(); }
private void button3_Click_1(object sender, EventArgs e) { SearchQuotes SearchQuotesForm = new SearchQuotes { Tag = this }; SearchQuotesForm.Show(this); }