now reads the value for the Always Create PDF check box (from the property pages)

This commit is contained in:
2011-09-22 19:51:57 +00:00
parent f77069b445
commit bf8ee98a53
3 changed files with 424 additions and 425 deletions

View File

@@ -57,6 +57,7 @@ namespace VEPROMS
btnCreatePDF.Text = "Create PDFs";
HandleDocVersionSettings();
PrepForAllOrOne(false);
cbxOpenAfterCreate2.Checked = dvi.DocVersionConfig.Print_AlwaysViewPDFAfterCreate;
}
private void PrepForAllOrOne(bool oneProcedure)
{
@@ -79,6 +80,7 @@ namespace VEPROMS
btnCreatePDF.Text = "Create PDF";
HandleDocVersionSettings();
PrepForAllOrOne(true);
cbxOpenAfterCreate2.Checked = pi.MyDocVersion.DocVersionConfig.Print_AlwaysViewPDFAfterCreate;
}
private void HandleDocVersionSettings()
@@ -571,5 +573,6 @@ namespace VEPROMS
itm.Save();
}
}
}
}