private void Frm_utama_kasir_Load(object sender, EventArgs e)
        {
            toolStripButton1.Text = "Cashier";
            Frm_utama_child frm_chd = new Frm_utama_child();

            frm_chd.WindowState = FormWindowState.Maximized;
            frm_chd.ControlBox  = false;
            frm_chd.MdiParent   = this;
            frm_chd.Show();
        }
Exemple #2
0
        private void Frm_utama_parent_Load(object sender, EventArgs e)
        {
            toolStripStatusLabel1.Text = "Ready";
            Frm_utama_child frm_utama_chd = new Frm_utama_child();

            frm_utama_chd.WindowState = FormWindowState.Maximized;

            frm_utama_chd.ControlBox = false;
            frm_utama_chd.MdiParent  = this;
            frm_utama_chd.Show();
        }