private void mnuitemTransactionDetai_Click(object sender, EventArgs e) { Gvar.Gind = 9; Gvar.rptidx = 9; Form childForm = new frmreport1(); childForm.MdiParent = this; //childForm.Text = "Window " + childFormNumber++; childForm.Text = "Item Transaction Detail Reports Screen"; childForm.Show(); }
private void mnuinvdet_Click(object sender, EventArgs e) { Gvar.Gind = 2; Gvar.rptidx = 2; Form childForm = new frmreport1(); childForm.MdiParent = this; //childForm.Text = "Window " + childFormNumber++; childForm.Text = "Invoice Detail Reports Screen"; childForm.Show(); }
private void mnuitmbycusbyitm_Click(object sender, EventArgs e) { Gvar.Gind = 4; Gvar.rptidx = 4; Form childForm = new frmreport1(); childForm.MdiParent = this; //childForm.Text = "Window " + childFormNumber++; childForm.Text = "Item By Customer per Item Reports Screen"; childForm.Show(); }
private void mnuStock_Click(object sender, EventArgs e) { Gvar.Gind = 1; Gvar.rptidx = 1; Form childForm = new frmreport1(); childForm.MdiParent = this; //childForm.Text = "Window " + childFormNumber++; childForm.Text = "Stock Reports Screen"; childForm.Show(); }