public Main() { InitializeComponent(); FormBorderStyle = FormBorderStyle.FixedDialog; WindowState = FormWindowState.Maximized; MaximizeBox = false; MinimizeBox = false; StartPosition = FormStartPosition.CenterScreen; ipd = new InputPengirimData(); ipd.MdiParent = this; lpd = new LaporanPengiriman(); lpd.MdiParent = this; dp = new DaftarPengiriman(); dp.MdiParent = this; }
private void toolStripButton3_Click(object sender, EventArgs e) { dp = new DaftarPengiriman(); dp.MdiParent = this; dp.Show(); }