Added ‘UseSpecificPageNo’ for printing of explicit page number transitions
Use ‘UseSpecificPageNo’ for printing of explicit page number transitions Allow Change Id for each procedure (not one for entire session). Request from Calvert. Implement ‘UseSpecificPageNo’ flag. Added ‘UseSpecificPageNo’ flag Change Id dialog (moved from VEPROMS UI)
This commit is contained in:
31
PROMS/Volian.Controls.Library/dlgChgId.cs
Normal file
31
PROMS/Volian.Controls.Library/dlgChgId.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Volian.Controls.Library
|
||||
{
|
||||
public partial class dlgChgId : Form
|
||||
{
|
||||
DisplayTabControl TabControl;
|
||||
public dlgChgId(DisplayTabControl tc)
|
||||
{
|
||||
InitializeComponent();
|
||||
TabControl = tc;
|
||||
tbChgId.Focus();
|
||||
}
|
||||
|
||||
private void btnOk_Click(object sender, EventArgs e)
|
||||
{
|
||||
TabControl.ChgId = tbChgId.Text;
|
||||
}
|
||||
|
||||
private void btnCancel_Click(object sender, EventArgs e)
|
||||
{
|
||||
TabControl.ChgId = null;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user