Ejemplo n.º 1
0
 private void bntShowTemp_Click(object sender, EventArgs e)
 {
     if (frmOrderList == null || !Form.ActiveForm.Contains(frmOrderList))
     {
         this.Visible = true;
         frmOrderList = new Screen.POS.frmOrderList();
         frmOrderList.ShowDialog();
     }
 }
Ejemplo n.º 2
0
        private void btnOrders_Click(object sender, EventArgs e)
        {
            frmOrderList OpenForm = new frmOrderList(); //creating a instance of frmOrderList

            OpenForm.Show();                            //Opening the frm when this button is clicked
        }