_ Partial Class Frm_monitor Inherits System.Windows.Forms.Form 'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기를 사용하여 수정하지 마십시오. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Frm_monitor)) Me.Timer1 = New System.Windows.Forms.Timer(Me.components) Me.Timer2 = New System.Windows.Forms.Timer(Me.components) Me.ToolStrip1 = New System.Windows.Forms.ToolStrip() Me.bt_monitor = New System.Windows.Forms.ToolStripButton() Me.bt_run = New System.Windows.Forms.ToolStripButton() Me.bt_kill = New System.Windows.Forms.ToolStripButton() Me.ToolStripButton1 = New System.Windows.Forms.ToolStripButton() Me.ProgressBar1 = New System.Windows.Forms.ProgressBar() Me.StatusStrip1 = New System.Windows.Forms.StatusStrip() Me.status_monitor = New System.Windows.Forms.ToolStripStatusLabel() Me.status_run = New System.Windows.Forms.ToolStripStatusLabel() Me.lb_msg = New System.Windows.Forms.ToolStripStatusLabel() Me.RichTextBox1 = New System.Windows.Forms.RichTextBox() Me.ToolStrip1.SuspendLayout() Me.StatusStrip1.SuspendLayout() Me.SuspendLayout() ' 'Timer1 ' Me.Timer1.Interval = 1000 ' 'Timer2 ' Me.Timer2.Interval = 1000 ' 'ToolStrip1 ' Me.ToolStrip1.ImageScalingSize = New System.Drawing.Size(32, 32) Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.bt_monitor, Me.bt_run, Me.bt_kill, Me.ToolStripButton1}) Me.ToolStrip1.Location = New System.Drawing.Point(0, 0) Me.ToolStrip1.Name = "ToolStrip1" Me.ToolStrip1.Size = New System.Drawing.Size(648, 39) Me.ToolStrip1.TabIndex = 4 Me.ToolStrip1.Text = "ToolStrip1" ' 'bt_monitor ' Me.bt_monitor.Image = CType(resources.GetObject("bt_monitor.Image"), System.Drawing.Image) Me.bt_monitor.ImageTransparentColor = System.Drawing.Color.Magenta Me.bt_monitor.Name = "bt_monitor" Me.bt_monitor.Size = New System.Drawing.Size(103, 36) Me.bt_monitor.Text = "모니터시작" ' 'bt_run ' Me.bt_run.Enabled = False Me.bt_run.Image = CType(resources.GetObject("bt_run.Image"), System.Drawing.Image) Me.bt_run.ImageTransparentColor = System.Drawing.Color.Magenta Me.bt_run.Name = "bt_run" Me.bt_run.Size = New System.Drawing.Size(97, 36) Me.bt_run.Text = "VMS 실행" ' 'bt_kill ' Me.bt_kill.Enabled = False Me.bt_kill.Image = CType(resources.GetObject("bt_kill.Image"), System.Drawing.Image) Me.bt_kill.ImageTransparentColor = System.Drawing.Color.Magenta Me.bt_kill.Name = "bt_kill" Me.bt_kill.Size = New System.Drawing.Size(91, 36) Me.bt_kill.Text = "강제종료" ' 'ToolStripButton1 ' Me.ToolStripButton1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right Me.ToolStripButton1.Image = CType(resources.GetObject("ToolStripButton1.Image"), System.Drawing.Image) Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta Me.ToolStripButton1.Name = "ToolStripButton1" Me.ToolStripButton1.Size = New System.Drawing.Size(115, 36) Me.ToolStripButton1.Text = "프로그램종료" ' 'ProgressBar1 ' Me.ProgressBar1.Dock = System.Windows.Forms.DockStyle.Bottom Me.ProgressBar1.Location = New System.Drawing.Point(0, 362) Me.ProgressBar1.Name = "ProgressBar1" Me.ProgressBar1.Size = New System.Drawing.Size(648, 23) Me.ProgressBar1.TabIndex = 5 ' 'StatusStrip1 ' Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.status_monitor, Me.status_run, Me.lb_msg}) Me.StatusStrip1.Location = New System.Drawing.Point(0, 340) Me.StatusStrip1.Name = "StatusStrip1" Me.StatusStrip1.Size = New System.Drawing.Size(648, 22) Me.StatusStrip1.TabIndex = 6 Me.StatusStrip1.Text = "StatusStrip1" ' 'status_monitor ' Me.status_monitor.Name = "status_monitor" Me.status_monitor.Size = New System.Drawing.Size(66, 17) Me.status_monitor.Text = "● Monitor" ' 'status_run ' Me.status_run.Name = "status_run" Me.status_run.Size = New System.Drawing.Size(49, 17) Me.status_run.Text = "● VMS" ' 'lb_msg ' Me.lb_msg.Name = "lb_msg" Me.lb_msg.Size = New System.Drawing.Size(53, 17) Me.lb_msg.Text = "Message" ' 'RichTextBox1 ' Me.RichTextBox1.Dock = System.Windows.Forms.DockStyle.Fill Me.RichTextBox1.Font = New System.Drawing.Font("나눔고딕", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.RichTextBox1.Location = New System.Drawing.Point(0, 39) Me.RichTextBox1.Name = "RichTextBox1" Me.RichTextBox1.Size = New System.Drawing.Size(648, 301) Me.RichTextBox1.TabIndex = 7 Me.RichTextBox1.Text = "VMS 실행감지" ' 'Frm_monitor ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(648, 385) Me.Controls.Add(Me.RichTextBox1) Me.Controls.Add(Me.StatusStrip1) Me.Controls.Add(Me.ProgressBar1) Me.Controls.Add(Me.ToolStrip1) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.MaximizeBox = False Me.Name = "Frm_monitor" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "VMS STARTER" Me.WindowState = System.Windows.Forms.FormWindowState.Minimized Me.ToolStrip1.ResumeLayout(False) Me.ToolStrip1.PerformLayout() Me.StatusStrip1.ResumeLayout(False) Me.StatusStrip1.PerformLayout() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Timer1 As System.Windows.Forms.Timer Friend WithEvents Timer2 As System.Windows.Forms.Timer Friend WithEvents ToolStrip1 As System.Windows.Forms.ToolStrip Friend WithEvents bt_monitor As System.Windows.Forms.ToolStripButton Friend WithEvents bt_run As System.Windows.Forms.ToolStripButton Friend WithEvents bt_kill As System.Windows.Forms.ToolStripButton Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar Friend WithEvents StatusStrip1 As System.Windows.Forms.StatusStrip Friend WithEvents lb_msg As System.Windows.Forms.ToolStripStatusLabel Friend WithEvents status_run As System.Windows.Forms.ToolStripStatusLabel Friend WithEvents status_monitor As System.Windows.Forms.ToolStripStatusLabel Friend WithEvents ToolStripButton1 As System.Windows.Forms.ToolStripButton Friend WithEvents RichTextBox1 As System.Windows.Forms.RichTextBox End Class