Imports System
Imports System.Text
Imports System.Drawing
Imports System.Collections
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports NEC.NECSoft.Jmss.JAPI.Interop

Namespace JapiTest

    '/// <summary>
'/// FormJobInfo ̊Tv̐łB
'/// Wu̎擾ʂ\_CAO\܂B
'/// </summary>
Public Class FormJobInfo
    Inherits System.Windows.Forms.Form

        Private m_JmssJobInfo As JMSSJOBINFOEX

        '/// <summary>
        '/// Wu̎擾ʂ\_CAO\܂B
        '/// </summary>
        Public Sub New(ByVal sJmssJobInfo As JMSSJOBINFOEX)
            MyBase.New()

            ' ̌Ăяo Windows tH[ fUCiŕKvłB
            InitializeComponent()

            ' InitializeComponent() Ăяǒɏǉ܂B
            tbJobStsStructSize.Text = sJmssJobInfo.Size.ToString()

            Dim wkJobType As Integer = sJmssJobInfo.JobType And &HFF
            Select Case (wkJobType)
                Case JobType.Type.JMSS_JOBTYPE_BAT
                    tbJobStsJobType.Text = "BAT"
                Case JobType.Type.JMSS_JOBTYPE_CMD
                    tbJobStsJobType.Text = "CMD"
                Case JobType.Type.JMSS_JOBTYPE_COM
                    tbJobStsJobType.Text = "COM"
                Case JobType.Type.JMSS_JOBTYPE_EXE16
                    tbJobStsJobType.Text = "EXE16"
                Case JobType.Type.JMSS_JOBTYPE_EXE32
                    tbJobStsJobType.Text = "EXE32"
                Case JobType.Type.JMSS_JOBTYPE_EXEDOS
                    tbJobStsJobType.Text = "EXEDOS"
                Case JobType.Type.JMSS_JOBTYPE_JNT
                    tbJobStsJobType.Text = "JNT"
                Case JobType.Type.JMSS_JOBTYPE_OS2
                    tbJobStsJobType.Text = "OS2"
                Case JobType.Type.JMSS_JOBTYPE_PIF
                    tbJobStsJobType.Text = "PIF"
                Case JobType.Type.JMSS_JOBTYPE_POSIX
                    tbJobStsJobType.Text = "POSIX"
                Case JobType.Type.JMSS_JOBTYPE_UNKNOWN
                    tbJobStsJobType.Text = "UNKNOWN"
                Case Else
                    tbJobStsJobType.Text = "m(" + wkJobType.ToString() + ")"
            End Select
            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") + ")"
            Select Case (sJmssJobInfo.JobStatus)
                Case JobStatus.Status.JMSS_JOBSTATUS_CHILDJOBRETRY
                    tbJobStsJobStatus.Text = "hWuNgC"
                Case JobStatus.Status.JMSS_JOBSTATUS_ERROR
                    tbJobStsJobStatus.Text = "G["
                Case JobStatus.Status.JMSS_JOBSTATUS_EVENT_REC
                    tbJobStsJobStatus.Text = "CxgM҂"
                Case JobStatus.Status.JMSS_JOBSTATUS_EVENT_SEND
                    tbJobStsJobStatus.Text = "CxgM"
                Case JobStatus.Status.JMSS_JOBSTATUS_EXCLUSIVE
                    tbJobStsJobStatus.Text = "r҂"
                Case JobStatus.Status.JMSS_JOBSTATUS_EXECUTE
                    tbJobStsJobStatus.Text = "N"
                Case JobStatus.Status.JMSS_JOBSTATUS_FINISH
                    tbJobStsJobStatus.Text = "I"
                Case JobStatus.Status.JMSS_JOBSTATUS_TERM
                    tbJobStsJobStatus.Text = "I"
                Case JobStatus.Status.JMSS_JOBSTATUS_JOBBOXRETRY
                    tbJobStsJobStatus.Text = "Wu{bNXgC"
                Case JobStatus.Status.JMSS_JOBSTATUS_PAUSE
                    tbJobStsJobStatus.Text = "ꎞ~"
                Case JobStatus.Status.JMSS_JOBSTATUS_PENDING
                    tbJobStsJobStatus.Text = "ۗ"
                Case JobStatus.Status.JMSS_JOBSTATUS_RETRY
                    tbJobStsJobStatus.Text = "NgC"
                Case JobStatus.Status.JMSS_JOBSTATUS_RUN
                    tbJobStsJobStatus.Text = "s"
                Case JobStatus.Status.JMSS_JOBSTATUS_STOP
                    tbJobStsJobStatus.Text = "~"
                Case JobStatus.Status.JMSS_JOBSTATUS_STOPPING
                    tbJobStsJobStatus.Text = "~"
                Case JobStatus.Status.JMSS_JOBSTATUS_UNKNOWN
                    tbJobStsJobStatus.Text = "s"
                Case JobStatus.Status.JMSS_JOBSTATUS_WAIT
                    tbJobStsJobStatus.Text = "s҂"
                Case Else
                    tbJobStsJobStatus.Text = "m̐l(0x" + sJmssJobInfo.JobStatus.ToString("X") + ")"
            End Select

            Select Case (sJmssJobInfo.Priority)
                Case ThrowJob.Priority.JMSS_PRIORITY_HIGH
                    tbJobStsPriority.Text = "HIGH"
                Case ThrowJob.Priority.JMSS_PRIORITY_IDLE
                    tbJobStsPriority.Text = "IDLE"
                Case ThrowJob.Priority.JMSS_PRIORITY_NORMAL
                    tbJobStsPriority.Text = "NORMAL"
                Case ThrowJob.Priority.JMSS_PRIORITY_REAL
                    tbJobStsPriority.Text = "REAL"
                Case Else
                    tbJobStsPriority.Text = "m̐l(0x" + _
                    sJmssJobInfo.Priority.ToString("X") + ")"
            End Select

            Dim dwWkExecType As Int16 = Convert.ToInt16(sJmssJobInfo.ExecType)
            Select Case (dwWkExecType)

                Case 0
                    tbJobStsExecType.Text = "wȂ"
                Case 1
                    tbJobStsExecType.Text = "޽ĂŋN"
                Case 2
                    tbJobStsExecType.Text = "۸޵հޱĂŋN"
                Case Else
                    tbJobStsExecType.Text = "s"
            End Select
            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()

        End Sub

        Property ThisProperty() As JMSSJOBINFOEX
            Get
                ThisProperty = m_JmssJobInfo
            End Get
            Set(ByVal Value As JMSSJOBINFOEX)
                m_JmssJobInfo = Value
            End Set
        End Property

