Added Edit/Initialized config to the Documents

Check to see if MSWord changes should be saved if PROMS is closing
This commit is contained in:
Rich
2011-05-09 20:38:01 +00:00
parent 58d3fcc524
commit 0b3693fef8
5 changed files with 26 additions and 3 deletions

View File

@@ -270,7 +270,9 @@ namespace DataLoader
}
private int SaveWordDoc(string temppath, string stype, string sectName)
{
return SaveWordDoc(temppath, String.Empty, stype, null, sectName);
ConfigInfo ci = new ConfigInfo(null);
ci.AddItem("Edit", "Initialized", "true");
return SaveWordDoc(temppath, String.Empty, stype, ci, sectName);
}
private int SaveTheDoc(string temppath, string title, ConfigInfo ci, string ascii)
{