using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using NEC.NECSoft.Jmss.JAPI.Interop;

namespace JapiTest
{
	/// <summary>
	/// FormJobInfo ̊Tv̐łB
	/// Wu̎擾ʂ\_CAO\܂B
	/// </summary>
	public class FormJobInfo : System.Windows.Forms.Form
	{
		private System.Windows.Forms.TextBox tbJobStsJobType;
		private System.Windows.Forms.TextBox tbJobStsStructSize;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.TextBox tbJobStsJobBoxID;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.TextBox tbJobStsNetRev;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.TextBox tbJobStsSecondId;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.TextBox tbJobStsResultJobNo;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.TextBox tbJobStsParentJobNo;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.TextBox tbJobStsJobExitCode;
		private System.Windows.Forms.Label label11;
		private System.Windows.Forms.TextBox tbJobStsJobStatus;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.TextBox tbJobStsPriority;
		private System.Windows.Forms.Label label13;
		private System.Windows.Forms.TextBox tbJobStsMinWS;
		private System.Windows.Forms.Label label14;
		private System.Windows.Forms.TextBox tbJobStsMaxWS;
		private System.Windows.Forms.Label label17;
		private System.Windows.Forms.Label label18;
		private System.Windows.Forms.Label label19;
		private System.Windows.Forms.TextBox tbJobStsUserCPUPercent;
		private System.Windows.Forms.Label label20;
		private System.Windows.Forms.TextBox tbJobStsKernelCPUPercent;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.TextBox tbJobStsBeginTime;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.TextBox tbJobStsEndTime;
		private System.Windows.Forms.Label label21;
		private System.Windows.Forms.Label label22;
		private System.Windows.Forms.Label label23;
		private System.Windows.Forms.Label label24;
		private System.Windows.Forms.TextBox tbJobStsRepeatInterval;
		private System.Windows.Forms.TextBox tbJobStsRepeatMaxCount;
		private System.Windows.Forms.TextBox tbJobStsRepeatEndTime;
		private System.Windows.Forms.TextBox tbJobStsRepeatCount;
		private System.Windows.Forms.Label label25;
		private System.Windows.Forms.TextBox tbJobStsEventID;
		private System.Windows.Forms.Label label26;
		private System.Windows.Forms.Label label27;
		private System.Windows.Forms.Label label28;
		private System.Windows.Forms.Label label29;
		private System.Windows.Forms.Label label30;
		private System.Windows.Forms.Label label31;
		private System.Windows.Forms.Label label32;
		private System.Windows.Forms.Label label33;
		private System.Windows.Forms.Label label34;
		private System.Windows.Forms.Label label35;
		private System.Windows.Forms.Label label36;
		private System.Windows.Forms.Label label37;
		private System.Windows.Forms.TextBox tbJobStsTimeout;
		private System.Windows.Forms.TextBox tbJobStsParentJntNo;
		private System.Windows.Forms.TextBox tbJobStsBranch;
		private System.Windows.Forms.TextBox tbJobStsUserName;
		private System.Windows.Forms.TextBox tbJobStsWsName;
		private System.Windows.Forms.TextBox tbJobStsQueueName;
		private System.Windows.Forms.TextBox tbJobStsBizName;
		private System.Windows.Forms.TextBox tbJobStsJobPath;
		private System.Windows.Forms.TextBox tbJobStsJobParam;
		private System.Windows.Forms.TextBox tbJobStsExecDir;
		private System.Windows.Forms.TextBox tbJobStsOutFileName;
		private System.Windows.Forms.TextBox tbJobStsCompName;
		private System.Windows.Forms.TextBox tbJobStsRootJobNo;
		private System.Windows.Forms.Label label38;
		private System.Windows.Forms.TextBox tbJobStsKernelCPUTime;
		private System.Windows.Forms.TextBox tbJobStsTotalCPUTime;
		private System.Windows.Forms.Label label15;
		private System.Windows.Forms.TextBox tbJobStsUserCPUTime;
		private System.Windows.Forms.Label label16;
		private System.Windows.Forms.TextBox tbJobStsExecType;
		/// <summary>
		/// KvȃfUCiϐłB
		/// </summary>
		private System.ComponentModel.Container components = null;

