83 lines
2.8 KiB
VB.net
83 lines
2.8 KiB
VB.net
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
|
Partial Class Form1
|
|
Inherits System.Windows.Forms.Form
|
|
|
|
'Form overrides dispose to clean up the component list.
|
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
|
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
|
|
|
|
'Required by the Windows Form Designer
|
|
Private components As System.ComponentModel.IContainer
|
|
|
|
'NOTE: The following procedure is required by the Windows Form Designer
|
|
'It can be modified using the Windows Form Designer.
|
|
'Do not modify it using the code editor.
|
|
<System.Diagnostics.DebuggerStepThrough()> _
|
|
Private Sub InitializeComponent()
|
|
Me.components = New System.ComponentModel.Container()
|
|
Me.chkOnline = New System.Windows.Forms.CheckBox()
|
|
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
|
|
Me.txtConf = New System.Windows.Forms.TextBox()
|
|
Me.Label1 = New System.Windows.Forms.Label()
|
|
Me.SuspendLayout()
|
|
'
|
|
'chkOnline
|
|
'
|
|
Me.chkOnline.AutoSize = True
|
|
Me.chkOnline.Location = New System.Drawing.Point(67, 72)
|
|
Me.chkOnline.Name = "chkOnline"
|
|
Me.chkOnline.Size = New System.Drawing.Size(54, 17)
|
|
Me.chkOnline.TabIndex = 0
|
|
Me.chkOnline.Text = "online"
|
|
Me.chkOnline.UseVisualStyleBackColor = True
|
|
'
|
|
'Timer1
|
|
'
|
|
Me.Timer1.Interval = 1000
|
|
'
|
|
'txtConf
|
|
'
|
|
Me.txtConf.Location = New System.Drawing.Point(67, 38)
|
|
Me.txtConf.Name = "txtConf"
|
|
Me.txtConf.Size = New System.Drawing.Size(100, 20)
|
|
Me.txtConf.TabIndex = 1
|
|
Me.txtConf.Text = "demo_file.ini"
|
|
'
|
|
'Label1
|
|
'
|
|
Me.Label1.AutoSize = True
|
|
Me.Label1.Location = New System.Drawing.Point(17, 41)
|
|
Me.Label1.Name = "Label1"
|
|
Me.Label1.Size = New System.Drawing.Size(44, 13)
|
|
Me.Label1.TabIndex = 2
|
|
Me.Label1.Text = "conf file"
|
|
'
|
|
'Form1
|
|
'
|
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
|
Me.ClientSize = New System.Drawing.Size(800, 450)
|
|
Me.Controls.Add(Me.Label1)
|
|
Me.Controls.Add(Me.txtConf)
|
|
Me.Controls.Add(Me.chkOnline)
|
|
Me.Name = "Form1"
|
|
Me.Text = "Form1"
|
|
Me.ResumeLayout(False)
|
|
Me.PerformLayout()
|
|
|
|
End Sub
|
|
|
|
Friend WithEvents chkOnline As CheckBox
|
|
Friend WithEvents Timer1 As Timer
|
|
Friend WithEvents txtConf As TextBox
|
|
Friend WithEvents Label1 As Label
|
|
End Class
|