156 lines
5.9 KiB
C#
156 lines
5.9 KiB
C#
|
|
using HRM.BO;
|
|
|
|
namespace HRM.MailNotificationProcess
|
|
{
|
|
partial class frmMailNotificationProcess
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
components = new System.ComponentModel.Container();
|
|
timerTriggerStart = new System.Windows.Forms.Timer(components);
|
|
panel1 = new System.Windows.Forms.Panel();
|
|
lvwNotificationProcess = new System.Windows.Forms.ListView();
|
|
SL = new System.Windows.Forms.ColumnHeader();
|
|
Title = new System.Windows.Forms.ColumnHeader();
|
|
Status = new System.Windows.Forms.ColumnHeader();
|
|
StartAt = new System.Windows.Forms.ColumnHeader();
|
|
panel2 = new System.Windows.Forms.Panel();
|
|
btnTest = new System.Windows.Forms.Button();
|
|
btnStart = new System.Windows.Forms.Button();
|
|
panel1.SuspendLayout();
|
|
panel2.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// timerTriggerStart
|
|
//
|
|
timerTriggerStart.Interval = 86400000;
|
|
timerTriggerStart.Tick += timerTriggerStart_Tick;
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.Controls.Add(lvwNotificationProcess);
|
|
panel1.Location = new System.Drawing.Point(12, 28);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new System.Drawing.Size(713, 254);
|
|
panel1.TabIndex = 0;
|
|
//
|
|
// lvwNotificationProcess
|
|
//
|
|
lvwNotificationProcess.CheckBoxes = true;
|
|
lvwNotificationProcess.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { SL, Title, Status, StartAt });
|
|
lvwNotificationProcess.FullRowSelect = true;
|
|
lvwNotificationProcess.GridLines = true;
|
|
lvwNotificationProcess.Location = new System.Drawing.Point(0, 0);
|
|
lvwNotificationProcess.Name = "lvwNotificationProcess";
|
|
lvwNotificationProcess.Size = new System.Drawing.Size(713, 281);
|
|
lvwNotificationProcess.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|
lvwNotificationProcess.TabIndex = 2;
|
|
lvwNotificationProcess.UseCompatibleStateImageBehavior = false;
|
|
lvwNotificationProcess.View = System.Windows.Forms.View.Details;
|
|
lvwNotificationProcess.SelectedIndexChanged += lvwNotificationProcess_SelectedIndexChanged;
|
|
//
|
|
// SL
|
|
//
|
|
SL.Text = "SL";
|
|
SL.Width = 40;
|
|
//
|
|
// Title
|
|
//
|
|
Title.Text = "Notification Name";
|
|
Title.Width = 300;
|
|
//
|
|
// Status
|
|
//
|
|
Status.Text = "Status";
|
|
Status.Width = 80;
|
|
//
|
|
// StartAt
|
|
//
|
|
StartAt.Text = "StartAt";
|
|
StartAt.Width = 150;
|
|
//
|
|
// panel2
|
|
//
|
|
panel2.Controls.Add(btnTest);
|
|
panel2.Controls.Add(btnStart);
|
|
panel2.Location = new System.Drawing.Point(12, 299);
|
|
panel2.Name = "panel2";
|
|
panel2.Size = new System.Drawing.Size(713, 53);
|
|
panel2.TabIndex = 1;
|
|
//
|
|
// btnTest
|
|
//
|
|
btnTest.Location = new System.Drawing.Point(17, 20);
|
|
btnTest.Name = "btnTest";
|
|
btnTest.Size = new System.Drawing.Size(124, 23);
|
|
btnTest.TabIndex = 1;
|
|
btnTest.Text = "Immediate Run";
|
|
btnTest.UseVisualStyleBackColor = true;
|
|
btnTest.Click += btnTest_Click;
|
|
//
|
|
// btnStart
|
|
//
|
|
btnStart.Location = new System.Drawing.Point(624, 18);
|
|
btnStart.Name = "btnStart";
|
|
btnStart.Size = new System.Drawing.Size(75, 27);
|
|
btnStart.TabIndex = 0;
|
|
btnStart.Text = "Start";
|
|
btnStart.UseVisualStyleBackColor = true;
|
|
btnStart.Click += btnStart_Click;
|
|
//
|
|
// frmMailNotificationProcess
|
|
//
|
|
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
ClientSize = new System.Drawing.Size(737, 366);
|
|
Controls.Add(panel2);
|
|
Controls.Add(panel1);
|
|
MaximizeBox = false;
|
|
Name = "frmMailNotificationProcess";
|
|
Text = "Mail Noftification Schedular";
|
|
panel1.ResumeLayout(false);
|
|
panel2.ResumeLayout(false);
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.ListView lvwNotificationProcess;
|
|
private System.Windows.Forms.ColumnHeader SL;
|
|
private System.Windows.Forms.ColumnHeader Title;
|
|
private System.Windows.Forms.ColumnHeader Status;
|
|
private System.Windows.Forms.Panel panel2;
|
|
private System.Windows.Forms.Button btnStart;
|
|
private System.Windows.Forms.Timer timerTriggerStart;
|
|
private System.Windows.Forms.Button btnTest;
|
|
private System.Windows.Forms.ColumnHeader StartAt;
|
|
}
|
|
}
|
|
|