		public FormJobInfo()
		{
			//
			// Windows tH[ fUCi T|[gɕKvłB
			//
			InitializeComponent();

			//
			// TODO: InitializeComponent ĂяǒɁARXgN^ R[hǉĂB
			//
		}
		/// <summary>
		/// Wu̎擾ʂ\_CAO\܂B
		/// </summary>
		public FormJobInfo(JMSSJOBINFOEX sJmssJobInfo)
		{
			//
			// Windows tH[ fUCi T|[gɕKvłB
			//
			InitializeComponent();

			tbJobStsStructSize.Text = JMSSJOBINFOEX.Size.ToString ();
			int wkJobType = sJmssJobInfo.JobType & 0x000000ff;
			switch(wkJobType)
			{
				case (int)JobType.Type.JMSS_JOBTYPE_BAT :
					tbJobStsJobType.Text = "BAT";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_CMD :
					tbJobStsJobType.Text = "CMD";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_COM :
					tbJobStsJobType.Text = "COM";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_EXE16 :
					tbJobStsJobType.Text = "EXE16";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_EXE32 :
					tbJobStsJobType.Text = "EXE32";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_EXEDOS :
					tbJobStsJobType.Text = "EXEDOS";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_JNT :
					tbJobStsJobType.Text = "JNT";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_OS2 :
					tbJobStsJobType.Text = "OS2";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_PIF :
					tbJobStsJobType.Text = "PIF";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_POSIX :
					tbJobStsJobType.Text = "POSIX";
					break;
				case (int)JobType.Type.JMSS_JOBTYPE_UNKNOWN :
					tbJobStsJobType.Text = "UNKNOWN";
					break;
				default :
					tbJobStsJobType.Text = "m(" + wkJobType.ToString() + ")";
					break;
			}
			tbJobStsJobBoxID.Text = sJmssJobInfo.NetId.ToString();
			tbJobStsNetRev.Text = sJmssJobInfo.NetRev.ToString();
			tbJobStsSecondId.Text = sJmssJobInfo.SecondaryId.ToString();
			tbJobStsResultJobNo.Text = sJmssJobInfo.JobNo.ToString();
			tbJobStsRootJobNo.Text = sJmssJobInfo.RootJobNo.ToString();
			tbJobStsParentJobNo.Text = sJmssJobInfo.ParentJobNo.ToString();
			tbJobStsJobExitCode.Text = sJmssJobInfo.ExitCode.ToString() + "(0x" + sJmssJobInfo.ExitCode.ToString("X") + ")";
			switch(sJmssJobInfo.JobStatus)
			{
				case (int)JobStatus.Status.JMSS_JOBSTATUS_CHILDJOBRETRY :
					tbJobStsJobStatus.Text = "hWuNgC";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_ERROR :
					tbJobStsJobStatus.Text = "G[";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_EVENT_REC :
					tbJobStsJobStatus.Text = "CxgM҂";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_EVENT_SEND :
					tbJobStsJobStatus.Text = "CxgM";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_EXCLUSIVE :
					tbJobStsJobStatus.Text = "r҂";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_EXECUTE :
					tbJobStsJobStatus.Text = "N";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_FINISH :
					tbJobStsJobStatus.Text = "I";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_TERM :
					tbJobStsJobStatus.Text = "I";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_JOBBOXRETRY :
					tbJobStsJobStatus.Text = "Wu{bNXgC";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_PAUSE :
					tbJobStsJobStatus.Text = "ꎞ~";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_PENDING :
					tbJobStsJobStatus.Text = "ۗ";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_RETRY :
					tbJobStsJobStatus.Text = "NgC";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_RUN :
					tbJobStsJobStatus.Text = "s";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_STOP :
					tbJobStsJobStatus.Text = "~";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_STOPPING :
					tbJobStsJobStatus.Text = "~";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_UNKNOWN :
					tbJobStsJobStatus.Text = "s";
					break;
				case (int)JobStatus.Status.JMSS_JOBSTATUS_WAIT :
					tbJobStsJobStatus.Text = "s҂";
					break;
				default :
					tbJobStsJobStatus.Text = "m̐l(0x" + sJmssJobInfo.JobStatus.ToString("X") + ")";
					break;
			}
			
			switch(sJmssJobInfo.Priority)
			{
				case (int)ThrowJob.Priority.JMSS_PRIORITY_HIGH:
					tbJobStsPriority.Text = "HIGH";
					break;
				case (int)ThrowJob.Priority.JMSS_PRIORITY_IDLE:
					tbJobStsPriority.Text = "IDLE";
					break;
				case (int)ThrowJob.Priority.JMSS_PRIORITY_NORMAL:
					tbJobStsPriority.Text = "NORMAL";
					break;
				case (int)ThrowJob.Priority.JMSS_PRIORITY_REAL:
					tbJobStsPriority.Text = "REAL";
					break;
				default :
					tbJobStsPriority.Text = "m̐l(0x" + sJmssJobInfo.Priority.ToString("X") + ")";
					break;
			}

			switch(sJmssJobInfo.ExecType)
			{
				case 0:
					tbJobStsExecType.Text = "wȂ";
					break;
				case 1:
					tbJobStsExecType.Text = "޽ĂŋN";
					break;
				case 2:
					tbJobStsExecType.Text = "۸޵հޱĂŋN";
					break;
				default:
					tbJobStsExecType.Text = "s";
					break;
			}
			tbJobStsMinWS.Text = sJmssJobInfo.MinWorkingSet.ToString();
			tbJobStsMaxWS.Text = sJmssJobInfo.MaxWorkingSet.ToString();
			tbJobStsUserCPUTime.Text = sJmssJobInfo.UserCPUTime.ToString();
			tbJobStsKernelCPUTime.Text = sJmssJobInfo.KernelCPUTime.ToString();
			tbJobStsTotalCPUTime.Text = sJmssJobInfo.TotalCPUTime.ToString();
			tbJobStsUserCPUPercent.Text = sJmssJobInfo.UserCPUPercent.ToString();
			tbJobStsKernelCPUPercent.Text = sJmssJobInfo.KernelCPUPercent.ToString();

			tbJobStsBeginTime.Text = sJmssJobInfo.BgnTime.ToLongDateString() + sJmssJobInfo.BgnTime.ToLongTimeString();

			tbJobStsEndTime.Text = sJmssJobInfo.EndTime.ToLongDateString() + sJmssJobInfo.EndTime.ToLongTimeString();

			tbJobStsRepeatInterval.Text = sJmssJobInfo.RepeatInterval.ToString();
			tbJobStsRepeatMaxCount.Text = sJmssJobInfo.RepeatMaxCount.ToString();

			tbJobStsRepeatEndTime.Text = sJmssJobInfo.RepeatEndTime.ToLongDateString() + sJmssJobInfo.RepeatEndTime.ToLongTimeString();

			tbJobStsRepeatCount.Text = sJmssJobInfo.RepeatCount.ToString();
			tbJobStsEventID.Text = sJmssJobInfo.EventID;
			tbJobStsUserName.Text = sJmssJobInfo.UserName;
			tbJobStsWsName.Text = sJmssJobInfo.WsName;
			tbJobStsQueueName.Text = sJmssJobInfo.QueueName;
			tbJobStsCompName.Text = sJmssJobInfo.CompName;
			tbJobStsBizName.Text = sJmssJobInfo.JobName;
			tbJobStsJobPath.Text = sJmssJobInfo.JobPath;
			tbJobStsJobParam.Text = sJmssJobInfo.JobParam;
			tbJobStsExecDir.Text = sJmssJobInfo.ExecDir;
			tbJobStsOutFileName.Text = sJmssJobInfo.OutFileName;
			tbJobStsTimeout.Text = sJmssJobInfo.MaxElapsTime.ToString();
			tbJobStsParentJntNo.Text = sJmssJobInfo.ParentJntNo.ToString();
			tbJobStsBranch.Text = sJmssJobInfo.Branch.ToString();
		}


