forked from IcemanF1/ALTTPRCropDashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNewRunner.Designer.vb
138 lines (133 loc) · 5.39 KB
/
NewRunner.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
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class NewRunner
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(NewRunner))
Me.lblCommentary = New System.Windows.Forms.Label()
Me.txtTwitchName = New System.Windows.Forms.TextBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.txtRunnerName = New System.Windows.Forms.TextBox()
Me.chkAdjustInOBS = New System.Windows.Forms.CheckBox()
Me.chkReuseInfo = New System.Windows.Forms.CheckBox()
Me.btnGo = New System.Windows.Forms.Button()
Me.Label2 = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'lblCommentary
'
Me.lblCommentary.AutoSize = True
Me.lblCommentary.BackColor = System.Drawing.Color.Transparent
Me.lblCommentary.Location = New System.Drawing.Point(12, 13)
Me.lblCommentary.Name = "lblCommentary"
Me.lblCommentary.Size = New System.Drawing.Size(70, 13)
Me.lblCommentary.TabIndex = 56
Me.lblCommentary.Text = "Twitch Name"
'
'txtTwitchName
'
Me.txtTwitchName.Location = New System.Drawing.Point(88, 10)
Me.txtTwitchName.Name = "txtTwitchName"
Me.txtTwitchName.Size = New System.Drawing.Size(280, 20)
Me.txtTwitchName.TabIndex = 55
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.BackColor = System.Drawing.Color.Transparent
Me.Label1.Location = New System.Drawing.Point(12, 48)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(73, 13)
Me.Label1.TabIndex = 58
Me.Label1.Text = "Runner Name"
'
'txtRunnerName
'
Me.txtRunnerName.Location = New System.Drawing.Point(88, 45)
Me.txtRunnerName.Name = "txtRunnerName"
Me.txtRunnerName.Size = New System.Drawing.Size(280, 20)
Me.txtRunnerName.TabIndex = 57
'
'chkAdjustInOBS
'
Me.chkAdjustInOBS.AutoSize = True
Me.chkAdjustInOBS.Location = New System.Drawing.Point(15, 98)
Me.chkAdjustInOBS.Name = "chkAdjustInOBS"
Me.chkAdjustInOBS.Size = New System.Drawing.Size(115, 17)
Me.chkAdjustInOBS.TabIndex = 59
Me.chkAdjustInOBS.Text = "&Adjust crop in OBS"
Me.chkAdjustInOBS.UseVisualStyleBackColor = True
'
'chkReuseInfo
'
Me.chkReuseInfo.AutoSize = True
Me.chkReuseInfo.Location = New System.Drawing.Point(15, 132)
Me.chkReuseInfo.Name = "chkReuseInfo"
Me.chkReuseInfo.Size = New System.Drawing.Size(293, 17)
Me.chkReuseInfo.TabIndex = 60
Me.chkReuseInfo.Text = "&Reuse information if the runner is already in the database"
Me.chkReuseInfo.UseVisualStyleBackColor = True
'
'btnGo
'
Me.btnGo.Location = New System.Drawing.Point(293, 183)
Me.btnGo.Name = "btnGo"
Me.btnGo.Size = New System.Drawing.Size(75, 23)
Me.btnGo.TabIndex = 61
Me.btnGo.Text = "&Go"
Me.btnGo.UseVisualStyleBackColor = True
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.BackColor = System.Drawing.Color.Transparent
Me.Label2.Location = New System.Drawing.Point(85, 68)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(251, 13)
Me.Label2.TabIndex = 62
Me.Label2.Text = "Leaving runner name blank will use the twitch name"
'
'NewRunner
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(381, 218)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.btnGo)
Me.Controls.Add(Me.chkReuseInfo)
Me.Controls.Add(Me.chkAdjustInOBS)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.txtRunnerName)
Me.Controls.Add(Me.lblCommentary)
Me.Controls.Add(Me.txtTwitchName)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Name = "NewRunner"
Me.Text = "New Runner"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents lblCommentary As Label
Friend WithEvents txtTwitchName As TextBox
Friend WithEvents Label1 As Label
Friend WithEvents txtRunnerName As TextBox
Friend WithEvents chkAdjustInOBS As CheckBox
Friend WithEvents chkReuseInfo As CheckBox
Friend WithEvents btnGo As Button
Friend WithEvents Label2 As Label
End Class