Added Print and Print All Procedures
Added DebugPagination and DebugText properties
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user