private void MnuSaveAsClick(object sender, EventArgs e) { IDocumentForm document = this.GetDocument(); if (document != null) { try { document.SaveAs(); } catch (Exception ex) { Helper.Exceptions.Show(string.Format(Strings.FileErrorSave, document.GetTitle()), ex); } } }