Example #1
0
 public void SaveFile()
 {
     if (visDocument.Path == "")
     {
         // Not already saved
         SaveAsFile();
     }
     else
     {
         try
         {
             visDocument.Save();
         }
         catch
         {
         }
     }
 }