Ejemplo n.º 1
0
 private void uiButton5_Click(object sender, EventArgs e)
 {
     try
     {
         saveFileDialog1.Filter   = "XML files (*.xml)|*.xml|All files (*.*)|*.*";
         saveFileDialog1.FileName = "dd" + DateTime.Today.ToString("yyyyMMdd") + ".xml";
         if (saveFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
         {
             AtMng.ExportDD(saveFileDialog1.FileName);
         }
     }
     catch (Exception x)
     {
         UIHelper.HandleUIException(x);
     }
 }