private void btnAgregarCalentamiento_Click(object sender, EventArgs e) { FrmGestionCaletamiento frmGestionCaletamiento = new FrmGestionCaletamiento(); frmGestionCaletamiento.ShowDialog(); if (FrmGestionCaletamiento.duracion != "") { txtDuracionCalentamiento.Text = FrmGestionCaletamiento.duracion; txtDescripcionCalentamiento.Text = FrmGestionCaletamiento.descripcion; } }
private void gestiónCalentamientoToolStripMenuItem1_Click(object sender, EventArgs e) { FrmGestionCaletamiento frmGestionCaletamiento = new FrmGestionCaletamiento(); frmGestionCaletamiento.ShowDialog(); }