示例#1
0
 //when user clicks products from,
 //View -> Products
 private void menu_strip_products_Click(object sender, EventArgs e)
 {
     if (products.IsDisposed)
         products = new Products();
     products.Show();
 }
示例#2
0
        private void form_login_Load(object sender, EventArgs e)
        {
            //initialize the oracle database controller
            odbc = new OracleDatabaseController();

            //inittialize all the other forms to be used from this form
            otlf = new OneTimeLoginForm();
            suppliers = new Suppliers();
            products = new Products();
            productCatagories = new ProductCatagories();
            order = new Order();
            bill = new Bill();
            StaffBuffer.loggedIn = false;
            renderForm();
        }