Example #1
0
        private void comprasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Buys buys = new Buys {
                MdiParent = this.MdiParent
            };

            buys.Show();
        }
Example #2
0
        private void button4_Click(object sender, EventArgs e)
        {
            Buys buys = new Buys {
                MdiParent = this.MdiParent
            };

            buys.Show();
        }
Example #3
0
 public ViewSupplier(Buys buy)
 {
     InitializeComponent();
     this._buys = buy;
 }
Example #4
0
 public ViewProducts(Buys buy)
 {
     InitializeComponent();
     this._buys = buy;
 }
Example #5
0
        private void button2_Click(object sender, EventArgs e)
        {
            Buys b = new Buys();

            b.Show();
        }
Example #6
0
 public ViewUser(Buys buys)
 {
     InitializeComponent();
     _buys = buys;
 }