Beispiel #1
0
        private void Store_Load(object sender, EventArgs e)
        {
            Storage_DB cDB = new Storage_DB();

            dataGridView1.AutoGenerateColumns = true;
            cDB.FillGrid(dataGridView1);
            cBox_Search.Items.Add("***All***");
            cDB.fillcombobox(cBox_Search);
        }
Beispiel #2
0
        private void NewTransaction_Load(object sender, EventArgs e)
        {
            lbl_ShowDate.Text = DateTime.Now.ToString();
            Storage_DB sDB = new Storage_DB();

            sDB.fillcombobox(cBox_Item);

            CurrentTransaction_DB cTR = new CurrentTransaction_DB();

            dataGridView1.AutoGenerateColumns = true;
            cTR.FillGrid(dataGridView1);
        }
Beispiel #3
0
        private void EditProduct_Load(object sender, EventArgs e)
        {
            Storage_DB cDB = new Storage_DB();

            cDB.fillcombobox(cBox_Item);
        }