Added Print and Print All Procedures

Added DebugPagination and DebugText properties
This commit is contained in:
Rich
2011-08-18 11:19:51 +00:00
parent a9882ad357
commit 3a408d7af5
3 changed files with 40 additions and 0 deletions

View File

@@ -12,6 +12,12 @@ namespace VEPROMS
{
public partial class frmPDFStatusForm : Form
{
private bool _CloseWhenDone = false;
public bool CloseWhenDone
{
get { return _CloseWhenDone; }
set { _CloseWhenDone = value; }
}
private string _PDFPath;
public string PDFPath
@@ -91,6 +97,11 @@ namespace VEPROMS
return;
}
btnOpenFolder.Visible = btnOpenPDF.Visible = true;
if (CloseWhenDone)
{
this.Close();
return;
}
}
private void btnOpenPDF_Click(object sender, EventArgs e)