/// <summary> /// Exportation vers le LAB /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btnGoExport_Click(object sender, EventArgs e) { // On sauvegarde la session en cours p_SessionBase.SaveSession(); p_applClass.updateSessionInfo(p_SessionBase); this.actualiseCompteurs(); frmPreExport _frmPreExport = new frmPreExport(p_applClass); if (_frmPreExport.ShowDialog() == System.Windows.Forms.DialogResult.OK) { frmExport _frmExport = new frmExport(p_applClass); _frmExport.ShowDialog(this); } }
private void btnGoExport_Click(object sender, EventArgs e) { frmPreExport _frmPreExport = new frmPreExport(p_applClass); if (_frmPreExport.ShowDialog() == System.Windows.Forms.DialogResult.OK) { frmExport _frmExport = new frmExport(p_applClass); _frmExport.ShowDialog(this); } }