Esempio n. 1
0
        private void viewInvbtn_Click(object sender, EventArgs e)
        {
            this.Hide();
            ViewInventoryfrm ViewInventoryForm = new ViewInventoryfrm();

            ViewInventoryForm.ShowDialog();
            this.Close();
        }
Esempio n. 2
0
        //takes to the view inventory form and sets all values to blank
        private void viewInvbtn_Click(object sender, EventArgs e)
        {
            this.Hide();
            ViewInventoryfrm ViewInventoryForm = new ViewInventoryfrm();

            ViewInventoryForm.ShowDialog();
            this.Close();
            upcTxtbx.Text           = "";
            prodNametxtbx.Text      = "";
            stockQuantnumeric.Value = 0;
        }