		/// <summary>
		/// gpĂ郊\[XɌ㏈s܂B
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code
		/// <summary>
		/// fUCi T|[gɕKvȃ\bhłB̃\bh̓e
		/// R[h GfB^ŕύXȂłB
		/// </summary>
		private void InitializeComponent()
		{
			this.tbJobStsJobType = new System.Windows.Forms.TextBox();
			this.tbJobStsStructSize = new System.Windows.Forms.TextBox();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.tbJobStsJobBoxID = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.tbJobStsNetRev = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.tbJobStsSecondId = new System.Windows.Forms.TextBox();
			this.label8 = new System.Windows.Forms.Label();
			this.tbJobStsResultJobNo = new System.Windows.Forms.TextBox();
			this.label9 = new System.Windows.Forms.Label();
			this.tbJobStsParentJobNo = new System.Windows.Forms.TextBox();
			this.label10 = new System.Windows.Forms.Label();
			this.tbJobStsJobExitCode = new System.Windows.Forms.TextBox();
			this.label11 = new System.Windows.Forms.Label();
			this.tbJobStsJobStatus = new System.Windows.Forms.TextBox();
			this.label12 = new System.Windows.Forms.Label();
			this.tbJobStsPriority = new System.Windows.Forms.TextBox();
			this.label13 = new System.Windows.Forms.Label();
			this.tbJobStsMinWS = new System.Windows.Forms.TextBox();
			this.label14 = new System.Windows.Forms.Label();
			this.tbJobStsMaxWS = new System.Windows.Forms.TextBox();
			this.label17 = new System.Windows.Forms.Label();
			this.tbJobStsKernelCPUTime = new System.Windows.Forms.TextBox();
			this.label18 = new System.Windows.Forms.Label();
			this.tbJobStsTotalCPUTime = new System.Windows.Forms.TextBox();
			this.label19 = new System.Windows.Forms.Label();
			this.tbJobStsUserCPUPercent = new System.Windows.Forms.TextBox();
			this.label20 = new System.Windows.Forms.Label();
			this.tbJobStsKernelCPUPercent = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.tbJobStsBeginTime = new System.Windows.Forms.TextBox();
			this.label5 = new System.Windows.Forms.Label();
			this.tbJobStsEndTime = new System.Windows.Forms.TextBox();
			this.label21 = new System.Windows.Forms.Label();
			this.label22 = new System.Windows.Forms.Label();
			this.label23 = new System.Windows.Forms.Label();
			this.label24 = new System.Windows.Forms.Label();
			this.tbJobStsRepeatInterval = new System.Windows.Forms.TextBox();
			this.tbJobStsRepeatMaxCount = new System.Windows.Forms.TextBox();
			this.tbJobStsRepeatEndTime = new System.Windows.Forms.TextBox();
			this.tbJobStsRepeatCount = new System.Windows.Forms.TextBox();
			this.label25 = new System.Windows.Forms.Label();
			this.tbJobStsEventID = new System.Windows.Forms.TextBox();
			this.label26 = new System.Windows.Forms.Label();
			this.label27 = new System.Windows.Forms.Label();
			this.label28 = new System.Windows.Forms.Label();
			this.label29 = new System.Windows.Forms.Label();
			this.label30 = new System.Windows.Forms.Label();
			this.label31 = new System.Windows.Forms.Label();
			this.label32 = new System.Windows.Forms.Label();
			this.label33 = new System.Windows.Forms.Label();
			this.label34 = new System.Windows.Forms.Label();
			this.label35 = new System.Windows.Forms.Label();
			this.label36 = new System.Windows.Forms.Label();
			this.label37 = new System.Windows.Forms.Label();
			this.tbJobStsTimeout = new System.Windows.Forms.TextBox();
			this.tbJobStsParentJntNo = new System.Windows.Forms.TextBox();
			this.tbJobStsBranch = new System.Windows.Forms.TextBox();
			this.tbJobStsUserName = new System.Windows.Forms.TextBox();
			this.tbJobStsWsName = new System.Windows.Forms.TextBox();
			this.tbJobStsQueueName = new System.Windows.Forms.TextBox();
			this.tbJobStsCompName = new System.Windows.Forms.TextBox();
			this.tbJobStsBizName = new System.Windows.Forms.TextBox();
			this.tbJobStsJobPath = new System.Windows.Forms.TextBox();
			this.tbJobStsJobParam = new System.Windows.Forms.TextBox();
			this.tbJobStsExecDir = new System.Windows.Forms.TextBox();
			this.tbJobStsOutFileName = new System.Windows.Forms.TextBox();
			this.tbJobStsRootJobNo = new System.Windows.Forms.TextBox();
			this.label38 = new System.Windows.Forms.Label();
			this.label15 = new System.Windows.Forms.Label();
			this.tbJobStsUserCPUTime = new System.Windows.Forms.TextBox();
			this.label16 = new System.Windows.Forms.Label();
			this.tbJobStsExecType = new System.Windows.Forms.TextBox();
			this.SuspendLayout();
			// 
			// tbJobStsJobType
			// 
			this.tbJobStsJobType.Location = new System.Drawing.Point(136, 33);
			this.tbJobStsJobType.Name = "tbJobStsJobType";
			this.tbJobStsJobType.ReadOnly = true;
			this.tbJobStsJobType.TabIndex = 34;
			this.tbJobStsJobType.Text = "";
			// 
			// tbJobStsStructSize
			// 
			this.tbJobStsStructSize.Location = new System.Drawing.Point(136, 7);
			this.tbJobStsStructSize.Name = "tbJobStsStructSize";
			this.tbJobStsStructSize.ReadOnly = true;
			this.tbJobStsStructSize.Size = new System.Drawing.Size(64, 19);
			this.tbJobStsStructSize.TabIndex = 24;
			this.tbJobStsStructSize.Text = "";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(32, 8);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(80, 16);
			this.label2.TabIndex = 20;
			this.label2.Text = "\̃TCY";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(32, 34);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(80, 16);
			this.label3.TabIndex = 21;
			this.label3.Text = "Wu̎";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(32, 60);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(80, 16);
			this.label4.TabIndex = 19;
			this.label4.Text = "Wu{bNXID";
			// 
			// tbJobStsJobBoxID
			// 
			this.tbJobStsJobBoxID.Location = new System.Drawing.Point(136, 59);
			this.tbJobStsJobBoxID.Name = "tbJobStsJobBoxID";
			this.tbJobStsJobBoxID.ReadOnly = true;
			this.tbJobStsJobBoxID.TabIndex = 35;
			this.tbJobStsJobBoxID.Text = "";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(32, 86);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(80, 24);
			this.label6.TabIndex = 18;
			this.label6.Text = "Wulbgt@CRevision";
			// 
			// tbJobStsNetRev
			// 
			this.tbJobStsNetRev.Location = new System.Drawing.Point(136, 89);
			this.tbJobStsNetRev.Name = "tbJobStsNetRev";
			this.tbJobStsNetRev.ReadOnly = true;
			this.tbJobStsNetRev.TabIndex = 33;
			this.tbJobStsNetRev.Text = "";
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(32, 120);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(64, 24);
			this.label7.TabIndex = 22;
			this.label7.Text = "hWuLID";
			// 
			// tbJobStsSecondId
			// 
			this.tbJobStsSecondId.Location = new System.Drawing.Point(136, 123);
			this.tbJobStsSecondId.Name = "tbJobStsSecondId";
			this.tbJobStsSecondId.ReadOnly = true;
			this.tbJobStsSecondId.TabIndex = 31;
			this.tbJobStsSecondId.Text = "";
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(32, 154);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(64, 16);
			this.label8.TabIndex = 16;
			this.label8.Text = "Wuԍ";
			// 
			// tbJobStsResultJobNo
			// 
			this.tbJobStsResultJobNo.Location = new System.Drawing.Point(136, 153);
			this.tbJobStsResultJobNo.Name = "tbJobStsResultJobNo";
			this.tbJobStsResultJobNo.ReadOnly = true;
			this.tbJobStsResultJobNo.TabIndex = 32;
			this.tbJobStsResultJobNo.Text = "";
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(32, 180);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(72, 16);
			this.label9.TabIndex = 9;
			this.label9.Text = "eWuԍ";
			// 
			// tbJobStsParentJobNo
			// 
			this.tbJobStsParentJobNo.Location = new System.Drawing.Point(136, 179);
			this.tbJobStsParentJobNo.Name = "tbJobStsParentJobNo";
			this.tbJobStsParentJobNo.ReadOnly = true;
			this.tbJobStsParentJobNo.TabIndex = 36;
			this.tbJobStsParentJobNo.Text = "";
			// 
			// label10
			// 
			this.label10.Location = new System.Drawing.Point(32, 232);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(96, 16);
			this.label10.TabIndex = 8;
			this.label10.Text = "WuIR[h";
			// 
			// tbJobStsJobExitCode
			// 
			this.tbJobStsJobExitCode.Location = new System.Drawing.Point(136, 231);
			this.tbJobStsJobExitCode.Name = "tbJobStsJobExitCode";
			this.tbJobStsJobExitCode.ReadOnly = true;
			this.tbJobStsJobExitCode.TabIndex = 40;
			this.tbJobStsJobExitCode.Text = "";
			// 
			// label11
			// 
			this.label11.Location = new System.Drawing.Point(32, 284);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(96, 16);
			this.label11.TabIndex = 6;
			this.label11.Text = "WuDx";
			// 
			// tbJobStsJobStatus
			// 
			this.tbJobStsJobStatus.Location = new System.Drawing.Point(136, 257);
			this.tbJobStsJobStatus.Name = "tbJobStsJobStatus";
			this.tbJobStsJobStatus.ReadOnly = true;
			this.tbJobStsJobStatus.TabIndex = 41;
			this.tbJobStsJobStatus.Text = "";
			// 
			// label12
			// 
			this.label12.Location = new System.Drawing.Point(32, 258);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(96, 16);
			this.label12.TabIndex = 14;
			this.label12.Text = "Wus";
			// 
			// tbJobStsPriority
			// 
			this.tbJobStsPriority.Location = new System.Drawing.Point(136, 283);
			this.tbJobStsPriority.Name = "tbJobStsPriority";
			this.tbJobStsPriority.ReadOnly = true;
			this.tbJobStsPriority.TabIndex = 39;
			this.tbJobStsPriority.Text = "";
			// 
			// label13
			// 
			this.label13.Location = new System.Drawing.Point(32, 310);
			this.label13.Name = "label13";
			this.label13.Size = new System.Drawing.Size(96, 16);
			this.label13.TabIndex = 15;
			this.label13.Text = "ŏWorkingSet";
			// 
			// tbJobStsMinWS
			// 
			this.tbJobStsMinWS.Location = new System.Drawing.Point(136, 309);
			this.tbJobStsMinWS.Name = "tbJobStsMinWS";
			this.tbJobStsMinWS.ReadOnly = true;
			this.tbJobStsMinWS.TabIndex = 37;
			this.tbJobStsMinWS.Text = "";
			// 
			// label14
			// 
			this.label14.Location = new System.Drawing.Point(32, 336);
			this.label14.Name = "label14";
			this.label14.Size = new System.Drawing.Size(96, 16);
			this.label14.TabIndex = 11;
			this.label14.Text = "őWorkingSet";
			// 
			// tbJobStsMaxWS
			// 
			this.tbJobStsMaxWS.Location = new System.Drawing.Point(136, 335);
			this.tbJobStsMaxWS.Name = "tbJobStsMaxWS";
			this.tbJobStsMaxWS.ReadOnly = true;
			this.tbJobStsMaxWS.TabIndex = 38;
			this.tbJobStsMaxWS.Text = "";
			// 
			// label17
			// 
			this.label17.Location = new System.Drawing.Point(256, 8);
			this.label17.Name = "label17";
			this.label17.Size = new System.Drawing.Size(96, 16);
			this.label17.TabIndex = 7;
			this.label17.Text = "KernelCPUTime";
			// 
			// tbJobStsKernelCPUTime
			// 
			this.tbJobStsKernelCPUTime.Location = new System.Drawing.Point(376, 8);
			this.tbJobStsKernelCPUTime.Name = "tbJobStsKernelCPUTime";
			this.tbJobStsKernelCPUTime.ReadOnly = true;
			this.tbJobStsKernelCPUTime.TabIndex = 30;
			this.tbJobStsKernelCPUTime.Text = "";
			// 
			// label18
			// 
			this.label18.Location = new System.Drawing.Point(256, 32);
			this.label18.Name = "label18";
			this.label18.Size = new System.Drawing.Size(96, 16);
			this.label18.TabIndex = 10;
			this.label18.Text = "TotalCPUTime";
			// 
			// tbJobStsTotalCPUTime
			// 
			this.tbJobStsTotalCPUTime.Location = new System.Drawing.Point(376, 32);
			this.tbJobStsTotalCPUTime.Name = "tbJobStsTotalCPUTime";
			this.tbJobStsTotalCPUTime.ReadOnly = true;
			this.tbJobStsTotalCPUTime.TabIndex = 27;
			this.tbJobStsTotalCPUTime.Text = "";
			// 
			// label19
			// 
			this.label19.Location = new System.Drawing.Point(256, 56);
			this.label19.Name = "label19";
			this.label19.Size = new System.Drawing.Size(96, 16);
			this.label19.TabIndex = 23;
			this.label19.Text = "UserCPUPercent";
			// 
			// tbJobStsUserCPUPercent
			// 
			this.tbJobStsUserCPUPercent.Location = new System.Drawing.Point(376, 56);
			this.tbJobStsUserCPUPercent.Name = "tbJobStsUserCPUPercent";
			this.tbJobStsUserCPUPercent.ReadOnly = true;
			this.tbJobStsUserCPUPercent.TabIndex = 28;
			this.tbJobStsUserCPUPercent.Text = "";
			// 
			// label20
			// 
			this.label20.Location = new System.Drawing.Point(256, 80);
			this.label20.Name = "label20";
			this.label20.Size = new System.Drawing.Size(104, 16);
			this.label20.TabIndex = 17;
			this.label20.Text = "KernelCPUPercent";
			// 
			// tbJobStsKernelCPUPercent
			// 
			this.tbJobStsKernelCPUPercent.Location = new System.Drawing.Point(376, 80);
			this.tbJobStsKernelCPUPercent.Name = "tbJobStsKernelCPUPercent";
			this.tbJobStsKernelCPUPercent.ReadOnly = true;
			this.tbJobStsKernelCPUPercent.TabIndex = 26;
			this.tbJobStsKernelCPUPercent.Text = "";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(256, 112);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(120, 16);
			this.label1.TabIndex = 17;
			this.label1.Text = "WuJnt^";
			// 
			// tbJobStsBeginTime
			// 
			this.tbJobStsBeginTime.Location = new System.Drawing.Point(376, 104);
			this.tbJobStsBeginTime.Name = "tbJobStsBeginTime";
			this.tbJobStsBeginTime.ReadOnly = true;
			this.tbJobStsBeginTime.Size = new System.Drawing.Size(176, 19);
			this.tbJobStsBeginTime.TabIndex = 26;
			this.tbJobStsBeginTime.Text = "";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(256, 136);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(120, 16);
			this.label5.TabIndex = 17;
			this.label5.Text = "WuIt^";
			// 
			// tbJobStsEndTime
			// 
			this.tbJobStsEndTime.Location = new System.Drawing.Point(376, 136);
			this.tbJobStsEndTime.Name = "tbJobStsEndTime";
			this.tbJobStsEndTime.ReadOnly = true;
			this.tbJobStsEndTime.Size = new System.Drawing.Size(176, 19);
			this.tbJobStsEndTime.TabIndex = 26;
			this.tbJobStsEndTime.Text = "";
			// 
			// label21
			// 
			this.label21.Location = new System.Drawing.Point(256, 160);
			this.label21.Name = "label21";
			this.label21.Size = new System.Drawing.Size(96, 16);
			this.label21.TabIndex = 17;
			this.label21.Text = "JԂԊu";
			// 
			// label22
			// 
			this.label22.Location = new System.Drawing.Point(256, 184);
			this.label22.Name = "label22";
			this.label22.Size = new System.Drawing.Size(96, 16);
			this.label22.TabIndex = 17;
			this.label22.Text = "JԂ";
			// 
			// label23
			// 
			this.label23.Location = new System.Drawing.Point(256, 208);
			this.label23.Name = "label23";
			this.label23.Size = new System.Drawing.Size(96, 16);
			this.label23.TabIndex = 17;
			this.label23.Text = "JԂI";
			// 
			// label24
			// 
			this.label24.Location = new System.Drawing.Point(256, 232);
			this.label24.Name = "label24";
			this.label24.Size = new System.Drawing.Size(112, 16);
			this.label24.TabIndex = 17;
			this.label24.Text = "JԂs";
			// 
			// tbJobStsRepeatInterval
			// 
			this.tbJobStsRepeatInterval.Location = new System.Drawing.Point(376, 160);
			this.tbJobStsRepeatInterval.Name = "tbJobStsRepeatInterval";
			this.tbJobStsRepeatInterval.ReadOnly = true;
			this.tbJobStsRepeatInterval.TabIndex = 26;
			this.tbJobStsRepeatInterval.Text = "";
			// 
			// tbJobStsRepeatMaxCount
			// 
			this.tbJobStsRepeatMaxCount.Location = new System.Drawing.Point(376, 184);
			this.tbJobStsRepeatMaxCount.Name = "tbJobStsRepeatMaxCount";
			this.tbJobStsRepeatMaxCount.ReadOnly = true;
			this.tbJobStsRepeatMaxCount.TabIndex = 26;
			this.tbJobStsRepeatMaxCount.Text = "";
			// 
			// tbJobStsRepeatEndTime
			// 
			this.tbJobStsRepeatEndTime.Location = new System.Drawing.Point(376, 208);
			this.tbJobStsRepeatEndTime.Name = "tbJobStsRepeatEndTime";
			this.tbJobStsRepeatEndTime.ReadOnly = true;
			this.tbJobStsRepeatEndTime.Size = new System.Drawing.Size(176, 19);
			this.tbJobStsRepeatEndTime.TabIndex = 26;
			this.tbJobStsRepeatEndTime.Text = "";
			// 
			// tbJobStsRepeatCount
			// 
			this.tbJobStsRepeatCount.Location = new System.Drawing.Point(376, 232);
			this.tbJobStsRepeatCount.Name = "tbJobStsRepeatCount";
			this.tbJobStsRepeatCount.ReadOnly = true;
			this.tbJobStsRepeatCount.TabIndex = 26;
			this.tbJobStsRepeatCount.Text = "";
			// 
			// label25
			// 
			this.label25.Location = new System.Drawing.Point(256, 256);
			this.label25.Name = "label25";
			this.label25.Size = new System.Drawing.Size(112, 16);
			this.label25.TabIndex = 17;
			this.label25.Text = "CxgID";
			// 
			// tbJobStsEventID
			// 
			this.tbJobStsEventID.Location = new System.Drawing.Point(376, 256);
			this.tbJobStsEventID.Name = "tbJobStsEventID";
			this.tbJobStsEventID.ReadOnly = true;
			this.tbJobStsEventID.TabIndex = 26;
			this.tbJobStsEventID.Text = "";
			// 
			// label26
			// 
			this.label26.Location = new System.Drawing.Point(32, 392);
			this.label26.Name = "label26";
			this.label26.Size = new System.Drawing.Size(72, 16);
			this.label26.TabIndex = 15;
			this.label26.Text = "[U";
			// 
			// label27
			// 
			this.label27.Location = new System.Drawing.Point(32, 416);
			this.label27.Name = "label27";
			this.label27.Size = new System.Drawing.Size(72, 16);
			this.label27.TabIndex = 15;
			this.label27.Text = "}V";
			// 
			// label28
			// 
			this.label28.Location = new System.Drawing.Point(32, 440);
			this.label28.Name = "label28";
			this.label28.Size = new System.Drawing.Size(96, 16);
			this.label28.TabIndex = 15;
			this.label28.Text = "WuL[";
			// 
			// label29
			// 
			this.label29.Location = new System.Drawing.Point(32, 464);
			this.label29.Name = "label29";
			this.label29.Size = new System.Drawing.Size(96, 16);
			this.label29.TabIndex = 15;
			this.label29.Text = "s}V";
			// 
			// label30
			// 
			this.label30.Location = new System.Drawing.Point(32, 488);
			this.label30.Name = "label30";
			this.label30.Size = new System.Drawing.Size(56, 16);
			this.label30.TabIndex = 15;
			this.label30.Text = "Ɩ";
			// 
			// label31
			// 
			this.label31.Location = new System.Drawing.Point(32, 512);
			this.label31.Name = "label31";
			this.label31.Size = new System.Drawing.Size(88, 16);
			this.label31.TabIndex = 15;
			this.label31.Text = "Wut@C";
			// 
			// label32
			// 
			this.label32.Location = new System.Drawing.Point(32, 536);
			this.label32.Name = "label32";
			this.label32.Size = new System.Drawing.Size(88, 16);
			this.label32.TabIndex = 15;
			this.label32.Text = "p[^";
			// 
			// label33
			// 
			this.label33.Location = new System.Drawing.Point(32, 560);
			this.label33.Name = "label33";
			this.label33.Size = new System.Drawing.Size(104, 16);
			this.label33.TabIndex = 15;
			this.label33.Text = "sfBNg";
			// 
			// label34
			// 
			this.label34.Location = new System.Drawing.Point(32, 584);
			this.label34.Name = "label34";
			this.label34.Size = new System.Drawing.Size(104, 16);
			this.label34.TabIndex = 15;
			this.label34.Text = "Wo̓t@C";
			// 
			// label35
			// 
			this.label35.Location = new System.Drawing.Point(256, 280);
			this.label35.Name = "label35";
			this.label35.Size = new System.Drawing.Size(88, 16);
			this.label35.TabIndex = 17;
			this.label35.Text = "^CAEg";
			// 
			// label36
			// 
			this.label36.Location = new System.Drawing.Point(256, 333);
			this.label36.Name = "label36";
			this.label36.Size = new System.Drawing.Size(104, 16);
			this.label36.TabIndex = 17;
			this.label36.Text = "pWuԍ";
			// 
			// label37
			// 
			this.label37.Location = new System.Drawing.Point(256, 358);
			this.label37.Name = "label37";
			this.label37.Size = new System.Drawing.Size(104, 16);
			this.label37.TabIndex = 17;
			this.label37.Text = "gp";
			// 
			// tbJobStsTimeout
			// 
			this.tbJobStsTimeout.Location = new System.Drawing.Point(376, 280);
			this.tbJobStsTimeout.Name = "tbJobStsTimeout";
			this.tbJobStsTimeout.ReadOnly = true;
			this.tbJobStsTimeout.TabIndex = 37;
			this.tbJobStsTimeout.Text = "";
			// 
			// tbJobStsParentJntNo
			// 
			this.tbJobStsParentJntNo.Location = new System.Drawing.Point(376, 332);
			this.tbJobStsParentJntNo.Name = "tbJobStsParentJntNo";
			this.tbJobStsParentJntNo.ReadOnly = true;
			this.tbJobStsParentJntNo.TabIndex = 37;
			this.tbJobStsParentJntNo.Text = "";
			// 
			// tbJobStsBranch
			// 
			this.tbJobStsBranch.Location = new System.Drawing.Point(376, 357);
			this.tbJobStsBranch.Name = "tbJobStsBranch";
			this.tbJobStsBranch.ReadOnly = true;
			this.tbJobStsBranch.TabIndex = 37;
			this.tbJobStsBranch.Text = "";
			// 
			// tbJobStsUserName
			// 
			this.tbJobStsUserName.Location = new System.Drawing.Point(144, 392);
			this.tbJobStsUserName.Name = "tbJobStsUserName";
			this.tbJobStsUserName.ReadOnly = true;
			this.tbJobStsUserName.Size = new System.Drawing.Size(160, 19);
			this.tbJobStsUserName.TabIndex = 37;
			this.tbJobStsUserName.Text = "";
			// 
			// tbJobStsWsName
			// 
			this.tbJobStsWsName.Location = new System.Drawing.Point(144, 416);
			this.tbJobStsWsName.Name = "tbJobStsWsName";
			this.tbJobStsWsName.ReadOnly = true;
			this.tbJobStsWsName.Size = new System.Drawing.Size(160, 19);
			this.tbJobStsWsName.TabIndex = 37;
			this.tbJobStsWsName.Text = "";
			// 
			// tbJobStsQueueName
			// 
			this.tbJobStsQueueName.Location = new System.Drawing.Point(144, 440);
			this.tbJobStsQueueName.Name = "tbJobStsQueueName";
			this.tbJobStsQueueName.ReadOnly = true;
			this.tbJobStsQueueName.Size = new System.Drawing.Size(160, 19);
			this.tbJobStsQueueName.TabIndex = 37;
			this.tbJobStsQueueName.Text = "";
			// 
			// tbJobStsCompName
			// 
			this.tbJobStsCompName.Location = new System.Drawing.Point(144, 464);
			this.tbJobStsCompName.Name = "tbJobStsCompName";
			this.tbJobStsCompName.ReadOnly = true;
			this.tbJobStsCompName.Size = new System.Drawing.Size(160, 19);
			this.tbJobStsCompName.TabIndex = 37;
			this.tbJobStsCompName.Text = "";
			// 
			// tbJobStsBizName
			// 
			this.tbJobStsBizName.Location = new System.Drawing.Point(144, 488);
			this.tbJobStsBizName.Name = "tbJobStsBizName";
			this.tbJobStsBizName.ReadOnly = true;
			this.tbJobStsBizName.Size = new System.Drawing.Size(160, 19);
			this.tbJobStsBizName.TabIndex = 37;
			this.tbJobStsBizName.Text = "";
			// 
			// tbJobStsJobPath
			// 
			this.tbJobStsJobPath.Location = new System.Drawing.Point(144, 512);
			this.tbJobStsJobPath.Name = "tbJobStsJobPath";
			this.tbJobStsJobPath.ReadOnly = true;
			this.tbJobStsJobPath.Size = new System.Drawing.Size(272, 19);
			this.tbJobStsJobPath.TabIndex = 37;
			this.tbJobStsJobPath.Text = "";
			// 
			// tbJobStsJobParam
			// 
			this.tbJobStsJobParam.Location = new System.Drawing.Point(144, 536);
			this.tbJobStsJobParam.Name = "tbJobStsJobParam";
			this.tbJobStsJobParam.ReadOnly = true;
			this.tbJobStsJobParam.Size = new System.Drawing.Size(272, 19);
			this.tbJobStsJobParam.TabIndex = 37;
			this.tbJobStsJobParam.Text = "";
			// 
			// tbJobStsExecDir
			// 
			this.tbJobStsExecDir.Location = new System.Drawing.Point(144, 560);
			this.tbJobStsExecDir.Name = "tbJobStsExecDir";
			this.tbJobStsExecDir.ReadOnly = true;
			this.tbJobStsExecDir.Size = new System.Drawing.Size(272, 19);
			this.tbJobStsExecDir.TabIndex = 37;
			this.tbJobStsExecDir.Text = "";
			// 
			// tbJobStsOutFileName
			// 
			this.tbJobStsOutFileName.Location = new System.Drawing.Point(144, 584);
			this.tbJobStsOutFileName.Name = "tbJobStsOutFileName";
			this.tbJobStsOutFileName.ReadOnly = true;
			this.tbJobStsOutFileName.Size = new System.Drawing.Size(272, 19);
			this.tbJobStsOutFileName.TabIndex = 37;
			this.tbJobStsOutFileName.Text = "";
			// 
			// tbJobStsRootJobNo
			// 
			this.tbJobStsRootJobNo.Location = new System.Drawing.Point(136, 205);
			this.tbJobStsRootJobNo.Name = "tbJobStsRootJobNo";
			this.tbJobStsRootJobNo.ReadOnly = true;
			this.tbJobStsRootJobNo.TabIndex = 36;
			this.tbJobStsRootJobNo.Text = "";
			// 
			// label38
			// 
			this.label38.Location = new System.Drawing.Point(32, 206);
			this.label38.Name = "label38";
			this.label38.Size = new System.Drawing.Size(88, 16);
			this.label38.TabIndex = 9;
			this.label38.Text = "[gWuԍ";
			// 
			// label15
			// 
			this.label15.Location = new System.Drawing.Point(32, 360);
			this.label15.Name = "label15";
			this.label15.Size = new System.Drawing.Size(96, 16);
			this.label15.TabIndex = 42;
			this.label15.Text = "UserCpuTime";
			// 
			// tbJobStsUserCPUTime
			// 
			this.tbJobStsUserCPUTime.Location = new System.Drawing.Point(136, 360);
			this.tbJobStsUserCPUTime.Name = "tbJobStsUserCPUTime";
			this.tbJobStsUserCPUTime.ReadOnly = true;
			this.tbJobStsUserCPUTime.TabIndex = 43;
			this.tbJobStsUserCPUTime.Text = "";
			// 
			// label16
			// 
			this.label16.Location = new System.Drawing.Point(256, 304);
			this.label16.Name = "label16";
			this.label16.Size = new System.Drawing.Size(88, 16);
			this.label16.TabIndex = 44;
			this.label16.Text = "WuN";
			// 
			// tbJobStsExecType
			// 
			this.tbJobStsExecType.Location = new System.Drawing.Point(376, 304);
			this.tbJobStsExecType.Name = "tbJobStsExecType";
			this.tbJobStsExecType.ReadOnly = true;
			this.tbJobStsExecType.Size = new System.Drawing.Size(176, 19);
			this.tbJobStsExecType.TabIndex = 45;
			this.tbJobStsExecType.Text = "";
			// 
			// FormJobInfo
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 12);
			this.ClientSize = new System.Drawing.Size(584, 613);
			this.Controls.Add(this.label16);
			this.Controls.Add(this.tbJobStsExecType);
			this.Controls.Add(this.label15);
			this.Controls.Add(this.tbJobStsUserCPUTime);
			this.Controls.Add(this.tbJobStsJobType);
			this.Controls.Add(this.tbJobStsStructSize);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.tbJobStsJobBoxID);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.tbJobStsNetRev);
			this.Controls.Add(this.label7);
			this.Controls.Add(this.tbJobStsSecondId);
			this.Controls.Add(this.label8);
			this.Controls.Add(this.tbJobStsResultJobNo);
			this.Controls.Add(this.label9);
			this.Controls.Add(this.tbJobStsParentJobNo);
			this.Controls.Add(this.label10);
			this.Controls.Add(this.tbJobStsJobExitCode);
			this.Controls.Add(this.label11);
			this.Controls.Add(this.tbJobStsJobStatus);
			this.Controls.Add(this.label12);
			this.Controls.Add(this.tbJobStsPriority);
			this.Controls.Add(this.label13);
			this.Controls.Add(this.tbJobStsMinWS);
			this.Controls.Add(this.label14);
			this.Controls.Add(this.tbJobStsMaxWS);
			this.Controls.Add(this.label17);
			this.Controls.Add(this.tbJobStsKernelCPUTime);
			this.Controls.Add(this.label18);
			this.Controls.Add(this.tbJobStsTotalCPUTime);
			this.Controls.Add(this.label19);
			this.Controls.Add(this.tbJobStsUserCPUPercent);
			this.Controls.Add(this.label20);
			this.Controls.Add(this.tbJobStsKernelCPUPercent);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.tbJobStsBeginTime);
			this.Controls.Add(this.label5);
			this.Controls.Add(this.tbJobStsEndTime);
			this.Controls.Add(this.label21);
			this.Controls.Add(this.label22);
			this.Controls.Add(this.label23);
			this.Controls.Add(this.label24);
			this.Controls.Add(this.tbJobStsRepeatInterval);
			this.Controls.Add(this.tbJobStsRepeatMaxCount);
			this.Controls.Add(this.tbJobStsRepeatEndTime);
			this.Controls.Add(this.tbJobStsRepeatCount);
			this.Controls.Add(this.label25);
			this.Controls.Add(this.tbJobStsEventID);
			this.Controls.Add(this.label26);
			this.Controls.Add(this.label27);
			this.Controls.Add(this.label28);
			this.Controls.Add(this.label29);
			this.Controls.Add(this.label30);
			this.Controls.Add(this.label31);
			this.Controls.Add(this.label32);
			this.Controls.Add(this.label33);
			this.Controls.Add(this.label34);
			this.Controls.Add(this.label35);
			this.Controls.Add(this.label36);
			this.Controls.Add(this.label37);
			this.Controls.Add(this.tbJobStsTimeout);
			this.Controls.Add(this.tbJobStsParentJntNo);
			this.Controls.Add(this.tbJobStsBranch);
			this.Controls.Add(this.tbJobStsUserName);
			this.Controls.Add(this.tbJobStsWsName);
			this.Controls.Add(this.tbJobStsQueueName);
			this.Controls.Add(this.tbJobStsCompName);
			this.Controls.Add(this.tbJobStsBizName);
			this.Controls.Add(this.tbJobStsJobPath);
			this.Controls.Add(this.tbJobStsJobParam);
			this.Controls.Add(this.tbJobStsExecDir);
			this.Controls.Add(this.tbJobStsOutFileName);
			this.Controls.Add(this.tbJobStsRootJobNo);
			this.Controls.Add(this.label38);
			this.Name = "FormJobInfo";
			this.Text = "Wu";
			this.Load += new System.EventHandler(this.FormJobInfo_Load);
			this.ResumeLayout(false);

		}
		#endregion

		private void FormJobInfo_Load(object sender, System.EventArgs e)
		{
		
		}

	}
}
