-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathExportForm.Designer.vb
More file actions
144 lines (140 loc) · 5.98 KB
/
ExportForm.Designer.vb
File metadata and controls
144 lines (140 loc) · 5.98 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class ExportForm
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.ExportFromLabel = New System.Windows.Forms.Label()
Me.ExportToLabel = New System.Windows.Forms.Label()
Me.OkButton = New System.Windows.Forms.Button()
Me.CnclButton = New System.Windows.Forms.Button()
Me.FromName = New System.Windows.Forms.TextBox()
Me.ToName = New System.Windows.Forms.TextBox()
Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog()
Me.ExportingLabel = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'ExportFromLabel
'
Me.ExportFromLabel.AccessibleRole = System.Windows.Forms.AccessibleRole.Text
Me.ExportFromLabel.AutoSize = True
Me.ExportFromLabel.Location = New System.Drawing.Point(8, 20)
Me.ExportFromLabel.Name = "ExportFromLabel"
Me.ExportFromLabel.Size = New System.Drawing.Size(77, 13)
Me.ExportFromLabel.TabIndex = 0
Me.ExportFromLabel.Text = "Exporting from "
'
'ExportToLabel
'
Me.ExportToLabel.AutoSize = True
Me.ExportToLabel.Location = New System.Drawing.Point(33, 40)
Me.ExportToLabel.Name = "ExportToLabel"
Me.ExportToLabel.Size = New System.Drawing.Size(52, 13)
Me.ExportToLabel.TabIndex = 2
Me.ExportToLabel.Text = "Export to "
'
'OkButton
'
Me.OkButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton
Me.OkButton.AutoSize = True
Me.OkButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink
Me.OkButton.Location = New System.Drawing.Point(8, 170)
Me.OkButton.Name = "OkButton"
Me.OkButton.Size = New System.Drawing.Size(31, 23)
Me.OkButton.TabIndex = 10
Me.OkButton.Text = "Ok"
Me.OkButton.UseVisualStyleBackColor = True
'
'CnclButton
'
Me.CnclButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton
Me.CnclButton.AutoSize = True
Me.CnclButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink
Me.CnclButton.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.CnclButton.Location = New System.Drawing.Point(40, 170)
Me.CnclButton.Name = "CnclButton"
Me.CnclButton.Size = New System.Drawing.Size(50, 23)
Me.CnclButton.TabIndex = 11
Me.CnclButton.Text = "Cancel"
Me.CnclButton.UseVisualStyleBackColor = True
'
'FromName
'
Me.FromName.AccessibleRole = System.Windows.Forms.AccessibleRole.Text
Me.FromName.Location = New System.Drawing.Point(85, 20)
Me.FromName.Name = "FromName"
Me.FromName.ReadOnly = True
Me.FromName.Size = New System.Drawing.Size(200, 20)
Me.FromName.TabIndex = 1
'
'ToName
'
Me.ToName.AccessibleRole = System.Windows.Forms.AccessibleRole.Text
Me.ToName.Location = New System.Drawing.Point(85, 40)
Me.ToName.Name = "ToName"
Me.ToName.ReadOnly = True
Me.ToName.Size = New System.Drawing.Size(200, 20)
Me.ToName.TabIndex = 3
'
'OpenFileDialog1
'
Me.OpenFileDialog1.FileName = "OpenFileDialog1"
'
'ExportingLabel
'
Me.ExportingLabel.AccessibleName = "Exporting ..."
Me.ExportingLabel.AccessibleRole = System.Windows.Forms.AccessibleRole.Text
Me.ExportingLabel.AutoSize = True
Me.ExportingLabel.Enabled = False
Me.ExportingLabel.Location = New System.Drawing.Point(8, 90)
Me.ExportingLabel.Name = "ExportingLabel"
Me.ExportingLabel.Size = New System.Drawing.Size(63, 13)
Me.ExportingLabel.TabIndex = 4
Me.ExportingLabel.Text = "Exporting ..."
Me.ExportingLabel.Visible = False
'
'ExportForm
'
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(284, 164)
Me.Controls.Add(Me.ExportingLabel)
Me.Controls.Add(Me.ToName)
Me.Controls.Add(Me.FromName)
Me.Controls.Add(Me.CnclButton)
Me.Controls.Add(Me.OkButton)
Me.Controls.Add(Me.ExportToLabel)
Me.Controls.Add(Me.ExportFromLabel)
Me.Name = "ExportForm"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Export the Log"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents ExportFromLabel As System.Windows.Forms.Label
Friend WithEvents ExportToLabel As System.Windows.Forms.Label
Friend WithEvents OkButton As System.Windows.Forms.Button
Friend WithEvents CnclButton As System.Windows.Forms.Button
Friend WithEvents FromName As System.Windows.Forms.TextBox
Friend WithEvents ToName As System.Windows.Forms.TextBox
Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog
Friend WithEvents ExportingLabel As System.Windows.Forms.Label
End Class