Newer
Older
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class XMLImportJobDialog
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()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(XMLImportJobDialog))
Me.btnClose = New System.Windows.Forms.Button()
Me.btnImport = New System.Windows.Forms.Button()
Me.btnBrowseOutput = New System.Windows.Forms.Button()
Me.btnBrowseJob = New System.Windows.Forms.Button()
Me.tbDestination = New System.Windows.Forms.TextBox()
Me.tbJobFile = New System.Windows.Forms.TextBox()
Me.label2 = New System.Windows.Forms.Label()
Me.label1 = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'btnClose
'
Me.btnClose.Location = New System.Drawing.Point(391, 92)
Me.btnClose.Name = "btnClose"
Me.btnClose.Size = New System.Drawing.Size(75, 23)
Me.btnClose.TabIndex = 15
Me.btnClose.Text = "Cancel"
Me.btnClose.UseVisualStyleBackColor = True
'
'btnImport
'
Me.btnImport.Location = New System.Drawing.Point(310, 92)
Me.btnImport.Name = "btnImport"
Me.btnImport.Size = New System.Drawing.Size(75, 23)
Me.btnImport.TabIndex = 14
Me.btnImport.Text = "Import"
Me.btnImport.UseVisualStyleBackColor = True
'
'btnBrowseOutput
'
Me.btnBrowseOutput.Location = New System.Drawing.Point(345, 41)
Me.btnBrowseOutput.Name = "btnBrowseOutput"
Me.btnBrowseOutput.Size = New System.Drawing.Size(75, 23)
Me.btnBrowseOutput.TabIndex = 13
Me.btnBrowseOutput.Text = "Browse"
Me.btnBrowseOutput.UseVisualStyleBackColor = True
'
'btnBrowseJob
'
Me.btnBrowseJob.Location = New System.Drawing.Point(345, 12)
Me.btnBrowseJob.Name = "btnBrowseJob"
Me.btnBrowseJob.Size = New System.Drawing.Size(75, 23)
Me.btnBrowseJob.TabIndex = 12
Me.btnBrowseJob.Text = "Browse"
Me.btnBrowseJob.UseVisualStyleBackColor = True
'
'tbDestination
'
Me.tbDestination.Location = New System.Drawing.Point(105, 43)
Me.tbDestination.Name = "tbDestination"
Me.tbDestination.Size = New System.Drawing.Size(224, 20)
Me.tbDestination.TabIndex = 11
'
'tbJobFile
'
Me.tbJobFile.Location = New System.Drawing.Point(105, 14)
Me.tbJobFile.Name = "tbJobFile"
Me.tbJobFile.Size = New System.Drawing.Size(224, 20)
Me.tbJobFile.TabIndex = 10
'
'label2
'
Me.label2.AutoSize = True
Me.label2.Location = New System.Drawing.Point(11, 46)
Me.label2.Name = "label2"
Me.label2.Size = New System.Drawing.Size(87, 13)
Me.label2.TabIndex = 9
Me.label2.Text = "Output Directory:"
'
'label1
'
Me.label1.AutoSize = True
Me.label1.Location = New System.Drawing.Point(11, 17)
Me.label1.Name = "label1"
Me.label1.Size = New System.Drawing.Size(46, 13)
Me.label1.TabIndex = 8
Me.label1.Text = "Job File:"
'
'XMLImportJobDialog
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(480, 130)
Me.Controls.Add(Me.btnClose)
Me.Controls.Add(Me.btnImport)
Me.Controls.Add(Me.btnBrowseOutput)
Me.Controls.Add(Me.btnBrowseJob)
Me.Controls.Add(Me.tbDestination)
Me.Controls.Add(Me.tbJobFile)
Me.Controls.Add(Me.label2)
Me.Controls.Add(Me.label1)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Name = "XMLImportJobDialog"
Me.Text = "VECTO Import Job"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Private WithEvents btnClose As System.Windows.Forms.Button
Private WithEvents btnImport As System.Windows.Forms.Button
Private WithEvents btnBrowseOutput As System.Windows.Forms.Button
Private WithEvents btnBrowseJob As System.Windows.Forms.Button
Private WithEvents tbDestination As System.Windows.Forms.TextBox
Private WithEvents tbJobFile As System.Windows.Forms.TextBox
Private WithEvents label2 As System.Windows.Forms.Label
Private WithEvents label1 As System.Windows.Forms.Label
End Class