-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKeyInsert.Designer.vb
634 lines (631 loc) · 31 KB
/
KeyInsert.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
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
Partial Class KeyInsert
Inherits System.Windows.Forms.Form
''' <summary>
''' Designer variable used to keep track of non-visual components.
''' </summary>
Private components As System.ComponentModel.IContainer
''' <summary>
''' Disposes resources used by the form.
''' </summary>
''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If components IsNot Nothing Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
''' <summary>
''' This method is required for Windows Forms designer support.
''' Do not change the method contents inside the source code editor. The Forms designer might
''' not be able to load this method if it was changed manually.
''' </summary>
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Me.lstKeyStrokes = New System.Windows.Forms.ListView()
Me.colheadKeyStroke = New System.Windows.Forms.ColumnHeader()
Me.colheadTime = New System.Windows.Forms.ColumnHeader()
Me.contextCommands = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.contextCommandsResizePathHeader = New System.Windows.Forms.ToolStripMenuItem()
Me.contextCommandsResizePathContent = New System.Windows.Forms.ToolStripMenuItem()
Me.contextCommandsSeperator1 = New System.Windows.Forms.ToolStripSeparator()
Me.contextCommandsResizeArgsHeader = New System.Windows.Forms.ToolStripMenuItem()
Me.contextCommandsResizeArgsContent = New System.Windows.Forms.ToolStripMenuItem()
Me.contextCommandsSeperator2 = New System.Windows.Forms.ToolStripSeparator()
Me.contextCommandsResizeAllHeader = New System.Windows.Forms.ToolStripMenuItem()
Me.contextCommandsResizeAllContent = New System.Windows.Forms.ToolStripMenuItem()
Me.btnAdd = New System.Windows.Forms.Button()
Me.btnRemove = New System.Windows.Forms.Button()
Me.lblStatus = New System.Windows.Forms.Label()
Me.bwKeyInserter = New System.ComponentModel.BackgroundWorker()
Me.lnkInfo = New System.Windows.Forms.LinkLabel()
Me.btnStart = New System.Windows.Forms.Button()
Me.grpStopKey = New System.Windows.Forms.GroupBox()
Me.optKeyCapsLock = New System.Windows.Forms.RadioButton()
Me.optKeyScrollLock = New System.Windows.Forms.RadioButton()
Me.optKeyShift = New System.Windows.Forms.RadioButton()
Me.optKeyAlt = New System.Windows.Forms.RadioButton()
Me.optKeyNumLock = New System.Windows.Forms.RadioButton()
Me.optKeyCtrl = New System.Windows.Forms.RadioButton()
Me.grpStart = New System.Windows.Forms.GroupBox()
Me.chkStartHide = New System.Windows.Forms.CheckBox()
Me.chkStartBackground = New System.Windows.Forms.CheckBox()
Me.chkStartMinimise = New System.Windows.Forms.CheckBox()
Me.grpEnd = New System.Windows.Forms.GroupBox()
Me.chkEndShow = New System.Windows.Forms.CheckBox()
Me.chkEndForeground = New System.Windows.Forms.CheckBox()
Me.chkEndRestore = New System.Windows.Forms.CheckBox()
Me.btnScriptSave = New System.Windows.Forms.Button()
Me.btnScriptLoad = New System.Windows.Forms.Button()
Me.ofdConfig = New System.Windows.Forms.OpenFileDialog()
Me.sfdConfig = New System.Windows.Forms.SaveFileDialog()
Me.progressBar = New wyDay.Controls.Windows7ProgressBar()
Me.chkTaskbar = New System.Windows.Forms.CheckBox()
Me.numStartupDelay = New System.Windows.Forms.NumericUpDown()
Me.numRunCountLimit = New System.Windows.Forms.NumericUpDown()
Me.lblStartupDelay = New System.Windows.Forms.Label()
Me.lblRunCountLimit = New System.Windows.Forms.Label()
Me.chkKeepOnTop = New System.Windows.Forms.CheckBox()
Me.lblVersion = New System.Windows.Forms.Label()
Me.btnMouseInfo = New System.Windows.Forms.Button()
Me.btnGetMouse = New System.Windows.Forms.Button()
Me.contextCommands.SuspendLayout
Me.grpStopKey.SuspendLayout
Me.grpStart.SuspendLayout
Me.grpEnd.SuspendLayout
CType(Me.numStartupDelay,System.ComponentModel.ISupportInitialize).BeginInit
CType(Me.numRunCountLimit,System.ComponentModel.ISupportInitialize).BeginInit
Me.SuspendLayout
'
'lstKeyStrokes
'
Me.lstKeyStrokes.AllowColumnReorder = true
Me.lstKeyStrokes.AllowDrop = true
Me.lstKeyStrokes.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.lstKeyStrokes.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.colheadKeyStroke, Me.colheadTime})
Me.lstKeyStrokes.ContextMenuStrip = Me.contextCommands
Me.lstKeyStrokes.FullRowSelect = true
Me.lstKeyStrokes.GridLines = true
Me.lstKeyStrokes.HideSelection = false
Me.lstKeyStrokes.LabelEdit = true
Me.lstKeyStrokes.Location = New System.Drawing.Point(12, 12)
Me.lstKeyStrokes.Name = "lstKeyStrokes"
Me.lstKeyStrokes.Size = New System.Drawing.Size(403, 336)
Me.lstKeyStrokes.TabIndex = 0
Me.lstKeyStrokes.UseCompatibleStateImageBehavior = false
Me.lstKeyStrokes.View = System.Windows.Forms.View.Details
'
'colheadKeyStroke
'
Me.colheadKeyStroke.Text = "Keystroke"
Me.colheadKeyStroke.Width = 269
'
'colheadTime
'
Me.colheadTime.Text = "Wait Time (ms)"
Me.colheadTime.Width = 112
'
'contextCommands
'
Me.contextCommands.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.contextCommandsResizePathHeader, Me.contextCommandsResizePathContent, Me.contextCommandsSeperator1, Me.contextCommandsResizeArgsHeader, Me.contextCommandsResizeArgsContent, Me.contextCommandsSeperator2, Me.contextCommandsResizeAllHeader, Me.contextCommandsResizeAllContent})
Me.contextCommands.Name = "contextMenuStripCommands"
Me.contextCommands.Size = New System.Drawing.Size(267, 148)
'
'contextCommandsResizePathHeader
'
Me.contextCommandsResizePathHeader.AutoToolTip = true
Me.contextCommandsResizePathHeader.Name = "contextCommandsResizePathHeader"
Me.contextCommandsResizePathHeader.Size = New System.Drawing.Size(266, 22)
Me.contextCommandsResizePathHeader.Tag = "0"
Me.contextCommandsResizePathHeader.Text = "Resize Keystroke column by Header"
'
'contextCommandsResizePathContent
'
Me.contextCommandsResizePathContent.AutoToolTip = true
Me.contextCommandsResizePathContent.Name = "contextCommandsResizePathContent"
Me.contextCommandsResizePathContent.Size = New System.Drawing.Size(266, 22)
Me.contextCommandsResizePathContent.Tag = "0"
Me.contextCommandsResizePathContent.Text = "Resize Keystroke column by Content"
'
'contextCommandsSeperator1
'
Me.contextCommandsSeperator1.Name = "contextCommandsSeperator1"
Me.contextCommandsSeperator1.Size = New System.Drawing.Size(263, 6)
'
'contextCommandsResizeArgsHeader
'
Me.contextCommandsResizeArgsHeader.AutoToolTip = true
Me.contextCommandsResizeArgsHeader.Name = "contextCommandsResizeArgsHeader"
Me.contextCommandsResizeArgsHeader.Size = New System.Drawing.Size(266, 22)
Me.contextCommandsResizeArgsHeader.Tag = "1"
Me.contextCommandsResizeArgsHeader.Text = "Resize Time column by Header"
'
'contextCommandsResizeArgsContent
'
Me.contextCommandsResizeArgsContent.AutoToolTip = true
Me.contextCommandsResizeArgsContent.Name = "contextCommandsResizeArgsContent"
Me.contextCommandsResizeArgsContent.Size = New System.Drawing.Size(266, 22)
Me.contextCommandsResizeArgsContent.Tag = "1"
Me.contextCommandsResizeArgsContent.Text = "Resize Time column by Content"
'
'contextCommandsSeperator2
'
Me.contextCommandsSeperator2.Name = "contextCommandsSeperator2"
Me.contextCommandsSeperator2.Size = New System.Drawing.Size(263, 6)
'
'contextCommandsResizeAllHeader
'
Me.contextCommandsResizeAllHeader.AutoToolTip = true
Me.contextCommandsResizeAllHeader.Name = "contextCommandsResizeAllHeader"
Me.contextCommandsResizeAllHeader.Size = New System.Drawing.Size(266, 22)
Me.contextCommandsResizeAllHeader.Text = "Resize all by Column Header"
'
'contextCommandsResizeAllContent
'
Me.contextCommandsResizeAllContent.AutoToolTip = true
Me.contextCommandsResizeAllContent.Name = "contextCommandsResizeAllContent"
Me.contextCommandsResizeAllContent.Size = New System.Drawing.Size(266, 22)
Me.contextCommandsResizeAllContent.Text = "Resize all by Column Content"
'
'btnAdd
'
Me.btnAdd.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.btnAdd.Location = New System.Drawing.Point(421, 16)
Me.btnAdd.Name = "btnAdd"
Me.btnAdd.Size = New System.Drawing.Size(150, 23)
Me.btnAdd.TabIndex = 1
Me.btnAdd.Text = "Add"
Me.btnAdd.UseVisualStyleBackColor = true
'
'btnRemove
'
Me.btnRemove.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.btnRemove.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.btnRemove.Enabled = false
Me.btnRemove.Location = New System.Drawing.Point(421, 45)
Me.btnRemove.Name = "btnRemove"
Me.btnRemove.Size = New System.Drawing.Size(150, 23)
Me.btnRemove.TabIndex = 2
Me.btnRemove.Text = "Remove"
Me.btnRemove.UseVisualStyleBackColor = true
'
'lblStatus
'
Me.lblStatus.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.lblStatus.AutoSize = true
Me.lblStatus.Location = New System.Drawing.Point(422, 332)
Me.lblStatus.Name = "lblStatus"
Me.lblStatus.Size = New System.Drawing.Size(67, 13)
Me.lblStatus.TabIndex = 17
Me.lblStatus.Text = "Not Running"
'
'bwKeyInserter
'
Me.bwKeyInserter.WorkerReportsProgress = true
Me.bwKeyInserter.WorkerSupportsCancellation = true
'
'lnkInfo
'
Me.lnkInfo.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.lnkInfo.AutoSize = true
Me.lnkInfo.Location = New System.Drawing.Point(577, 15)
Me.lnkInfo.Name = "lnkInfo"
Me.lnkInfo.Size = New System.Drawing.Size(78, 13)
Me.lnkInfo.TabIndex = 5
Me.lnkInfo.TabStop = true
Me.lnkInfo.Text = "Key strings info"
'
'btnStart
'
Me.btnStart.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.btnStart.Enabled = false
Me.btnStart.Location = New System.Drawing.Point(421, 74)
Me.btnStart.Name = "btnStart"
Me.btnStart.Size = New System.Drawing.Size(150, 23)
Me.btnStart.TabIndex = 3
Me.btnStart.Text = "Start"
Me.btnStart.UseVisualStyleBackColor = true
'
'grpStopKey
'
Me.grpStopKey.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.grpStopKey.Controls.Add(Me.optKeyCapsLock)
Me.grpStopKey.Controls.Add(Me.optKeyScrollLock)
Me.grpStopKey.Controls.Add(Me.optKeyShift)
Me.grpStopKey.Controls.Add(Me.optKeyAlt)
Me.grpStopKey.Controls.Add(Me.optKeyNumLock)
Me.grpStopKey.Controls.Add(Me.optKeyCtrl)
Me.grpStopKey.Location = New System.Drawing.Point(577, 38)
Me.grpStopKey.Name = "grpStopKey"
Me.grpStopKey.Size = New System.Drawing.Size(150, 88)
Me.grpStopKey.TabIndex = 7
Me.grpStopKey.TabStop = false
Me.grpStopKey.Text = "Key to press to stop:"
'
'optKeyCapsLock
'
Me.optKeyCapsLock.AutoSize = true
Me.optKeyCapsLock.Location = New System.Drawing.Point(70, 42)
Me.optKeyCapsLock.Name = "optKeyCapsLock"
Me.optKeyCapsLock.Size = New System.Drawing.Size(76, 17)
Me.optKeyCapsLock.TabIndex = 4
Me.optKeyCapsLock.TabStop = true
Me.optKeyCapsLock.Text = "Caps Lock"
Me.optKeyCapsLock.UseVisualStyleBackColor = true
'
'optKeyScrollLock
'
Me.optKeyScrollLock.AutoSize = true
Me.optKeyScrollLock.Location = New System.Drawing.Point(70, 65)
Me.optKeyScrollLock.Name = "optKeyScrollLock"
Me.optKeyScrollLock.Size = New System.Drawing.Size(78, 17)
Me.optKeyScrollLock.TabIndex = 5
Me.optKeyScrollLock.TabStop = true
Me.optKeyScrollLock.Text = "Scroll Lock"
Me.optKeyScrollLock.UseVisualStyleBackColor = true
'
'optKeyShift
'
Me.optKeyShift.AutoSize = true
Me.optKeyShift.Location = New System.Drawing.Point(6, 65)
Me.optKeyShift.Name = "optKeyShift"
Me.optKeyShift.Size = New System.Drawing.Size(46, 17)
Me.optKeyShift.TabIndex = 2
Me.optKeyShift.Text = "Shift"
Me.optKeyShift.UseVisualStyleBackColor = true
'
'optKeyAlt
'
Me.optKeyAlt.AutoSize = true
Me.optKeyAlt.Location = New System.Drawing.Point(6, 42)
Me.optKeyAlt.Name = "optKeyAlt"
Me.optKeyAlt.Size = New System.Drawing.Size(37, 17)
Me.optKeyAlt.TabIndex = 1
Me.optKeyAlt.Text = "Alt"
Me.optKeyAlt.UseVisualStyleBackColor = true
'
'optKeyNumLock
'
Me.optKeyNumLock.AutoSize = true
Me.optKeyNumLock.Location = New System.Drawing.Point(70, 19)
Me.optKeyNumLock.Name = "optKeyNumLock"
Me.optKeyNumLock.Size = New System.Drawing.Size(74, 17)
Me.optKeyNumLock.TabIndex = 3
Me.optKeyNumLock.TabStop = true
Me.optKeyNumLock.Text = "Num Lock"
Me.optKeyNumLock.UseVisualStyleBackColor = true
'
'optKeyCtrl
'
Me.optKeyCtrl.AutoSize = true
Me.optKeyCtrl.Checked = true
Me.optKeyCtrl.Location = New System.Drawing.Point(6, 19)
Me.optKeyCtrl.Name = "optKeyCtrl"
Me.optKeyCtrl.Size = New System.Drawing.Size(58, 17)
Me.optKeyCtrl.TabIndex = 0
Me.optKeyCtrl.TabStop = true
Me.optKeyCtrl.Text = "Control"
Me.optKeyCtrl.UseVisualStyleBackColor = true
'
'grpStart
'
Me.grpStart.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.grpStart.Controls.Add(Me.chkStartHide)
Me.grpStart.Controls.Add(Me.chkStartBackground)
Me.grpStart.Controls.Add(Me.chkStartMinimise)
Me.grpStart.Location = New System.Drawing.Point(421, 132)
Me.grpStart.Name = "grpStart"
Me.grpStart.Size = New System.Drawing.Size(150, 88)
Me.grpStart.TabIndex = 8
Me.grpStart.TabStop = false
Me.grpStart.Text = "Action on script start:"
'
'chkStartHide
'
Me.chkStartHide.AutoSize = true
Me.chkStartHide.Location = New System.Drawing.Point(6, 65)
Me.chkStartHide.Name = "chkStartHide"
Me.chkStartHide.Size = New System.Drawing.Size(87, 17)
Me.chkStartHide.TabIndex = 2
Me.chkStartHide.Text = "Hide window"
Me.chkStartHide.UseVisualStyleBackColor = true
'
'chkStartBackground
'
Me.chkStartBackground.AutoSize = true
Me.chkStartBackground.Location = New System.Drawing.Point(6, 42)
Me.chkStartBackground.Name = "chkStartBackground"
Me.chkStartBackground.Size = New System.Drawing.Size(123, 17)
Me.chkStartBackground.TabIndex = 1
Me.chkStartBackground.Text = "Send to background"
Me.chkStartBackground.UseVisualStyleBackColor = true
'
'chkStartMinimise
'
Me.chkStartMinimise.AutoSize = true
Me.chkStartMinimise.Checked = true
Me.chkStartMinimise.CheckState = System.Windows.Forms.CheckState.Checked
Me.chkStartMinimise.Location = New System.Drawing.Point(6, 19)
Me.chkStartMinimise.Name = "chkStartMinimise"
Me.chkStartMinimise.Size = New System.Drawing.Size(66, 17)
Me.chkStartMinimise.TabIndex = 0
Me.chkStartMinimise.Text = "Minimise"
Me.chkStartMinimise.UseVisualStyleBackColor = true
'
'grpEnd
'
Me.grpEnd.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.grpEnd.Controls.Add(Me.chkEndShow)
Me.grpEnd.Controls.Add(Me.chkEndForeground)
Me.grpEnd.Controls.Add(Me.chkEndRestore)
Me.grpEnd.Location = New System.Drawing.Point(577, 132)
Me.grpEnd.Name = "grpEnd"
Me.grpEnd.Size = New System.Drawing.Size(150, 88)
Me.grpEnd.TabIndex = 9
Me.grpEnd.TabStop = false
Me.grpEnd.Text = "Action on script end:"
'
'chkEndShow
'
Me.chkEndShow.AutoSize = true
Me.chkEndShow.Location = New System.Drawing.Point(6, 65)
Me.chkEndShow.Name = "chkEndShow"
Me.chkEndShow.Size = New System.Drawing.Size(92, 17)
Me.chkEndShow.TabIndex = 2
Me.chkEndShow.Text = "Show window"
Me.chkEndShow.UseVisualStyleBackColor = true
'
'chkEndForeground
'
Me.chkEndForeground.AutoSize = true
Me.chkEndForeground.Location = New System.Drawing.Point(6, 42)
Me.chkEndForeground.Name = "chkEndForeground"
Me.chkEndForeground.Size = New System.Drawing.Size(116, 17)
Me.chkEndForeground.TabIndex = 1
Me.chkEndForeground.Text = "Bring to foreground"
Me.chkEndForeground.UseVisualStyleBackColor = true
'
'chkEndRestore
'
Me.chkEndRestore.AutoSize = true
Me.chkEndRestore.Location = New System.Drawing.Point(6, 19)
Me.chkEndRestore.Name = "chkEndRestore"
Me.chkEndRestore.Size = New System.Drawing.Size(63, 17)
Me.chkEndRestore.TabIndex = 0
Me.chkEndRestore.Text = "Restore"
Me.chkEndRestore.UseVisualStyleBackColor = true
'
'btnScriptSave
'
Me.btnScriptSave.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.btnScriptSave.AutoSize = true
Me.btnScriptSave.Location = New System.Drawing.Point(421, 265)
Me.btnScriptSave.Name = "btnScriptSave"
Me.btnScriptSave.Size = New System.Drawing.Size(150, 23)
Me.btnScriptSave.TabIndex = 14
Me.btnScriptSave.Text = "Save script..."
Me.btnScriptSave.UseVisualStyleBackColor = true
'
'btnScriptLoad
'
Me.btnScriptLoad.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.btnScriptLoad.AutoSize = true
Me.btnScriptLoad.Location = New System.Drawing.Point(577, 265)
Me.btnScriptLoad.Name = "btnScriptLoad"
Me.btnScriptLoad.Size = New System.Drawing.Size(150, 23)
Me.btnScriptLoad.TabIndex = 15
Me.btnScriptLoad.Text = "Load script..."
Me.btnScriptLoad.UseVisualStyleBackColor = true
'
'ofdConfig
'
Me.ofdConfig.DefaultExt = "xml.KeyInsert"
Me.ofdConfig.Filter = "KeyInsert configs|*.xml.KeyInsert|All files|*.*"
Me.ofdConfig.SupportMultiDottedExtensions = true
'
'sfdConfig
'
Me.sfdConfig.DefaultExt = "xml.KeyInsert"
Me.sfdConfig.Filter = "KeyInsert configs|*.xml.KeyInsert|All files|*.*"
Me.sfdConfig.SupportMultiDottedExtensions = true
'
'chkTaskbar
'
Me.chkTaskbar.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.chkTaskbar.AutoSize = true
Me.chkTaskbar.Location = New System.Drawing.Point(577, 321)
Me.chkTaskbar.Name = "chkTaskbar"
Me.chkTaskbar.Size = New System.Drawing.Size(145, 17)
Me.chkTaskbar.TabIndex = 18
Me.chkTaskbar.Text = "Show progress in taskbar"
Me.chkTaskbar.UseVisualStyleBackColor = true
'
'numStartupDelay
'
Me.numStartupDelay.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.numStartupDelay.Increment = New Decimal(New Integer() {10, 0, 0, 0})
Me.numStartupDelay.Location = New System.Drawing.Point(422, 239)
Me.numStartupDelay.Maximum = New Decimal(New Integer() {-6, -1, -1, 0})
Me.numStartupDelay.Name = "numStartupDelay"
Me.numStartupDelay.Size = New System.Drawing.Size(148, 20)
Me.numStartupDelay.TabIndex = 11
Me.numStartupDelay.Value = New Decimal(New Integer() {100, 0, 0, 0})
'
'numRunCountLimit
'
Me.numRunCountLimit.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.numRunCountLimit.Location = New System.Drawing.Point(578, 239)
Me.numRunCountLimit.Maximum = New Decimal(New Integer() {-1, -1, -1, 0})
Me.numRunCountLimit.Minimum = New Decimal(New Integer() {1, 0, 0, -2147483648})
Me.numRunCountLimit.Name = "numRunCountLimit"
Me.numRunCountLimit.Size = New System.Drawing.Size(148, 20)
Me.numRunCountLimit.TabIndex = 13
Me.numRunCountLimit.Value = New Decimal(New Integer() {1, 0, 0, -2147483648})
'
'lblStartupDelay
'
Me.lblStartupDelay.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.lblStartupDelay.AutoSize = true
Me.lblStartupDelay.Location = New System.Drawing.Point(421, 223)
Me.lblStartupDelay.Name = "lblStartupDelay"
Me.lblStartupDelay.Size = New System.Drawing.Size(62, 13)
Me.lblStartupDelay.TabIndex = 10
Me.lblStartupDelay.Text = "Start Delay:"
'
'lblRunCountLimit
'
Me.lblRunCountLimit.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.lblRunCountLimit.AutoSize = true
Me.lblRunCountLimit.Location = New System.Drawing.Point(577, 223)
Me.lblRunCountLimit.Name = "lblRunCountLimit"
Me.lblRunCountLimit.Size = New System.Drawing.Size(146, 13)
Me.lblRunCountLimit.TabIndex = 12
Me.lblRunCountLimit.Text = "Run Count Limit: (-1 is infinite)"
'
'chkKeepOnTop
'
Me.chkKeepOnTop.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.chkKeepOnTop.AutoSize = true
Me.chkKeepOnTop.Location = New System.Drawing.Point(577, 340)
Me.chkKeepOnTop.Name = "chkKeepOnTop"
Me.chkKeepOnTop.Size = New System.Drawing.Size(123, 17)
Me.chkKeepOnTop.TabIndex = 19
Me.chkKeepOnTop.Text = "Keep window on top"
Me.chkKeepOnTop.UseVisualStyleBackColor = true
'
'lblVersion
'
Me.lblVersion.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.lblVersion.AutoSize = true
Me.lblVersion.Font = New System.Drawing.Font("Microsoft Sans Serif", 6!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0,Byte))
Me.lblVersion.Location = New System.Drawing.Point(718, 350)
Me.lblVersion.Name = "lblVersion"
Me.lblVersion.Size = New System.Drawing.Size(21, 9)
Me.lblVersion.TabIndex = 20
Me.lblVersion.Text = "1.0.0"
'
'progressBar
'
Me.progressBar.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.progressBar.ContainerControl = Me
Me.progressBar.Location = New System.Drawing.Point(421, 294)
Me.progressBar.Name = "progressBar"
Me.progressBar.Size = New System.Drawing.Size(306, 23)
Me.progressBar.TabIndex = 16
'
'btnMouseInfo
'
Me.btnMouseInfo.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.btnMouseInfo.Location = New System.Drawing.Point(659, 10)
Me.btnMouseInfo.Name = "btnMouseInfo"
Me.btnMouseInfo.Size = New System.Drawing.Size(68, 23)
Me.btnMouseInfo.TabIndex = 6
Me.btnMouseInfo.Text = "Mouse Info"
Me.btnMouseInfo.UseVisualStyleBackColor = true
'
'btnGetMouse
'
Me.btnGetMouse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles)
Me.btnGetMouse.Enabled = false
Me.btnGetMouse.Location = New System.Drawing.Point(421, 103)
Me.btnGetMouse.Name = "btnGetMouse"
Me.btnGetMouse.Size = New System.Drawing.Size(150, 23)
Me.btnGetMouse.TabIndex = 4
Me.btnGetMouse.Text = "Get Mouse Pos (waits 2s)"
Me.btnGetMouse.UseVisualStyleBackColor = true
'
'KeyInsert
'
Me.AcceptButton = Me.btnStart
Me.AutoScaleDimensions = New System.Drawing.SizeF(6!, 13!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.CancelButton = Me.btnRemove
Me.ClientSize = New System.Drawing.Size(739, 360)
Me.Controls.Add(Me.btnGetMouse)
Me.Controls.Add(Me.btnMouseInfo)
Me.Controls.Add(Me.progressBar)
Me.Controls.Add(Me.lblVersion)
Me.Controls.Add(Me.chkKeepOnTop)
Me.Controls.Add(Me.lblRunCountLimit)
Me.Controls.Add(Me.lblStartupDelay)
Me.Controls.Add(Me.numRunCountLimit)
Me.Controls.Add(Me.numStartupDelay)
Me.Controls.Add(Me.chkTaskbar)
Me.Controls.Add(Me.btnScriptLoad)
Me.Controls.Add(Me.btnScriptSave)
Me.Controls.Add(Me.grpEnd)
Me.Controls.Add(Me.grpStart)
Me.Controls.Add(Me.grpStopKey)
Me.Controls.Add(Me.btnStart)
Me.Controls.Add(Me.lnkInfo)
Me.Controls.Add(Me.lblStatus)
Me.Controls.Add(Me.btnRemove)
Me.Controls.Add(Me.btnAdd)
Me.Controls.Add(Me.lstKeyStrokes)
Me.Icon = Global.KeyInsert.Resources.key_presser_5
Me.Name = "KeyInsert"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "KeyInsert"
Me.contextCommands.ResumeLayout(false)
Me.grpStopKey.ResumeLayout(false)
Me.grpStopKey.PerformLayout
Me.grpStart.ResumeLayout(false)
Me.grpStart.PerformLayout
Me.grpEnd.ResumeLayout(false)
Me.grpEnd.PerformLayout
CType(Me.numStartupDelay,System.ComponentModel.ISupportInitialize).EndInit
CType(Me.numRunCountLimit,System.ComponentModel.ISupportInitialize).EndInit
Me.ResumeLayout(false)
Me.PerformLayout
End Sub
Private WithEvents btnGetMouse As System.Windows.Forms.Button
Private WithEvents btnMouseInfo As System.Windows.Forms.Button
Private lblVersion As System.Windows.Forms.Label
Private WithEvents chkKeepOnTop As System.Windows.Forms.CheckBox
Private optKeyNumLock As System.Windows.Forms.RadioButton
Private optKeyScrollLock As System.Windows.Forms.RadioButton
Private optKeyCapsLock As System.Windows.Forms.RadioButton
Private lblRunCountLimit As System.Windows.Forms.Label
Private lblStartupDelay As System.Windows.Forms.Label
Private numRunCountLimit As System.Windows.Forms.NumericUpDown
Private numStartupDelay As System.Windows.Forms.NumericUpDown
Private WithEvents chkTaskbar As System.Windows.Forms.CheckBox
Private progressBar As wyDay.Controls.Windows7ProgressBar
Private WithEvents btnScriptSave As System.Windows.Forms.Button
Private WithEvents btnScriptLoad As System.Windows.Forms.Button
Private sfdConfig As System.Windows.Forms.SaveFileDialog
Private ofdConfig As System.Windows.Forms.OpenFileDialog
Private grpStart As System.Windows.Forms.GroupBox
Private WithEvents chkStartHide As System.Windows.Forms.CheckBox
Private WithEvents chkStartBackground As System.Windows.Forms.CheckBox
Private WithEvents chkStartMinimise As System.Windows.Forms.CheckBox
Private grpEnd As System.Windows.Forms.GroupBox
Private chkEndShow As System.Windows.Forms.CheckBox
Private chkEndForeground As System.Windows.Forms.CheckBox
Private chkEndRestore As System.Windows.Forms.CheckBox
Private optKeyCtrl As System.Windows.Forms.RadioButton
Private optKeyAlt As System.Windows.Forms.RadioButton
Private optKeyShift As System.Windows.Forms.RadioButton
Private grpStopKey As System.Windows.Forms.GroupBox
Private WithEvents contextCommandsResizeAllContent As System.Windows.Forms.ToolStripMenuItem
Private WithEvents contextCommandsResizeAllHeader As System.Windows.Forms.ToolStripMenuItem
Private contextCommandsSeperator2 As System.Windows.Forms.ToolStripSeparator
Private WithEvents contextCommandsResizeArgsContent As System.Windows.Forms.ToolStripMenuItem
Private WithEvents contextCommandsResizeArgsHeader As System.Windows.Forms.ToolStripMenuItem
Private contextCommandsSeperator1 As System.Windows.Forms.ToolStripSeparator
Private WithEvents contextCommandsResizePathContent As System.Windows.Forms.ToolStripMenuItem
Private WithEvents contextCommandsResizePathHeader As System.Windows.Forms.ToolStripMenuItem
Private contextCommands As System.Windows.Forms.ContextMenuStrip
Private WithEvents btnStart As System.Windows.Forms.Button
Private WithEvents lnkInfo As System.Windows.Forms.LinkLabel
Private WithEvents bwKeyInserter As System.ComponentModel.BackgroundWorker
Private lblStatus As System.Windows.Forms.Label
Private colheadTime As System.Windows.Forms.ColumnHeader
Private WithEvents btnRemove As System.Windows.Forms.Button
Private WithEvents btnAdd As System.Windows.Forms.Button
Private colheadKeyStroke As System.Windows.Forms.ColumnHeader
Private WithEvents lstKeyStrokes As System.Windows.Forms.ListView
End Class