//allows for quick easy access to other forms
        private void btn_Search_Click(object sender, EventArgs e)
        {
            SearchQuoteForm newSearchForm = new SearchQuoteForm();

            newSearchForm.Show();
            Close();
        }
Example #2
0
        private void btnSearchQuotes_Click(object sender, EventArgs e)
        {
            SearchQuoteForm newSearchForm = new SearchQuoteForm();

            newSearchForm.Tag = this;
            newSearchForm.Show(this);
            Hide();
        }