private void ViewQuotesButton_Click(object sender, EventArgs e) { ViewAllQuotes viewAllQuotes = new ViewAllQuotes(); viewAllQuotes.Show(); Hide(); }
private void ViewQuote_Click(object sender, EventArgs e) { ViewAllQuotes viewAllQuotesForm = new ViewAllQuotes(); viewAllQuotesForm.Show(); Hide(); }
private void Button4_Click(object sender, EventArgs e) { ViewAllQuotes frmViewAllQuotes = new ViewAllQuotes(this); frmViewAllQuotes.Show(); Hide(); }
private void V(object sender, KeyPressEventArgs e) { ViewAllQuotes allQuotes = new ViewAllQuotes(); allQuotes.Tag = this; allQuotes.Show(this); }
private void button2_Click(object sender, EventArgs e) { ViewAllQuotes allQuotes = new ViewAllQuotes(); allQuotes.Tag = this; allQuotes.Show(this); }
private void viewQuotesButton_Click(object sender, EventArgs e) { ViewAllQuotes vaq = new ViewAllQuotes(); vaq.Show(); this.Hide(); }
private void buttonViewAll_Click(object sender, EventArgs e) { ViewAllQuotes viewAllQuoteForm = new ViewAllQuotes(); viewAllQuoteForm.Tag = this; viewAllQuoteForm.Show(this); Hide(); }
private void openViewAllQioteButton_Click(object sender, EventArgs e) { ViewAllQuotes viewAllQuotes = new ViewAllQuotes(); viewAllQuotes.Tag = this; viewAllQuotes.Show(this); Hide(); }
private void btnViewQuotes_Click(object sender, EventArgs e) { var frmViewAllQuotes = new ViewAllQuotes(); frmViewAllQuotes.Tag = this; frmViewAllQuotes.Show(); this.Hide(); }
private void ViewBtn_Click(object sender, EventArgs e) { ViewAllQuotes addNewQuoteForm = new ViewAllQuotes(); addNewQuoteForm.Tag = this; addNewQuoteForm.Show(this); Hide(); }
private void btnViewQuotes_Click(object sender, EventArgs e) { var viewAllQuotes = new ViewAllQuotes(this); viewAllQuotes.Show(); this.Hide(); }
private void viewQuotes_Click(object sender, EventArgs e) { ViewAllQuotes viewAll = new ViewAllQuotes(); viewAll.Tag = this; viewAll.Show(this); Hide(); }
private void ViewQuote_Click(object sender, EventArgs e) { ViewAllQuotes viewViewAllQuotes = new ViewAllQuotes(); viewViewAllQuotes.Tag = this; viewViewAllQuotes.Show(this); this.Hide(); }
private void openViewQuotesButton_Click(object sender, EventArgs e) { ViewAllQuotes addViewAllQuotesForm = new ViewAllQuotes(); addViewAllQuotesForm.Tag = this; addViewAllQuotesForm.Show(this); Hide(); }
private void ViewAllQuotesButton_Click(object sender, EventArgs e) { ViewAllQuotes viewAllQuotes = new ViewAllQuotes { Tag = this }; viewAllQuotes.Show(this); Hide(); }
private void view_quotes_Click(object sender, EventArgs e) { if (viewAllQuotes == null) { viewAllQuotes = new ViewAllQuotes(); } Hide(); viewAllQuotes.Show(); }
private void viewQuotes_Click(object sender, EventArgs e) { ViewAllQuotes ViewQuotesForm = new ViewAllQuotes { Tag = this }; ViewQuotesForm.Show(this); Hide(); }
private void Btn_viewQuote_Click(object sender, EventArgs e) { ViewAllQuotes viewAllQuotes = new ViewAllQuotes(); viewAllQuotes.Show(); }