Ejemplo n.º 1
0
 public FrmModuleC(FrmModuleA refFormA,FrmModuleB refFormB)
 {
     InitializeComponent();
     _clips = Clips.GetInstance();
     this.frmA = refFormA;
     this.frmB = refFormB;
 }
Ejemplo n.º 2
0
        private void NextStage_Click(object sender, EventArgs e)
        {
            bool check = AllFieldsFull();
            if ( check == true && txtPrintout.Text != "")
            {

                this.Hide();
                FrmModuleB frmModuleB = new FrmModuleB(this);
                frmModuleB.Show();
            }
        }