Exemplo n.º 1
0
        private void newSaleToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmSalesEntry    objFrmSalesEntry = new frmSalesEntry();
            FromConfigration parent           = new FromConfigration();

            parent.LoadMDIChild(objFrmSalesEntry, this);
        }
Exemplo n.º 2
0
        private void frmSalesInvoice_Load(object sender, EventArgs e)
        {
            this.BackColor = Properties.Settings.Default.DefaultBGColor;

            FromConfigration frmConfig = new FromConfigration();

            frmConfig.FillCombo(cmbItems, "Item");

            txtRate.Text     = "0";
            txtQuantity.Text = "0";
            txtDiscount.Text = "0";
            txtAmount.Text   = "0";
        }