-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormMain.Designer.vb
More file actions
352 lines (347 loc) · 16.1 KB
/
FormMain.Designer.vb
File metadata and controls
352 lines (347 loc) · 16.1 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class FormMain
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.txtAddrList = New System.Windows.Forms.TextBox()
Me.txtOutput = New System.Windows.Forms.TextBox()
Me.SplitContainer1 = New System.Windows.Forms.SplitContainer()
Me.lblAddressList = New System.Windows.Forms.Label()
Me.txtAmtMin = New System.Windows.Forms.TextBox()
Me.txtAmtMax = New System.Windows.Forms.TextBox()
Me.lblAmtMin = New System.Windows.Forms.Label()
Me.lblAmtMax = New System.Windows.Forms.Label()
Me.pnlTotalAmount = New System.Windows.Forms.Panel()
Me.txtTotalAmt = New System.Windows.Forms.TextBox()
Me.lblTotalAmt = New System.Windows.Forms.Label()
Me.lblExample = New System.Windows.Forms.Label()
Me.lblConstantAmtNote = New System.Windows.Forms.Label()
Me.btnReGen = New System.Windows.Forms.Button()
Me.cboDecimalPlaces = New System.Windows.Forms.ComboBox()
Me.lblDecimalPlaces = New System.Windows.Forms.Label()
Me.txtComment = New System.Windows.Forms.TextBox()
Me.lblComment = New System.Windows.Forms.Label()
Me.pnlOptionsBar = New System.Windows.Forms.Panel()
Me.txtFromWallet = New System.Windows.Forms.TextBox()
Me.lblFromWallet = New System.Windows.Forms.Label()
Me.lblAmount = New System.Windows.Forms.Label()
CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SplitContainer1.Panel1.SuspendLayout()
Me.SplitContainer1.Panel2.SuspendLayout()
Me.SplitContainer1.SuspendLayout()
Me.pnlTotalAmount.SuspendLayout()
Me.pnlOptionsBar.SuspendLayout()
Me.SuspendLayout()
'
'txtAddrList
'
Me.txtAddrList.Dock = System.Windows.Forms.DockStyle.Fill
Me.txtAddrList.Font = New System.Drawing.Font("Lucida Console", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtAddrList.Location = New System.Drawing.Point(0, 0)
Me.txtAddrList.MaxLength = 0
Me.txtAddrList.Multiline = True
Me.txtAddrList.Name = "txtAddrList"
Me.txtAddrList.ScrollBars = System.Windows.Forms.ScrollBars.Both
Me.txtAddrList.Size = New System.Drawing.Size(669, 320)
Me.txtAddrList.TabIndex = 0
'
'txtOutput
'
Me.txtOutput.Dock = System.Windows.Forms.DockStyle.Fill
Me.txtOutput.Location = New System.Drawing.Point(0, 0)
Me.txtOutput.MaxLength = 0
Me.txtOutput.Multiline = True
Me.txtOutput.Name = "txtOutput"
Me.txtOutput.ScrollBars = System.Windows.Forms.ScrollBars.Both
Me.txtOutput.Size = New System.Drawing.Size(669, 141)
Me.txtOutput.TabIndex = 0
'
'SplitContainer1
'
Me.SplitContainer1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.SplitContainer1.BackColor = System.Drawing.SystemColors.MenuHighlight
Me.SplitContainer1.Location = New System.Drawing.Point(12, 71)
Me.SplitContainer1.Name = "SplitContainer1"
Me.SplitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal
'
'SplitContainer1.Panel1
'
Me.SplitContainer1.Panel1.BackColor = System.Drawing.SystemColors.Control
Me.SplitContainer1.Panel1.Controls.Add(Me.txtAddrList)
'
'SplitContainer1.Panel2
'
Me.SplitContainer1.Panel2.BackColor = System.Drawing.SystemColors.Control
Me.SplitContainer1.Panel2.Controls.Add(Me.txtOutput)
Me.SplitContainer1.Size = New System.Drawing.Size(669, 465)
Me.SplitContainer1.SplitterDistance = 320
Me.SplitContainer1.TabIndex = 1
'
'lblAddressList
'
Me.lblAddressList.AutoSize = True
Me.lblAddressList.Location = New System.Drawing.Point(13, 55)
Me.lblAddressList.Name = "lblAddressList"
Me.lblAddressList.Size = New System.Drawing.Size(67, 13)
Me.lblAddressList.TabIndex = 2
Me.lblAddressList.Text = "Address List:"
'
'txtAmtMin
'
Me.txtAmtMin.Location = New System.Drawing.Point(45, 15)
Me.txtAmtMin.Name = "txtAmtMin"
Me.txtAmtMin.Size = New System.Drawing.Size(69, 20)
Me.txtAmtMin.TabIndex = 1
Me.txtAmtMin.Text = "10"
Me.txtAmtMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
'
'txtAmtMax
'
Me.txtAmtMax.Location = New System.Drawing.Point(166, 15)
Me.txtAmtMax.Name = "txtAmtMax"
Me.txtAmtMax.Size = New System.Drawing.Size(69, 20)
Me.txtAmtMax.TabIndex = 3
Me.txtAmtMax.Text = "100"
Me.txtAmtMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
'
'lblAmtMin
'
Me.lblAmtMin.AutoSize = True
Me.lblAmtMin.Location = New System.Drawing.Point(20, 18)
Me.lblAmtMin.Name = "lblAmtMin"
Me.lblAmtMin.Size = New System.Drawing.Size(27, 13)
Me.lblAmtMin.TabIndex = 0
Me.lblAmtMin.Text = "Min:"
'
'lblAmtMax
'
Me.lblAmtMax.AutoSize = True
Me.lblAmtMax.Location = New System.Drawing.Point(122, 18)
Me.lblAmtMax.Name = "lblAmtMax"
Me.lblAmtMax.Size = New System.Drawing.Size(46, 13)
Me.lblAmtMax.TabIndex = 2
Me.lblAmtMax.Text = "To Max:"
'
'pnlTotalAmount
'
Me.pnlTotalAmount.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
Me.pnlTotalAmount.BackColor = System.Drawing.Color.LemonChiffon
Me.pnlTotalAmount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.pnlTotalAmount.Controls.Add(Me.txtTotalAmt)
Me.pnlTotalAmount.Controls.Add(Me.lblTotalAmt)
Me.pnlTotalAmount.Location = New System.Drawing.Point(22, 524)
Me.pnlTotalAmount.Name = "pnlTotalAmount"
Me.pnlTotalAmount.Size = New System.Drawing.Size(198, 24)
Me.pnlTotalAmount.TabIndex = 0
'
'txtTotalAmt
'
Me.txtTotalAmt.Location = New System.Drawing.Point(76, 1)
Me.txtTotalAmt.Name = "txtTotalAmt"
Me.txtTotalAmt.Size = New System.Drawing.Size(115, 20)
Me.txtTotalAmt.TabIndex = 1
Me.txtTotalAmt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
'
'lblTotalAmt
'
Me.lblTotalAmt.AutoSize = True
Me.lblTotalAmt.Location = New System.Drawing.Point(2, 4)
Me.lblTotalAmt.Name = "lblTotalAmt"
Me.lblTotalAmt.Size = New System.Drawing.Size(73, 13)
Me.lblTotalAmt.TabIndex = 0
Me.lblTotalAmt.Text = "Total Amount:"
'
'lblExample
'
Me.lblExample.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
Me.lblExample.AutoSize = True
Me.lblExample.BackColor = System.Drawing.Color.LemonChiffon
Me.lblExample.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.lblExample.Location = New System.Drawing.Point(236, 523)
Me.lblExample.Name = "lblExample"
Me.lblExample.Size = New System.Drawing.Size(416, 28)
Me.lblExample.TabIndex = 0
Me.lblExample.Text = "Copy and Paste lower text to the wallet Debug Window, on the Console tab to send " &
"it." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Command Info: sendmany <fromaccount> {address:amount, ...} [minconf=1] [com" &
"ment]"
'
'lblConstantAmtNote
'
Me.lblConstantAmtNote.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.lblConstantAmtNote.AutoSize = True
Me.lblConstantAmtNote.BackColor = System.Drawing.Color.LemonChiffon
Me.lblConstantAmtNote.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.lblConstantAmtNote.Location = New System.Drawing.Point(338, 55)
Me.lblConstantAmtNote.Name = "lblConstantAmtNote"
Me.lblConstantAmtNote.Size = New System.Drawing.Size(314, 28)
Me.lblConstantAmtNote.TabIndex = 0
Me.lblConstantAmtNote.Text = "Use: 6 decimal places for CureCoin, 8 decimal places for Bitcoin." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Note: For a fi" &
"xed constant amount: Set Min and Max to be equal."
'
'btnReGen
'
Me.btnReGen.BackColor = System.Drawing.Color.Transparent
Me.btnReGen.FlatAppearance.BorderSize = 0
Me.btnReGen.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.GradientActiveCaption
Me.btnReGen.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.GradientInactiveCaption
Me.btnReGen.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.btnReGen.Location = New System.Drawing.Point(239, 14)
Me.btnReGen.Margin = New System.Windows.Forms.Padding(4)
Me.btnReGen.Name = "btnReGen"
Me.btnReGen.Size = New System.Drawing.Size(21, 20)
Me.btnReGen.TabIndex = 4
Me.btnReGen.Text = "R"
Me.btnReGen.UseVisualStyleBackColor = False
'
'cboDecimalPlaces
'
Me.cboDecimalPlaces.FormattingEnabled = True
Me.cboDecimalPlaces.Items.AddRange(New Object() {"0", "1", "2", "4", "6", "8"})
Me.cboDecimalPlaces.Location = New System.Drawing.Point(547, 2)
Me.cboDecimalPlaces.Name = "cboDecimalPlaces"
Me.cboDecimalPlaces.Size = New System.Drawing.Size(32, 21)
Me.cboDecimalPlaces.TabIndex = 7
Me.cboDecimalPlaces.Text = "6"
'
'lblDecimalPlaces
'
Me.lblDecimalPlaces.AutoSize = True
Me.lblDecimalPlaces.Location = New System.Drawing.Point(581, 5)
Me.lblDecimalPlaces.Name = "lblDecimalPlaces"
Me.lblDecimalPlaces.Size = New System.Drawing.Size(80, 13)
Me.lblDecimalPlaces.TabIndex = 8
Me.lblDecimalPlaces.Text = "Decimal Places"
'
'txtComment
'
Me.txtComment.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.txtComment.Location = New System.Drawing.Point(358, 25)
Me.txtComment.Name = "txtComment"
Me.txtComment.Size = New System.Drawing.Size(303, 20)
Me.txtComment.TabIndex = 10
'
'lblComment
'
Me.lblComment.AutoSize = True
Me.lblComment.Location = New System.Drawing.Point(291, 28)
Me.lblComment.Name = "lblComment"
Me.lblComment.Size = New System.Drawing.Size(69, 13)
Me.lblComment.TabIndex = 9
Me.lblComment.Text = "Tx Comment:"
'
'pnlOptionsBar
'
Me.pnlOptionsBar.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.pnlOptionsBar.BackColor = System.Drawing.SystemColors.GradientInactiveCaption
Me.pnlOptionsBar.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.pnlOptionsBar.Controls.Add(Me.btnReGen)
Me.pnlOptionsBar.Controls.Add(Me.txtFromWallet)
Me.pnlOptionsBar.Controls.Add(Me.lblFromWallet)
Me.pnlOptionsBar.Controls.Add(Me.txtComment)
Me.pnlOptionsBar.Controls.Add(Me.cboDecimalPlaces)
Me.pnlOptionsBar.Controls.Add(Me.txtAmtMin)
Me.pnlOptionsBar.Controls.Add(Me.lblAmount)
Me.pnlOptionsBar.Controls.Add(Me.lblAmtMin)
Me.pnlOptionsBar.Controls.Add(Me.txtAmtMax)
Me.pnlOptionsBar.Controls.Add(Me.lblDecimalPlaces)
Me.pnlOptionsBar.Controls.Add(Me.lblAmtMax)
Me.pnlOptionsBar.Controls.Add(Me.lblComment)
Me.pnlOptionsBar.Location = New System.Drawing.Point(12, 2)
Me.pnlOptionsBar.Name = "pnlOptionsBar"
Me.pnlOptionsBar.Size = New System.Drawing.Size(669, 49)
Me.pnlOptionsBar.TabIndex = 0
'
'txtFromWallet
'
Me.txtFromWallet.Location = New System.Drawing.Point(358, 2)
Me.txtFromWallet.Name = "txtFromWallet"
Me.txtFromWallet.Size = New System.Drawing.Size(183, 20)
Me.txtFromWallet.TabIndex = 6
'
'lblFromWallet
'
Me.lblFromWallet.AutoSize = True
Me.lblFromWallet.Location = New System.Drawing.Point(265, 5)
Me.lblFromWallet.Name = "lblFromWallet"
Me.lblFromWallet.Size = New System.Drawing.Size(95, 13)
Me.lblFromWallet.TabIndex = 5
Me.lblFromWallet.Text = "From Wallet Label:"
'
'lblAmount
'
Me.lblAmount.AutoSize = True
Me.lblAmount.Location = New System.Drawing.Point(0, 1)
Me.lblAmount.Name = "lblAmount"
Me.lblAmount.Size = New System.Drawing.Size(81, 13)
Me.lblAmount.TabIndex = 0
Me.lblAmount.Text = "Amount Range:"
'
'FormMain
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(693, 554)
Me.Controls.Add(Me.lblExample)
Me.Controls.Add(Me.lblConstantAmtNote)
Me.Controls.Add(Me.pnlOptionsBar)
Me.Controls.Add(Me.pnlTotalAmount)
Me.Controls.Add(Me.lblAddressList)
Me.Controls.Add(Me.SplitContainer1)
Me.Name = "FormMain"
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show
Me.SplitContainer1.Panel1.ResumeLayout(False)
Me.SplitContainer1.Panel1.PerformLayout()
Me.SplitContainer1.Panel2.ResumeLayout(False)
Me.SplitContainer1.Panel2.PerformLayout()
CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit()
Me.SplitContainer1.ResumeLayout(False)
Me.pnlTotalAmount.ResumeLayout(False)
Me.pnlTotalAmount.PerformLayout()
Me.pnlOptionsBar.ResumeLayout(False)
Me.pnlOptionsBar.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents txtAddrList As TextBox
Friend WithEvents txtOutput As TextBox
Friend WithEvents SplitContainer1 As SplitContainer
Friend WithEvents lblAddressList As Label
Friend WithEvents txtAmtMin As TextBox
Friend WithEvents txtAmtMax As TextBox
Friend WithEvents lblAmtMin As Label
Friend WithEvents lblAmtMax As Label
Friend WithEvents pnlTotalAmount As Panel
Friend WithEvents txtTotalAmt As TextBox
Friend WithEvents lblTotalAmt As Label
Friend WithEvents lblExample As Label
Friend WithEvents lblConstantAmtNote As Label
Friend WithEvents btnReGen As Button
Friend WithEvents cboDecimalPlaces As ComboBox
Friend WithEvents lblDecimalPlaces As Label
Friend WithEvents txtComment As TextBox
Friend WithEvents lblComment As Label
Friend WithEvents pnlOptionsBar As Panel
Friend WithEvents txtFromWallet As TextBox
Friend WithEvents lblFromWallet As Label
Friend WithEvents lblAmount As Label
End Class