//allows for quick easy access to other forms
        private void btn_view_Click(object sender, EventArgs e)
        {
            ViewQuoteForm newViewForm = new ViewQuoteForm();

            newViewForm.Show();
            Close();
        }
Example #2
0
        private void btnViewQuotes_Click(object sender, EventArgs e)
        {
            ViewQuoteForm newViewForm = new ViewQuoteForm();

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