#Region " Windows tH[ fUCiŐꂽR[h "

        ' Form  dispose I[o[ChăR|[lgꗗ܂B
        Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
            If disposing Then
                If Not (components Is Nothing) Then
                    components.Dispose()
                End If
            End If
            MyBase.Dispose(disposing)
        End Sub

        ' Windows tH[ fUCiŕKvłB
        Private components As System.ComponentModel.IContainer

        '  : ȉ̃vV[ẂAWindows tH[ fUCiŕKvłB
        ' Windows tH[ fUCigĕύXĂB  
        ' R[h GfB^͎gpȂłB
        Friend WithEvents tbJobStsJobType As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsStructSize As System.Windows.Forms.TextBox
        Friend WithEvents label2 As System.Windows.Forms.Label
        Friend WithEvents label3 As System.Windows.Forms.Label
        Friend WithEvents label4 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsJobBoxID As System.Windows.Forms.TextBox
        Friend WithEvents label6 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsNetRev As System.Windows.Forms.TextBox
        Friend WithEvents label7 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsSecondId As System.Windows.Forms.TextBox
        Friend WithEvents label8 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsResultJobNo As System.Windows.Forms.TextBox
        Friend WithEvents label9 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsParentJobNo As System.Windows.Forms.TextBox
        Friend WithEvents label10 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsJobExitCode As System.Windows.Forms.TextBox
        Friend WithEvents label11 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsJobStatus As System.Windows.Forms.TextBox
        Friend WithEvents label12 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsPriority As System.Windows.Forms.TextBox
        Friend WithEvents label13 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsMinWS As System.Windows.Forms.TextBox
        Friend WithEvents label14 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsMaxWS As System.Windows.Forms.TextBox
        Friend WithEvents label15 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsUserCPUTime As System.Windows.Forms.TextBox
        Friend WithEvents label17 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsKernelCPUTime As System.Windows.Forms.TextBox
        Friend WithEvents label18 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsTotalCPUTime As System.Windows.Forms.TextBox
        Friend WithEvents label19 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsUserCPUPercent As System.Windows.Forms.TextBox
        Friend WithEvents label20 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsKernelCPUPercent As System.Windows.Forms.TextBox
        Friend WithEvents label1 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsBeginTime As System.Windows.Forms.TextBox
        Friend WithEvents label5 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsEndTime As System.Windows.Forms.TextBox
        Friend WithEvents label21 As System.Windows.Forms.Label
        Friend WithEvents label22 As System.Windows.Forms.Label
        Friend WithEvents label23 As System.Windows.Forms.Label
        Friend WithEvents label24 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsRepeatInterval As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsRepeatMaxCount As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsRepeatEndTime As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsRepeatCount As System.Windows.Forms.TextBox
        Friend WithEvents label25 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsEventID As System.Windows.Forms.TextBox
        Friend WithEvents label26 As System.Windows.Forms.Label
        Friend WithEvents label27 As System.Windows.Forms.Label
        Friend WithEvents label28 As System.Windows.Forms.Label
        Friend WithEvents label29 As System.Windows.Forms.Label
        Friend WithEvents label30 As System.Windows.Forms.Label
        Friend WithEvents label31 As System.Windows.Forms.Label
        Friend WithEvents label32 As System.Windows.Forms.Label
        Friend WithEvents label33 As System.Windows.Forms.Label
        Friend WithEvents label34 As System.Windows.Forms.Label
        Friend WithEvents label35 As System.Windows.Forms.Label
        Friend WithEvents label36 As System.Windows.Forms.Label
        Friend WithEvents label37 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsTimeout As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsParentJntNo As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsBranch As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsUserName As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsWsName As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsQueueName As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsCompName As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsBizName As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsJobPath As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsJobParam As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsExecDir As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsOutFileName As System.Windows.Forms.TextBox
        Friend WithEvents tbJobStsRootJobNo As System.Windows.Forms.TextBox
        Friend WithEvents label38 As System.Windows.Forms.Label
        Friend WithEvents Label16 As System.Windows.Forms.Label
        Friend WithEvents tbJobStsExecType As System.Windows.Forms.TextBox
        <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
            Me.tbJobStsJobType = New System.Windows.Forms.TextBox
            Me.tbJobStsStructSize = New System.Windows.Forms.TextBox
            Me.label2 = New System.Windows.Forms.Label
            Me.label3 = New System.Windows.Forms.Label
            Me.label4 = New System.Windows.Forms.Label
            Me.tbJobStsJobBoxID = New System.Windows.Forms.TextBox
            Me.label6 = New System.Windows.Forms.Label
            Me.tbJobStsNetRev = New System.Windows.Forms.TextBox
            Me.label7 = New System.Windows.Forms.Label
            Me.tbJobStsSecondId = New System.Windows.Forms.TextBox
            Me.label8 = New System.Windows.Forms.Label
            Me.tbJobStsResultJobNo = New System.Windows.Forms.TextBox
            Me.label9 = New System.Windows.Forms.Label
            Me.tbJobStsParentJobNo = New System.Windows.Forms.TextBox
            Me.label10 = New System.Windows.Forms.Label
            Me.tbJobStsJobExitCode = New System.Windows.Forms.TextBox
            Me.label11 = New System.Windows.Forms.Label
            Me.tbJobStsJobStatus = New System.Windows.Forms.TextBox
            Me.label12 = New System.Windows.Forms.Label
            Me.tbJobStsPriority = New System.Windows.Forms.TextBox
            Me.label13 = New System.Windows.Forms.Label
            Me.tbJobStsMinWS = New System.Windows.Forms.TextBox
            Me.label14 = New System.Windows.Forms.Label
            Me.tbJobStsMaxWS = New System.Windows.Forms.TextBox
            Me.label15 = New System.Windows.Forms.Label
            Me.tbJobStsUserCPUTime = New System.Windows.Forms.TextBox
            Me.label17 = New System.Windows.Forms.Label
            Me.tbJobStsKernelCPUTime = New System.Windows.Forms.TextBox
            Me.label18 = New System.Windows.Forms.Label
            Me.tbJobStsTotalCPUTime = New System.Windows.Forms.TextBox
            Me.label19 = New System.Windows.Forms.Label
            Me.tbJobStsUserCPUPercent = New System.Windows.Forms.TextBox
            Me.label20 = New System.Windows.Forms.Label
            Me.tbJobStsKernelCPUPercent = New System.Windows.Forms.TextBox
            Me.label1 = New System.Windows.Forms.Label
            Me.tbJobStsBeginTime = New System.Windows.Forms.TextBox
            Me.label5 = New System.Windows.Forms.Label
            Me.tbJobStsEndTime = New System.Windows.Forms.TextBox
            Me.label21 = New System.Windows.Forms.Label
            Me.label22 = New System.Windows.Forms.Label
            Me.label23 = New System.Windows.Forms.Label
            Me.label24 = New System.Windows.Forms.Label
            Me.tbJobStsRepeatInterval = New System.Windows.Forms.TextBox
            Me.tbJobStsRepeatMaxCount = New System.Windows.Forms.TextBox
            Me.tbJobStsRepeatEndTime = New System.Windows.Forms.TextBox
            Me.tbJobStsRepeatCount = New System.Windows.Forms.TextBox
            Me.label25 = New System.Windows.Forms.Label
            Me.tbJobStsEventID = New System.Windows.Forms.TextBox
            Me.label26 = New System.Windows.Forms.Label
            Me.label27 = New System.Windows.Forms.Label
            Me.label28 = New System.Windows.Forms.Label
            Me.label29 = New System.Windows.Forms.Label
            Me.label30 = New System.Windows.Forms.Label
            Me.label31 = New System.Windows.Forms.Label
            Me.label32 = New System.Windows.Forms.Label
            Me.label33 = New System.Windows.Forms.Label
            Me.label34 = New System.Windows.Forms.Label
            Me.label35 = New System.Windows.Forms.Label
            Me.label36 = New System.Windows.Forms.Label
            Me.label37 = New System.Windows.Forms.Label
            Me.tbJobStsTimeout = New System.Windows.Forms.TextBox
            Me.tbJobStsParentJntNo = New System.Windows.Forms.TextBox
            Me.tbJobStsBranch = New System.Windows.Forms.TextBox
            Me.tbJobStsUserName = New System.Windows.Forms.TextBox
            Me.tbJobStsWsName = New System.Windows.Forms.TextBox
            Me.tbJobStsQueueName = New System.Windows.Forms.TextBox
            Me.tbJobStsCompName = New System.Windows.Forms.TextBox
            Me.tbJobStsBizName = New System.Windows.Forms.TextBox
            Me.tbJobStsJobPath = New System.Windows.Forms.TextBox
            Me.tbJobStsJobParam = New System.Windows.Forms.TextBox
            Me.tbJobStsExecDir = New System.Windows.Forms.TextBox
            Me.tbJobStsOutFileName = New System.Windows.Forms.TextBox
            Me.tbJobStsRootJobNo = New System.Windows.Forms.TextBox
            Me.label38 = New System.Windows.Forms.Label
            Me.Label16 = New System.Windows.Forms.Label
            Me.tbJobStsExecType = New System.Windows.Forms.TextBox
            Me.SuspendLayout()
            '
            'tbJobStsJobType
            '
            Me.tbJobStsJobType.Location = New System.Drawing.Point(140, 40)
            Me.tbJobStsJobType.Name = "tbJobStsJobType"
            Me.tbJobStsJobType.ReadOnly = True
            Me.tbJobStsJobType.TabIndex = 95
            Me.tbJobStsJobType.Text = ""
            '
            'tbJobStsStructSize
            '
            Me.tbJobStsStructSize.Location = New System.Drawing.Point(140, 16)
            Me.tbJobStsStructSize.Name = "tbJobStsStructSize"
            Me.tbJobStsStructSize.ReadOnly = True
            Me.tbJobStsStructSize.Size = New System.Drawing.Size(64, 19)
            Me.tbJobStsStructSize.TabIndex = 79
            Me.tbJobStsStructSize.Text = ""
            '
            'label2
            '
            Me.label2.Location = New System.Drawing.Point(36, 16)
            Me.label2.Name = "label2"
            Me.label2.Size = New System.Drawing.Size(80, 16)
            Me.label2.TabIndex = 75
            Me.label2.Text = "\̃TCY"
            '
            'label3
            '
            Me.label3.Location = New System.Drawing.Point(36, 40)
            Me.label3.Name = "label3"
            Me.label3.Size = New System.Drawing.Size(80, 16)
            Me.label3.TabIndex = 76
            Me.label3.Text = "Wu̎"
            '
            'label4
            '
            Me.label4.Location = New System.Drawing.Point(36, 72)
            Me.label4.Name = "label4"
            Me.label4.Size = New System.Drawing.Size(80, 16)
            Me.label4.TabIndex = 74
            Me.label4.Text = "Wu{bNXID"
            '
            'tbJobStsJobBoxID
            '
            Me.tbJobStsJobBoxID.Location = New System.Drawing.Point(140, 64)
            Me.tbJobStsJobBoxID.Name = "tbJobStsJobBoxID"
            Me.tbJobStsJobBoxID.ReadOnly = True
            Me.tbJobStsJobBoxID.TabIndex = 96
            Me.tbJobStsJobBoxID.Text = ""
            '
            'label6
            '
            Me.label6.Location = New System.Drawing.Point(36, 96)
            Me.label6.Name = "label6"
            Me.label6.Size = New System.Drawing.Size(80, 24)
            Me.label6.TabIndex = 73
            Me.label6.Text = "Wulbgt@CRevision"
            '
            'tbJobStsNetRev
            '
            Me.tbJobStsNetRev.Location = New System.Drawing.Point(140, 96)
            Me.tbJobStsNetRev.Name = "tbJobStsNetRev"
            Me.tbJobStsNetRev.ReadOnly = True
            Me.tbJobStsNetRev.TabIndex = 94
            Me.tbJobStsNetRev.Text = ""
            '
            'label7
            '
            Me.label7.Location = New System.Drawing.Point(36, 128)
            Me.label7.Name = "label7"
            Me.label7.Size = New System.Drawing.Size(64, 24)
            Me.label7.TabIndex = 77
            Me.label7.Text = "hWuLID"
            '
            'tbJobStsSecondId
            '
            Me.tbJobStsSecondId.Location = New System.Drawing.Point(140, 128)
            Me.tbJobStsSecondId.Name = "tbJobStsSecondId"
            Me.tbJobStsSecondId.ReadOnly = True
            Me.tbJobStsSecondId.TabIndex = 92
            Me.tbJobStsSecondId.Text = ""
            '
            'label8
            '
            Me.label8.Location = New System.Drawing.Point(36, 160)
            Me.label8.Name = "label8"
            Me.label8.Size = New System.Drawing.Size(64, 16)
            Me.label8.TabIndex = 61
            Me.label8.Text = "Wuԍ"
            '
            'tbJobStsResultJobNo
            '
            Me.tbJobStsResultJobNo.Location = New System.Drawing.Point(140, 160)
            Me.tbJobStsResultJobNo.Name = "tbJobStsResultJobNo"
            Me.tbJobStsResultJobNo.ReadOnly = True
            Me.tbJobStsResultJobNo.TabIndex = 93
            Me.tbJobStsResultJobNo.Text = ""
            '
            'label9
            '
            Me.label9.Location = New System.Drawing.Point(36, 192)
            Me.label9.Name = "label9"
            Me.label9.Size = New System.Drawing.Size(72, 16)
            Me.label9.TabIndex = 45
            Me.label9.Text = "eWuԍ"
            '
            'tbJobStsParentJobNo
            '
            Me.tbJobStsParentJobNo.Location = New System.Drawing.Point(140, 184)
            Me.tbJobStsParentJobNo.Name = "tbJobStsParentJobNo"
            Me.tbJobStsParentJobNo.ReadOnly = True
            Me.tbJobStsParentJobNo.TabIndex = 98
            Me.tbJobStsParentJobNo.Text = ""
            '
            'label10
            '
            Me.label10.Location = New System.Drawing.Point(36, 240)
            Me.label10.Name = "label10"
            Me.label10.Size = New System.Drawing.Size(96, 16)
            Me.label10.TabIndex = 44
            Me.label10.Text = "WuIR[h"
            '
            'tbJobStsJobExitCode
            '
            Me.tbJobStsJobExitCode.Location = New System.Drawing.Point(140, 240)
            Me.tbJobStsJobExitCode.Name = "tbJobStsJobExitCode"
            Me.tbJobStsJobExitCode.ReadOnly = True
            Me.tbJobStsJobExitCode.TabIndex = 114
            Me.tbJobStsJobExitCode.Text = ""
            '
            'label11
            '
            Me.label11.Location = New System.Drawing.Point(36, 296)
            Me.label11.Name = "label11"
            Me.label11.Size = New System.Drawing.Size(96, 16)
            Me.label11.TabIndex = 42
            Me.label11.Text = "WuDx"
            '
            'tbJobStsJobStatus
            '
            Me.tbJobStsJobStatus.Location = New System.Drawing.Point(140, 264)
            Me.tbJobStsJobStatus.Name = "tbJobStsJobStatus"
            Me.tbJobStsJobStatus.ReadOnly = True
            Me.tbJobStsJobStatus.TabIndex = 115
            Me.tbJobStsJobStatus.Text = ""
            '
            'label12
            '
            Me.label12.Location = New System.Drawing.Point(36, 264)
            Me.label12.Name = "label12"
            Me.label12.Size = New System.Drawing.Size(96, 16)
            Me.label12.TabIndex = 50
            Me.label12.Text = "Wus"
            '
            'tbJobStsPriority
            '
            Me.tbJobStsPriority.Location = New System.Drawing.Point(140, 288)
            Me.tbJobStsPriority.Name = "tbJobStsPriority"
            Me.tbJobStsPriority.ReadOnly = True
            Me.tbJobStsPriority.TabIndex = 113
            Me.tbJobStsPriority.Text = ""
            '
            'label13
            '
            Me.label13.Location = New System.Drawing.Point(36, 320)
            Me.label13.Name = "label13"
            Me.label13.Size = New System.Drawing.Size(96, 16)
            Me.label13.TabIndex = 52
            Me.label13.Text = "ŏWorkingSet"
            '
            'tbJobStsMinWS
            '
            Me.tbJobStsMinWS.Location = New System.Drawing.Point(140, 320)
            Me.tbJobStsMinWS.Name = "tbJobStsMinWS"
            Me.tbJobStsMinWS.ReadOnly = True
            Me.tbJobStsMinWS.TabIndex = 108
            Me.tbJobStsMinWS.Text = ""
            '
            'label14
            '
            Me.label14.Location = New System.Drawing.Point(36, 344)
            Me.label14.Name = "label14"
            Me.label14.Size = New System.Drawing.Size(96, 16)
            Me.label14.TabIndex = 48
            Me.label14.Text = "őWorkingSet"
            '
            'tbJobStsMaxWS
            '
            Me.tbJobStsMaxWS.Location = New System.Drawing.Point(140, 344)
            Me.tbJobStsMaxWS.Name = "tbJobStsMaxWS"
            Me.tbJobStsMaxWS.ReadOnly = True
            Me.tbJobStsMaxWS.TabIndex = 112
            Me.tbJobStsMaxWS.Text = ""
            '
            'label15
            '
            Me.label15.Location = New System.Drawing.Point(36, 368)
            Me.label15.Name = "label15"
            Me.label15.Size = New System.Drawing.Size(96, 16)
            Me.label15.TabIndex = 49
            Me.label15.Text = "UserCpuTime"
            '
            'tbJobStsUserCPUTime
            '
            Me.tbJobStsUserCPUTime.Location = New System.Drawing.Point(140, 368)
            Me.tbJobStsUserCPUTime.Name = "tbJobStsUserCPUTime"
            Me.tbJobStsUserCPUTime.ReadOnly = True
            Me.tbJobStsUserCPUTime.TabIndex = 80
            Me.tbJobStsUserCPUTime.Text = ""
            '
            'label17
            '
            Me.label17.Location = New System.Drawing.Point(260, 16)
            Me.label17.Name = "label17"
            Me.label17.Size = New System.Drawing.Size(96, 16)
            Me.label17.TabIndex = 43
            Me.label17.Text = "KernelCPUTime"
            '
            'tbJobStsKernelCPUTime
            '
            Me.tbJobStsKernelCPUTime.Location = New System.Drawing.Point(380, 8)
            Me.tbJobStsKernelCPUTime.Name = "tbJobStsKernelCPUTime"
            Me.tbJobStsKernelCPUTime.ReadOnly = True
            Me.tbJobStsKernelCPUTime.TabIndex = 91
            Me.tbJobStsKernelCPUTime.Text = ""
            '
            'label18
            '
            Me.label18.Location = New System.Drawing.Point(260, 40)
            Me.label18.Name = "label18"
            Me.label18.Size = New System.Drawing.Size(96, 16)
            Me.label18.TabIndex = 47
            Me.label18.Text = "TotalCPUTime"
            '
            'tbJobStsTotalCPUTime
            '
            Me.tbJobStsTotalCPUTime.Location = New System.Drawing.Point(380, 32)
            Me.tbJobStsTotalCPUTime.Name = "tbJobStsTotalCPUTime"
            Me.tbJobStsTotalCPUTime.ReadOnly = True
            Me.tbJobStsTotalCPUTime.TabIndex = 89
            Me.tbJobStsTotalCPUTime.Text = ""
            '
            'label19
            '
            Me.label19.Location = New System.Drawing.Point(260, 64)
            Me.label19.Name = "label19"
            Me.label19.Size = New System.Drawing.Size(96, 16)
            Me.label19.TabIndex = 78
            Me.label19.Text = "UserCPUPercent"
            '
            'tbJobStsUserCPUPercent
            '
            Me.tbJobStsUserCPUPercent.Location = New System.Drawing.Point(380, 56)
            Me.tbJobStsUserCPUPercent.Name = "tbJobStsUserCPUPercent"
            Me.tbJobStsUserCPUPercent.ReadOnly = True
            Me.tbJobStsUserCPUPercent.TabIndex = 90
            Me.tbJobStsUserCPUPercent.Text = ""
            '
            'label20
            '
            Me.label20.Location = New System.Drawing.Point(260, 88)
            Me.label20.Name = "label20"
            Me.label20.Size = New System.Drawing.Size(104, 16)
            Me.label20.TabIndex = 64
            Me.label20.Text = "KernelCPUPercent"
            '
            'tbJobStsKernelCPUPercent
            '
            Me.tbJobStsKernelCPUPercent.Location = New System.Drawing.Point(380, 80)
            Me.tbJobStsKernelCPUPercent.Name = "tbJobStsKernelCPUPercent"
            Me.tbJobStsKernelCPUPercent.ReadOnly = True
            Me.tbJobStsKernelCPUPercent.TabIndex = 85
            Me.tbJobStsKernelCPUPercent.Text = ""
            '
            'label1
            '
            Me.label1.Location = New System.Drawing.Point(260, 112)
            Me.label1.Name = "label1"
            Me.label1.Size = New System.Drawing.Size(120, 16)
            Me.label1.TabIndex = 65
            Me.label1.Text = "WuJnt^"
            '
            'tbJobStsBeginTime
            '
            Me.tbJobStsBeginTime.Location = New System.Drawing.Point(380, 104)
            Me.tbJobStsBeginTime.Name = "tbJobStsBeginTime"
            Me.tbJobStsBeginTime.ReadOnly = True
            Me.tbJobStsBeginTime.Size = New System.Drawing.Size(176, 19)
            Me.tbJobStsBeginTime.TabIndex = 83
            Me.tbJobStsBeginTime.Text = ""
            '
            'label5
            '
            Me.label5.Location = New System.Drawing.Point(260, 144)
            Me.label5.Name = "label5"
            Me.label5.Size = New System.Drawing.Size(120, 16)
            Me.label5.TabIndex = 62
            Me.label5.Text = "WuIt^"
            '
            'tbJobStsEndTime
            '
            Me.tbJobStsEndTime.Location = New System.Drawing.Point(380, 136)
            Me.tbJobStsEndTime.Name = "tbJobStsEndTime"
            Me.tbJobStsEndTime.ReadOnly = True
            Me.tbJobStsEndTime.Size = New System.Drawing.Size(176, 19)
            Me.tbJobStsEndTime.TabIndex = 86
            Me.tbJobStsEndTime.Text = ""
            '
            'label21
            '
            Me.label21.Location = New System.Drawing.Point(260, 168)
            Me.label21.Name = "label21"
            Me.label21.Size = New System.Drawing.Size(96, 16)
            Me.label21.TabIndex = 67
            Me.label21.Text = "JԂԊu"
            '
            'label22
            '
            Me.label22.Location = New System.Drawing.Point(260, 192)
            Me.label22.Name = "label22"
            Me.label22.Size = New System.Drawing.Size(96, 16)
            Me.label22.TabIndex = 72
            Me.label22.Text = "JԂ"
            '
            'label23
            '
            Me.label23.Location = New System.Drawing.Point(260, 216)
            Me.label23.Name = "label23"
            Me.label23.Size = New System.Drawing.Size(96, 16)
            Me.label23.TabIndex = 70
            Me.label23.Text = "JԂI"
            '
            'label24
            '
            Me.label24.Location = New System.Drawing.Point(260, 240)
            Me.label24.Name = "label24"
            Me.label24.Size = New System.Drawing.Size(112, 16)
            Me.label24.TabIndex = 68
            Me.label24.Text = "JԂs"
            '
            'tbJobStsRepeatInterval
            '
            Me.tbJobStsRepeatInterval.Location = New System.Drawing.Point(380, 160)
            Me.tbJobStsRepeatInterval.Name = "tbJobStsRepeatInterval"
            Me.tbJobStsRepeatInterval.ReadOnly = True
            Me.tbJobStsRepeatInterval.TabIndex = 87
            Me.tbJobStsRepeatInterval.Text = ""
            '
            'tbJobStsRepeatMaxCount
            '
            Me.tbJobStsRepeatMaxCount.Location = New System.Drawing.Point(380, 184)
            Me.tbJobStsRepeatMaxCount.Name = "tbJobStsRepeatMaxCount"
            Me.tbJobStsRepeatMaxCount.ReadOnly = True
            Me.tbJobStsRepeatMaxCount.TabIndex = 82
            Me.tbJobStsRepeatMaxCount.Text = ""
            '
            'tbJobStsRepeatEndTime
            '
            Me.tbJobStsRepeatEndTime.Location = New System.Drawing.Point(380, 208)
            Me.tbJobStsRepeatEndTime.Name = "tbJobStsRepeatEndTime"
            Me.tbJobStsRepeatEndTime.ReadOnly = True
            Me.tbJobStsRepeatEndTime.Size = New System.Drawing.Size(176, 19)
            Me.tbJobStsRepeatEndTime.TabIndex = 81
            Me.tbJobStsRepeatEndTime.Text = ""
            '
            'tbJobStsRepeatCount
            '
            Me.tbJobStsRepeatCount.Location = New System.Drawing.Point(380, 232)
            Me.tbJobStsRepeatCount.Name = "tbJobStsRepeatCount"
            Me.tbJobStsRepeatCount.ReadOnly = True
            Me.tbJobStsRepeatCount.TabIndex = 84
            Me.tbJobStsRepeatCount.Text = ""
            '
            'label25
            '
            Me.label25.Location = New System.Drawing.Point(260, 264)
            Me.label25.Name = "label25"
            Me.label25.Size = New System.Drawing.Size(112, 16)
            Me.label25.TabIndex = 69
            Me.label25.Text = "CxgID"
            '
            'tbJobStsEventID
            '
            Me.tbJobStsEventID.Location = New System.Drawing.Point(380, 256)
            Me.tbJobStsEventID.Name = "tbJobStsEventID"
            Me.tbJobStsEventID.ReadOnly = True
            Me.tbJobStsEventID.TabIndex = 88
            Me.tbJobStsEventID.Text = ""
            '
            'label26
            '
            Me.label26.Location = New System.Drawing.Point(36, 400)
            Me.label26.Name = "label26"
            Me.label26.Size = New System.Drawing.Size(72, 16)
            Me.label26.TabIndex = 53
            Me.label26.Text = "[U"
            '
            'label27
            '
            Me.label27.Location = New System.Drawing.Point(36, 424)
            Me.label27.Name = "label27"
            Me.label27.Size = New System.Drawing.Size(72, 16)
            Me.label27.TabIndex = 51
            Me.label27.Text = "}V"
            '
            'label28
            '
            Me.label28.Location = New System.Drawing.Point(36, 448)
            Me.label28.Name = "label28"
            Me.label28.Size = New System.Drawing.Size(96, 16)
            Me.label28.TabIndex = 59
            Me.label28.Text = "WuL["
            '
            'label29
            '
            Me.label29.Location = New System.Drawing.Point(36, 472)
            Me.label29.Name = "label29"
            Me.label29.Size = New System.Drawing.Size(96, 16)
            Me.label29.TabIndex = 58
            Me.label29.Text = "s}V"
            '
            'label30
            '
            Me.label30.Location = New System.Drawing.Point(36, 496)
            Me.label30.Name = "label30"
            Me.label30.Size = New System.Drawing.Size(56, 16)
            Me.label30.TabIndex = 60
            Me.label30.Text = "Ɩ"
            '
            'label31
            '
            Me.label31.Location = New System.Drawing.Point(36, 520)
            Me.label31.Name = "label31"
            Me.label31.Size = New System.Drawing.Size(88, 16)
            Me.label31.TabIndex = 55
            Me.label31.Text = "Wut@C"
            '
            'label32
            '
            Me.label32.Location = New System.Drawing.Point(36, 544)
            Me.label32.Name = "label32"
            Me.label32.Size = New System.Drawing.Size(88, 16)
            Me.label32.TabIndex = 54
            Me.label32.Text = "p[^"
            '
            'label33
            '
            Me.label33.Location = New System.Drawing.Point(36, 568)
            Me.label33.Name = "label33"
            Me.label33.Size = New System.Drawing.Size(104, 16)
            Me.label33.TabIndex = 57
            Me.label33.Text = "sfBNg"
            '
            'label34
            '
            Me.label34.Location = New System.Drawing.Point(36, 592)
            Me.label34.Name = "label34"
            Me.label34.Size = New System.Drawing.Size(104, 16)
            Me.label34.TabIndex = 56
            Me.label34.Text = "Wo̓t@C"
            '
            'label35
            '
            Me.label35.Location = New System.Drawing.Point(260, 288)
            Me.label35.Name = "label35"
            Me.label35.Size = New System.Drawing.Size(88, 16)
            Me.label35.TabIndex = 71
            Me.label35.Text = "^CAEg"
            '
            'label36
            '
            Me.label36.Location = New System.Drawing.Point(260, 344)
            Me.label36.Name = "label36"
            Me.label36.Size = New System.Drawing.Size(104, 16)
            Me.label36.TabIndex = 63
            Me.label36.Text = "pWuԍ"
            '
            'label37
            '
            Me.label37.Location = New System.Drawing.Point(260, 368)
            Me.label37.Name = "label37"
            Me.label37.Size = New System.Drawing.Size(104, 16)
            Me.label37.TabIndex = 66
            Me.label37.Text = "gp"
            '
            'tbJobStsTimeout
            '
            Me.tbJobStsTimeout.Location = New System.Drawing.Point(380, 280)
            Me.tbJobStsTimeout.Name = "tbJobStsTimeout"
            Me.tbJobStsTimeout.ReadOnly = True
            Me.tbJobStsTimeout.TabIndex = 107
            Me.tbJobStsTimeout.Text = ""
            '
            'tbJobStsParentJntNo
            '
            Me.tbJobStsParentJntNo.Location = New System.Drawing.Point(380, 336)
            Me.tbJobStsParentJntNo.Name = "tbJobStsParentJntNo"
            Me.tbJobStsParentJntNo.ReadOnly = True
            Me.tbJobStsParentJntNo.TabIndex = 109
            Me.tbJobStsParentJntNo.Text = ""
            '
            'tbJobStsBranch
            '
            Me.tbJobStsBranch.Location = New System.Drawing.Point(380, 360)
            Me.tbJobStsBranch.Name = "tbJobStsBranch"
            Me.tbJobStsBranch.ReadOnly = True
            Me.tbJobStsBranch.TabIndex = 111
            Me.tbJobStsBranch.Text = ""
            '
            'tbJobStsUserName
            '
            Me.tbJobStsUserName.Location = New System.Drawing.Point(148, 400)
            Me.tbJobStsUserName.Name = "tbJobStsUserName"
            Me.tbJobStsUserName.ReadOnly = True
            Me.tbJobStsUserName.Size = New System.Drawing.Size(160, 19)
            Me.tbJobStsUserName.TabIndex = 110
            Me.tbJobStsUserName.Text = ""
            '
            'tbJobStsWsName
            '
            Me.tbJobStsWsName.Location = New System.Drawing.Point(148, 424)
            Me.tbJobStsWsName.Name = "tbJobStsWsName"
            Me.tbJobStsWsName.ReadOnly = True
            Me.tbJobStsWsName.Size = New System.Drawing.Size(160, 19)
            Me.tbJobStsWsName.TabIndex = 106
            Me.tbJobStsWsName.Text = ""
            '
            'tbJobStsQueueName
            '
            Me.tbJobStsQueueName.Location = New System.Drawing.Point(148, 448)
            Me.tbJobStsQueueName.Name = "tbJobStsQueueName"
            Me.tbJobStsQueueName.ReadOnly = True
            Me.tbJobStsQueueName.Size = New System.Drawing.Size(160, 19)
            Me.tbJobStsQueueName.TabIndex = 101
            Me.tbJobStsQueueName.Text = ""
            '
            'tbJobStsCompName
            '
            Me.tbJobStsCompName.Location = New System.Drawing.Point(148, 472)
            Me.tbJobStsCompName.Name = "tbJobStsCompName"
            Me.tbJobStsCompName.ReadOnly = True
            Me.tbJobStsCompName.Size = New System.Drawing.Size(160, 19)
            Me.tbJobStsCompName.TabIndex = 100
            Me.tbJobStsCompName.Text = ""
            '
            'tbJobStsBizName
            '
            Me.tbJobStsBizName.Location = New System.Drawing.Point(148, 496)
            Me.tbJobStsBizName.Name = "tbJobStsBizName"
            Me.tbJobStsBizName.ReadOnly = True
            Me.tbJobStsBizName.Size = New System.Drawing.Size(160, 19)
            Me.tbJobStsBizName.TabIndex = 99
            Me.tbJobStsBizName.Text = ""
            '
            'tbJobStsJobPath
            '
            Me.tbJobStsJobPath.Location = New System.Drawing.Point(148, 520)
            Me.tbJobStsJobPath.Name = "tbJobStsJobPath"
            Me.tbJobStsJobPath.ReadOnly = True
            Me.tbJobStsJobPath.Size = New System.Drawing.Size(272, 19)
            Me.tbJobStsJobPath.TabIndex = 102
            Me.tbJobStsJobPath.Text = ""
            '
            'tbJobStsJobParam
            '
            Me.tbJobStsJobParam.Location = New System.Drawing.Point(148, 544)
            Me.tbJobStsJobParam.Name = "tbJobStsJobParam"
            Me.tbJobStsJobParam.ReadOnly = True
            Me.tbJobStsJobParam.Size = New System.Drawing.Size(272, 19)
            Me.tbJobStsJobParam.TabIndex = 103
            Me.tbJobStsJobParam.Text = ""
            '
            'tbJobStsExecDir
            '
            Me.tbJobStsExecDir.Location = New System.Drawing.Point(148, 568)
            Me.tbJobStsExecDir.Name = "tbJobStsExecDir"
            Me.tbJobStsExecDir.ReadOnly = True
            Me.tbJobStsExecDir.Size = New System.Drawing.Size(272, 19)
            Me.tbJobStsExecDir.TabIndex = 104
            Me.tbJobStsExecDir.Text = ""
            '
            'tbJobStsOutFileName
            '
            Me.tbJobStsOutFileName.Location = New System.Drawing.Point(148, 592)
            Me.tbJobStsOutFileName.Name = "tbJobStsOutFileName"
            Me.tbJobStsOutFileName.ReadOnly = True
            Me.tbJobStsOutFileName.Size = New System.Drawing.Size(272, 19)
            Me.tbJobStsOutFileName.TabIndex = 105
            Me.tbJobStsOutFileName.Text = ""
            '
            'tbJobStsRootJobNo
            '
            Me.tbJobStsRootJobNo.Location = New System.Drawing.Point(140, 216)
            Me.tbJobStsRootJobNo.Name = "tbJobStsRootJobNo"
            Me.tbJobStsRootJobNo.ReadOnly = True
            Me.tbJobStsRootJobNo.TabIndex = 97
            Me.tbJobStsRootJobNo.Text = ""
            '
            'label38
            '
            Me.label38.Location = New System.Drawing.Point(36, 216)
            Me.label38.Name = "label38"
            Me.label38.Size = New System.Drawing.Size(88, 16)
            Me.label38.TabIndex = 46
            Me.label38.Text = "[gWuԍ"
            '
            'Label16
            '
            Me.Label16.Location = New System.Drawing.Point(260, 312)
            Me.Label16.Name = "Label16"
            Me.Label16.Size = New System.Drawing.Size(88, 16)
            Me.Label16.TabIndex = 116
            Me.Label16.Text = "ޮދN"
            '
            'tbJobStsExecType
            '
            Me.tbJobStsExecType.Location = New System.Drawing.Point(380, 304)
            Me.tbJobStsExecType.Name = "tbJobStsExecType"
            Me.tbJobStsExecType.ReadOnly = True
            Me.tbJobStsExecType.Size = New System.Drawing.Size(176, 19)
            Me.tbJobStsExecType.TabIndex = 117
            Me.tbJobStsExecType.Text = ""
            '
            'FormJobInfo
            '
            Me.AutoScaleBaseSize = New System.Drawing.Size(5, 12)
            Me.ClientSize = New System.Drawing.Size(584, 629)
            Me.Controls.Add(Me.Label16)
            Me.Controls.Add(Me.tbJobStsExecType)
            Me.Controls.Add(Me.tbJobStsJobType)
            Me.Controls.Add(Me.tbJobStsStructSize)
            Me.Controls.Add(Me.label2)
            Me.Controls.Add(Me.label3)
            Me.Controls.Add(Me.label4)
            Me.Controls.Add(Me.tbJobStsJobBoxID)
            Me.Controls.Add(Me.label6)
            Me.Controls.Add(Me.tbJobStsNetRev)
            Me.Controls.Add(Me.label7)
            Me.Controls.Add(Me.tbJobStsSecondId)
            Me.Controls.Add(Me.label8)
            Me.Controls.Add(Me.tbJobStsResultJobNo)
            Me.Controls.Add(Me.label9)
            Me.Controls.Add(Me.tbJobStsParentJobNo)
            Me.Controls.Add(Me.label10)
            Me.Controls.Add(Me.tbJobStsJobExitCode)
            Me.Controls.Add(Me.label11)
            Me.Controls.Add(Me.tbJobStsJobStatus)
            Me.Controls.Add(Me.label12)
            Me.Controls.Add(Me.tbJobStsPriority)
            Me.Controls.Add(Me.label13)
            Me.Controls.Add(Me.tbJobStsMinWS)
            Me.Controls.Add(Me.label14)
            Me.Controls.Add(Me.tbJobStsMaxWS)
            Me.Controls.Add(Me.label15)
            Me.Controls.Add(Me.tbJobStsUserCPUTime)
            Me.Controls.Add(Me.label17)
            Me.Controls.Add(Me.tbJobStsKernelCPUTime)
            Me.Controls.Add(Me.label18)
            Me.Controls.Add(Me.tbJobStsTotalCPUTime)
            Me.Controls.Add(Me.label19)
            Me.Controls.Add(Me.tbJobStsUserCPUPercent)
            Me.Controls.Add(Me.label20)
            Me.Controls.Add(Me.tbJobStsKernelCPUPercent)
            Me.Controls.Add(Me.label1)
            Me.Controls.Add(Me.tbJobStsBeginTime)
            Me.Controls.Add(Me.label5)
            Me.Controls.Add(Me.tbJobStsEndTime)
            Me.Controls.Add(Me.label21)
            Me.Controls.Add(Me.label22)
            Me.Controls.Add(Me.label23)
            Me.Controls.Add(Me.label24)
            Me.Controls.Add(Me.tbJobStsRepeatInterval)
            Me.Controls.Add(Me.tbJobStsRepeatMaxCount)
            Me.Controls.Add(Me.tbJobStsRepeatEndTime)
            Me.Controls.Add(Me.tbJobStsRepeatCount)
            Me.Controls.Add(Me.label25)
            Me.Controls.Add(Me.tbJobStsEventID)
            Me.Controls.Add(Me.label26)
            Me.Controls.Add(Me.label27)
            Me.Controls.Add(Me.label28)
            Me.Controls.Add(Me.label29)
            Me.Controls.Add(Me.label30)
            Me.Controls.Add(Me.label31)
            Me.Controls.Add(Me.label32)
            Me.Controls.Add(Me.label33)
            Me.Controls.Add(Me.label34)
            Me.Controls.Add(Me.label35)
            Me.Controls.Add(Me.label36)
            Me.Controls.Add(Me.label37)
            Me.Controls.Add(Me.tbJobStsTimeout)
            Me.Controls.Add(Me.tbJobStsParentJntNo)
            Me.Controls.Add(Me.tbJobStsBranch)
            Me.Controls.Add(Me.tbJobStsUserName)
            Me.Controls.Add(Me.tbJobStsWsName)
            Me.Controls.Add(Me.tbJobStsQueueName)
            Me.Controls.Add(Me.tbJobStsCompName)
            Me.Controls.Add(Me.tbJobStsBizName)
            Me.Controls.Add(Me.tbJobStsJobPath)
            Me.Controls.Add(Me.tbJobStsJobParam)
            Me.Controls.Add(Me.tbJobStsExecDir)
            Me.Controls.Add(Me.tbJobStsOutFileName)
            Me.Controls.Add(Me.tbJobStsRootJobNo)
            Me.Controls.Add(Me.label38)
            Me.Name = "FormJobInfo"
            Me.Text = "Wu"
            Me.ResumeLayout(False)

        End Sub

#End Region

End Class

End Namespace
