-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmMsg.Designer.vb
79 lines (75 loc) · 3.2 KB
/
frmMsg.Designer.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmMsg
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.tmrDisp = New System.Windows.Forms.Timer(Me.components)
Me.txtMsg = New System.Windows.Forms.TextBox()
Me.btnOkay = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'tmrDisp
'
Me.tmrDisp.Enabled = True
Me.tmrDisp.Interval = 1000
'
'txtMsg
'
Me.txtMsg.BorderStyle = System.Windows.Forms.BorderStyle.None
Me.txtMsg.Location = New System.Drawing.Point(10, 10)
Me.txtMsg.Margin = New System.Windows.Forms.Padding(1)
Me.txtMsg.Multiline = True
Me.txtMsg.Name = "txtMsg"
Me.txtMsg.ReadOnly = True
Me.txtMsg.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
Me.txtMsg.Size = New System.Drawing.Size(180, 101)
Me.txtMsg.TabIndex = 0
'
'btnOkay
'
Me.btnOkay.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.btnOkay.DialogResult = System.Windows.Forms.DialogResult.OK
Me.btnOkay.Location = New System.Drawing.Point(140, 115)
Me.btnOkay.Name = "btnOkay"
Me.btnOkay.Size = New System.Drawing.Size(50, 23)
Me.btnOkay.TabIndex = 1
Me.btnOkay.Text = "Okay"
Me.btnOkay.UseVisualStyleBackColor = True
'
'frmMsg
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 17.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(200, 150)
Me.Controls.Add(Me.btnOkay)
Me.Controls.Add(Me.txtMsg)
Me.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.Name = "frmMsg"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
Me.Text = "frmMsg"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents tmrDisp As System.Windows.Forms.Timer
Friend WithEvents txtMsg As System.Windows.Forms.TextBox
Friend WithEvents btnOkay As System.Windows.Forms.Button
End Class