-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLogEntry.Designer.vb
More file actions
83 lines (79 loc) · 3.23 KB
/
LogEntry.Designer.vb
File metadata and controls
83 lines (79 loc) · 3.23 KB
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
80
81
82
83
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class LogEntry
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.OkButton = New System.Windows.Forms.Button()
Me.CnclButton = New System.Windows.Forms.Button()
Me.PlaceHolder = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'OkButton
'
Me.OkButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton
Me.OkButton.AutoSize = True
Me.OkButton.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.OkButton.Location = New System.Drawing.Point(30, 900)
Me.OkButton.Name = "OkButton"
Me.OkButton.Size = New System.Drawing.Size(75, 23)
Me.OkButton.TabIndex = 900
Me.OkButton.Text = "OK"
Me.OkButton.UseVisualStyleBackColor = True
'
'CnclButton
'
Me.CnclButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton
Me.CnclButton.AutoSize = True
Me.CnclButton.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.CnclButton.Location = New System.Drawing.Point(300, 900)
Me.CnclButton.Name = "CnclButton"
Me.CnclButton.Size = New System.Drawing.Size(75, 23)
Me.CnclButton.TabIndex = 901
Me.CnclButton.Text = "Cancel"
Me.CnclButton.UseVisualStyleBackColor = True
'
'PlaceHolder
'
Me.PlaceHolder.Enabled = False
Me.PlaceHolder.Location = New System.Drawing.Point(0, 20)
Me.PlaceHolder.Name = "PlaceHolder"
Me.PlaceHolder.Size = New System.Drawing.Size(375, 13)
Me.PlaceHolder.TabIndex = 10
Me.PlaceHolder.Visible = False
'
'LogEntry
'
Me.AcceptButton = Me.OkButton
Me.AccessibleRole = System.Windows.Forms.AccessibleRole.Window
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.CancelButton = Me.CnclButton
Me.ClientSize = New System.Drawing.Size(534, 874)
Me.Controls.Add(Me.PlaceHolder)
Me.Controls.Add(Me.CnclButton)
Me.Controls.Add(Me.OkButton)
Me.Name = "LogEntry"
Me.Text = "Log Entry"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents OkButton As System.Windows.Forms.Button
Friend WithEvents CnclButton As System.Windows.Forms.Button
Friend WithEvents PlaceHolder As System.Windows.Forms.Label
End Class