Example #1
0
 private void btnIr_Click(object sender, EventArgs e)
 {
     if (comboElegir.Text == "Arreglos")
     {
         Form FormMenuA = new FormArreglos();
         FormMenuA.Show();
     }
     if (comboElegir.Text == "Funciones")
     {
         Form FormMenuF = new FormFunciones();
         FormMenuF.Show();
     }
     if (comboElegir.Text == "Ciclos")
     {
         Form FormMenuC = new FormCiclos();
         FormMenuC.Show();
     }
     if (comboElegir.Text == "Condicionales")
     {
         Form FormMenuCo = new FormCondicionales();
         FormMenuCo.Show();
     }
     if (comboElegir.Text == "Secuenciales")
     {
         Form FormMenuS = new FormSecuanciales();
         FormMenuS.Show();
     }
 }
Example #2
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     FormMenuA  = new FormArreglos();
     formMenuF  = new FormFunciones();
     formMenuC  = new FormCiclos();
     formMenuCo = new FormCondicionales();
     formMenuS  = new FormSecuanciales();
     Application.Run(new FormInicio());
 }