File: frmMain.Designer.vb

package info (click to toggle)
mono-basic 2.10-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 22,964 kB
  • sloc: cs: 34,086; xml: 7,804; makefile: 471; sh: 317
file content (706 lines) | stat: -rwxr-xr-x 35,406 bytes parent folder | download
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
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
' 
' Visual Basic.Net Compiler
' Copyright (C) 2004 - 2010 Rolf Bjarne Kvinge, RKvinge@novell.com
' 
' This library is free software; you can redistribute it and/or
' modify it under the terms of the GNU Lesser General Public
' License as published by the Free Software Foundation; either
' version 2.1 of the License, or (at your option) any later version.
' 
' This library is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
' Lesser General Public License for more details.
' 
' You should have received a copy of the GNU Lesser General Public
' License along with this library; if not, write to the Free Software
' Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
' 

Partial Class frmMain

    Friend WithEvents cmnuTest As System.Windows.Forms.ContextMenuStrip
    Friend WithEvents cmnuDebugTest As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents cmnuViewCode As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents cmnuViewCode2 As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents cmnuRunTest As System.Windows.Forms.ToolStripMenuItem

    Friend WithEvents mnuMain As System.Windows.Forms.MenuStrip
    Friend WithEvents mnuTools As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents lblBasepath As System.Windows.Forms.Label
    Friend WithEvents dlgBasepath As System.Windows.Forms.FolderBrowserDialog
    Private components As System.ComponentModel.IContainer
    Friend WithEvents lstImages As System.Windows.Forms.ImageList
    Friend WithEvents lblCompiler As System.Windows.Forms.Label
    Friend WithEvents cmdCompiler As System.Windows.Forms.Button
    Friend WithEvents dlgFile As System.Windows.Forms.OpenFileDialog
    Friend WithEvents cmdBasepath As System.Windows.Forms.Button

    Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container()
        Me.mnuMain = New System.Windows.Forms.MenuStrip()
        Me.mnuTools = New System.Windows.Forms.ToolStripMenuItem()
        Me.cmnuViewCode = New System.Windows.Forms.ToolStripMenuItem()
        Me.mnuToolsRefresh = New System.Windows.Forms.ToolStripMenuItem()
        Me.NewTestToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
        Me.ViewQueuedTestsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
        Me.lstImages = New System.Windows.Forms.ImageList(Me.components)
        Me.lblBasepath = New System.Windows.Forms.Label()
        Me.dlgBasepath = New System.Windows.Forms.FolderBrowserDialog()
        Me.cmdBasepath = New System.Windows.Forms.Button()
        Me.lblCompiler = New System.Windows.Forms.Label()
        Me.cmdCompiler = New System.Windows.Forms.Button()
        Me.dlgFile = New System.Windows.Forms.OpenFileDialog()
        Me.cmnuTest = New System.Windows.Forms.ContextMenuStrip(Me.components)
        Me.cmnuRunTest = New System.Windows.Forms.ToolStripMenuItem()
        Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator()
        Me.cmnuViewCodeAndDebugTest = New System.Windows.Forms.ToolStripMenuItem()
        Me.cmnuViewCode2 = New System.Windows.Forms.ToolStripMenuItem()
        Me.cmnuDebugTest = New System.Windows.Forms.ToolStripMenuItem()
        Me.ToolStripSeparator3 = New System.Windows.Forms.ToolStripSeparator()
        Me.mnuIldasm = New System.Windows.Forms.ToolStripMenuItem()
        Me.mnuIldasmBoth = New System.Windows.Forms.ToolStripMenuItem()
        Me.mnuIldasmDump = New System.Windows.Forms.ToolStripMenuItem()
        Me.ReflectToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
        Me.VBNCAssemblyToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
        Me.VBCAssemblyToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
        Me.BothAssembliesToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
        Me.ToolStripSeparator2 = New System.Windows.Forms.ToolStripSeparator()
        Me.CreateNewTestToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
        Me.cmnuDeleteTest = New System.Windows.Forms.ToolStripMenuItem()
        Me.MakeErrorTestToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
        Me.cmdPause = New System.Windows.Forms.Button()
        Me.cmdRun = New System.Windows.Forms.Button()
        Me.cmdExit = New System.Windows.Forms.Button()
        Me.cmdStop = New System.Windows.Forms.Button()
        Me.lblVBCCompiler = New System.Windows.Forms.Label()
        Me.cmdVBCCompiler = New System.Windows.Forms.Button()
        Me.cmdReload = New System.Windows.Forms.Button()
        Me.tblLayoutMain = New System.Windows.Forms.TableLayoutPanel()
        Me.gridTestProperties = New System.Windows.Forms.PropertyGrid()
        Me.txtTestMessage = New System.Windows.Forms.TextBox()
        Me.lstTests = New System.Windows.Forms.ListView()
        Me.colName = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
        Me.colResult = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
        Me.colCategory = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
        Me.colFailedVerification = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
        Me.colDate = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
        Me.colKnownFailureReason = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
        Me.txtFilter = New System.Windows.Forms.TextBox()
        Me.cmbCompiler = New System.Windows.Forms.ComboBox()
        Me.cmbVBCCompiler = New System.Windows.Forms.ComboBox()
        Me.cmbBasepath = New System.Windows.Forms.ComboBox()
        Me.worker = New System.ComponentModel.BackgroundWorker()
        Me.cmdSave = New System.Windows.Forms.Button()
        Me.barProgress = New rt.EnhancedProgressBar()
        Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
        Me.tblNumberOfTests = New System.Windows.Forms.ToolStripStatusLabel()
        Me.tblTestsRun = New System.Windows.Forms.ToolStripStatusLabel()
        Me.tblExecutionTime = New System.Windows.Forms.ToolStripStatusLabel()
        Me.tblAverageExecutionTime = New System.Windows.Forms.ToolStripStatusLabel()
        Me.tblTestsNotRun = New System.Windows.Forms.ToolStripStatusLabel()
        Me.tblGreenTests = New System.Windows.Forms.ToolStripStatusLabel()
        Me.tblRedTests = New System.Windows.Forms.ToolStripStatusLabel()
        Me.tblTestsInQueue = New System.Windows.Forms.ToolStripStatusLabel()
        Me.cmdFindTests = New System.Windows.Forms.Button()
        Me.cmdCreateTest = New System.Windows.Forms.Button()
        Me.mnuMain.SuspendLayout()
        Me.cmnuTest.SuspendLayout()
        Me.tblLayoutMain.SuspendLayout()
        Me.StatusStrip1.SuspendLayout()
        Me.SuspendLayout()
        '
        'mnuMain
        '
        Me.mnuMain.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuTools})
        Me.mnuMain.Location = New System.Drawing.Point(0, 0)
        Me.mnuMain.Name = "mnuMain"
        Me.mnuMain.Size = New System.Drawing.Size(1057, 24)
        Me.mnuMain.TabIndex = 35
        '
        'mnuTools
        '
        Me.mnuTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.cmnuViewCode, Me.mnuToolsRefresh, Me.NewTestToolStripMenuItem, Me.ViewQueuedTestsToolStripMenuItem})
        Me.mnuTools.Name = "mnuTools"
        Me.mnuTools.Size = New System.Drawing.Size(48, 20)
        Me.mnuTools.Text = "Tools"
        '
        'cmnuViewCode
        '
        Me.cmnuViewCode.Name = "cmnuViewCode"
        Me.cmnuViewCode.Size = New System.Drawing.Size(169, 22)
        Me.cmnuViewCode.Text = "View code"
        '
        'mnuToolsRefresh
        '
        Me.mnuToolsRefresh.Name = "mnuToolsRefresh"
        Me.mnuToolsRefresh.ShortcutKeys = System.Windows.Forms.Keys.F5
        Me.mnuToolsRefresh.Size = New System.Drawing.Size(169, 22)
        Me.mnuToolsRefresh.Text = "&Refresh"
        '
        'NewTestToolStripMenuItem
        '
        Me.NewTestToolStripMenuItem.Name = "NewTestToolStripMenuItem"
        Me.NewTestToolStripMenuItem.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.N), System.Windows.Forms.Keys)
        Me.NewTestToolStripMenuItem.Size = New System.Drawing.Size(169, 22)
        Me.NewTestToolStripMenuItem.Text = "New test"
        '
        'ViewQueuedTestsToolStripMenuItem
        '
        Me.ViewQueuedTestsToolStripMenuItem.Name = "ViewQueuedTestsToolStripMenuItem"
        Me.ViewQueuedTestsToolStripMenuItem.Size = New System.Drawing.Size(169, 22)
        Me.ViewQueuedTestsToolStripMenuItem.Text = "View queued tests"
        '
        'lstImages
        '
        Me.lstImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit
        Me.lstImages.ImageSize = New System.Drawing.Size(16, 16)
        Me.lstImages.TransparentColor = System.Drawing.Color.Transparent
        '
        'lblBasepath
        '
        Me.lblBasepath.Location = New System.Drawing.Point(9, 31)
        Me.lblBasepath.Name = "lblBasepath"
        Me.lblBasepath.Size = New System.Drawing.Size(100, 21)
        Me.lblBasepath.TabIndex = 5
        Me.lblBasepath.Text = "Tests:"
        '
        'dlgBasepath
        '
        Me.dlgBasepath.ShowNewFolderButton = False
        '
        'cmdBasepath
        '
        Me.cmdBasepath.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdBasepath.Location = New System.Drawing.Point(1030, 27)
        Me.cmdBasepath.Name = "cmdBasepath"
        Me.cmdBasepath.Size = New System.Drawing.Size(25, 21)
        Me.cmdBasepath.TabIndex = 6
        Me.cmdBasepath.Text = "..."
        '
        'lblCompiler
        '
        Me.lblCompiler.Location = New System.Drawing.Point(9, 55)
        Me.lblCompiler.Name = "lblCompiler"
        Me.lblCompiler.Size = New System.Drawing.Size(100, 21)
        Me.lblCompiler.TabIndex = 8
        Me.lblCompiler.Text = "VBNC Compiler:"
        '
        'cmdCompiler
        '
        Me.cmdCompiler.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdCompiler.Location = New System.Drawing.Point(1030, 55)
        Me.cmdCompiler.Name = "cmdCompiler"
        Me.cmdCompiler.Size = New System.Drawing.Size(25, 21)
        Me.cmdCompiler.TabIndex = 9
        Me.cmdCompiler.Text = "..."
        '
        'dlgFile
        '
        Me.dlgFile.Filter = "Executable files (*.exe)|*.exe|All files (*.*)|*.*"
        Me.dlgFile.Title = "Select the compiler to use"
        '
        'cmnuTest
        '
        Me.cmnuTest.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.cmnuRunTest, Me.ToolStripSeparator1, Me.cmnuViewCodeAndDebugTest, Me.cmnuViewCode2, Me.cmnuDebugTest, Me.ToolStripSeparator3, Me.mnuIldasm, Me.ReflectToolStripMenuItem, Me.ToolStripSeparator2, Me.CreateNewTestToolStripMenuItem, Me.cmnuDeleteTest, Me.MakeErrorTestToolStripMenuItem})
        Me.cmnuTest.Name = "cmnuTest"
        Me.cmnuTest.Size = New System.Drawing.Size(390, 220)
        '
        'cmnuRunTest
        '
        Me.cmnuRunTest.Name = "cmnuRunTest"
        Me.cmnuRunTest.Size = New System.Drawing.Size(389, 22)
        Me.cmnuRunTest.Text = "Run this test"
        '
        'ToolStripSeparator1
        '
        Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
        Me.ToolStripSeparator1.Size = New System.Drawing.Size(386, 6)
        '
        'cmnuViewCodeAndDebugTest
        '
        Me.cmnuViewCodeAndDebugTest.Name = "cmnuViewCodeAndDebugTest"
        Me.cmnuViewCodeAndDebugTest.Size = New System.Drawing.Size(389, 22)
        Me.cmnuViewCodeAndDebugTest.Text = "&View Code (external editor) and Set this test to be debugged"
        '
        'cmnuViewCode2
        '
        Me.cmnuViewCode2.Name = "cmnuViewCode2"
        Me.cmnuViewCode2.Size = New System.Drawing.Size(389, 22)
        Me.cmnuViewCode2.Text = "View code (external editor)"
        '
        'cmnuDebugTest
        '
        Me.cmnuDebugTest.Name = "cmnuDebugTest"
        Me.cmnuDebugTest.Size = New System.Drawing.Size(389, 22)
        Me.cmnuDebugTest.Text = "&Set this test to be debugged"
        '
        'ToolStripSeparator3
        '
        Me.ToolStripSeparator3.Name = "ToolStripSeparator3"
        Me.ToolStripSeparator3.Size = New System.Drawing.Size(386, 6)
        '
        'mnuIldasm
        '
        Me.mnuIldasm.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuIldasmBoth, Me.mnuIldasmDump})
        Me.mnuIldasm.Name = "mnuIldasm"
        Me.mnuIldasm.Size = New System.Drawing.Size(389, 22)
        Me.mnuIldasm.Text = "Ildasm"
        '
        'mnuIldasmBoth
        '
        Me.mnuIldasmBoth.Name = "mnuIldasmBoth"
        Me.mnuIldasmBoth.Size = New System.Drawing.Size(159, 22)
        Me.mnuIldasmBoth.Text = "Both assemblies"
        '
        'mnuIldasmDump
        '
        Me.mnuIldasmDump.Name = "mnuIldasmDump"
        Me.mnuIldasmDump.Size = New System.Drawing.Size(159, 22)
        Me.mnuIldasmDump.Text = "Dump"
        '
        'ReflectToolStripMenuItem
        '
        Me.ReflectToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.VBNCAssemblyToolStripMenuItem, Me.VBCAssemblyToolStripMenuItem, Me.BothAssembliesToolStripMenuItem})
        Me.ReflectToolStripMenuItem.Name = "ReflectToolStripMenuItem"
        Me.ReflectToolStripMenuItem.Size = New System.Drawing.Size(389, 22)
        Me.ReflectToolStripMenuItem.Text = "Reflect"
        '
        'VBNCAssemblyToolStripMenuItem
        '
        Me.VBNCAssemblyToolStripMenuItem.Name = "VBNCAssemblyToolStripMenuItem"
        Me.VBNCAssemblyToolStripMenuItem.Size = New System.Drawing.Size(159, 22)
        Me.VBNCAssemblyToolStripMenuItem.Text = "VBNC assembly"
        '
        'VBCAssemblyToolStripMenuItem
        '
        Me.VBCAssemblyToolStripMenuItem.Name = "VBCAssemblyToolStripMenuItem"
        Me.VBCAssemblyToolStripMenuItem.Size = New System.Drawing.Size(159, 22)
        Me.VBCAssemblyToolStripMenuItem.Text = "VBC assembly"
        '
        'BothAssembliesToolStripMenuItem
        '
        Me.BothAssembliesToolStripMenuItem.Name = "BothAssembliesToolStripMenuItem"
        Me.BothAssembliesToolStripMenuItem.Size = New System.Drawing.Size(159, 22)
        Me.BothAssembliesToolStripMenuItem.Text = "Both assemblies"
        '
        'ToolStripSeparator2
        '
        Me.ToolStripSeparator2.Name = "ToolStripSeparator2"
        Me.ToolStripSeparator2.Size = New System.Drawing.Size(386, 6)
        '
        'CreateNewTestToolStripMenuItem
        '
        Me.CreateNewTestToolStripMenuItem.Name = "CreateNewTestToolStripMenuItem"
        Me.CreateNewTestToolStripMenuItem.Size = New System.Drawing.Size(389, 22)
        Me.CreateNewTestToolStripMenuItem.Text = "Create new test"
        '
        'cmnuDeleteTest
        '
        Me.cmnuDeleteTest.Name = "cmnuDeleteTest"
        Me.cmnuDeleteTest.Size = New System.Drawing.Size(389, 22)
        Me.cmnuDeleteTest.Text = "Delete test"
        '
        'MakeErrorTestToolStripMenuItem
        '
        Me.MakeErrorTestToolStripMenuItem.Name = "MakeErrorTestToolStripMenuItem"
        Me.MakeErrorTestToolStripMenuItem.Size = New System.Drawing.Size(389, 22)
        Me.MakeErrorTestToolStripMenuItem.Text = "Make error test"
        '
        'cmdPause
        '
        Me.cmdPause.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdPause.Location = New System.Drawing.Point(980, 157)
        Me.cmdPause.Name = "cmdPause"
        Me.cmdPause.Size = New System.Drawing.Size(75, 25)
        Me.cmdPause.TabIndex = 20
        Me.cmdPause.Tag = ""
        Me.cmdPause.Text = "Pause"
        '
        'cmdRun
        '
        Me.cmdRun.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdRun.Location = New System.Drawing.Point(980, 126)
        Me.cmdRun.Name = "cmdRun"
        Me.cmdRun.Size = New System.Drawing.Size(75, 25)
        Me.cmdRun.TabIndex = 27
        Me.cmdRun.Tag = ""
        Me.cmdRun.Text = "Run all tests"
        '
        'cmdExit
        '
        Me.cmdExit.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdExit.DialogResult = System.Windows.Forms.DialogResult.Cancel
        Me.cmdExit.Location = New System.Drawing.Point(978, 613)
        Me.cmdExit.Name = "cmdExit"
        Me.cmdExit.Size = New System.Drawing.Size(75, 25)
        Me.cmdExit.TabIndex = 28
        Me.cmdExit.Tag = ""
        Me.cmdExit.Text = "&Exit"
        '
        'cmdStop
        '
        Me.cmdStop.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdStop.Location = New System.Drawing.Point(980, 188)
        Me.cmdStop.Name = "cmdStop"
        Me.cmdStop.Size = New System.Drawing.Size(75, 25)
        Me.cmdStop.TabIndex = 29
        Me.cmdStop.Tag = ""
        Me.cmdStop.Text = "Stop"
        '
        'lblVBCCompiler
        '
        Me.lblVBCCompiler.Location = New System.Drawing.Point(9, 82)
        Me.lblVBCCompiler.Name = "lblVBCCompiler"
        Me.lblVBCCompiler.Size = New System.Drawing.Size(100, 21)
        Me.lblVBCCompiler.TabIndex = 36
        Me.lblVBCCompiler.Text = "VBC Compiler:"
        '
        'cmdVBCCompiler
        '
        Me.cmdVBCCompiler.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdVBCCompiler.Location = New System.Drawing.Point(1030, 82)
        Me.cmdVBCCompiler.Name = "cmdVBCCompiler"
        Me.cmdVBCCompiler.Size = New System.Drawing.Size(25, 21)
        Me.cmdVBCCompiler.TabIndex = 38
        Me.cmdVBCCompiler.Text = "..."
        '
        'cmdReload
        '
        Me.cmdReload.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdReload.Location = New System.Drawing.Point(980, 338)
        Me.cmdReload.Name = "cmdReload"
        Me.cmdReload.Size = New System.Drawing.Size(75, 25)
        Me.cmdReload.TabIndex = 39
        Me.cmdReload.Tag = ""
        Me.cmdReload.Text = "&Reload list"
        '
        'tblLayoutMain
        '
        Me.tblLayoutMain.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.tblLayoutMain.ColumnCount = 1
        Me.tblLayoutMain.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!))
        Me.tblLayoutMain.Controls.Add(Me.gridTestProperties, 0, 2)
        Me.tblLayoutMain.Controls.Add(Me.txtTestMessage, 0, 2)
        Me.tblLayoutMain.Controls.Add(Me.lstTests, 0, 0)
        Me.tblLayoutMain.Controls.Add(Me.txtFilter, 0, 1)
        Me.tblLayoutMain.Location = New System.Drawing.Point(12, 106)
        Me.tblLayoutMain.Name = "tblLayoutMain"
        Me.tblLayoutMain.RowCount = 3
        Me.tblLayoutMain.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
        Me.tblLayoutMain.RowStyles.Add(New System.Windows.Forms.RowStyle())
        Me.tblLayoutMain.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30.0!))
        Me.tblLayoutMain.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20.0!))
        Me.tblLayoutMain.Size = New System.Drawing.Size(963, 501)
        Me.tblLayoutMain.TabIndex = 35
        '
        'gridTestProperties
        '
        Me.gridTestProperties.Dock = System.Windows.Forms.DockStyle.Fill
        Me.gridTestProperties.HelpVisible = False
        Me.gridTestProperties.Location = New System.Drawing.Point(3, 267)
        Me.gridTestProperties.Name = "gridTestProperties"
        Me.gridTestProperties.PropertySort = System.Windows.Forms.PropertySort.Alphabetical
        Me.gridTestProperties.Size = New System.Drawing.Size(957, 136)
        Me.gridTestProperties.TabIndex = 35
        Me.gridTestProperties.ToolbarVisible = False
        '
        'txtTestMessage
        '
        Me.txtTestMessage.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.txtTestMessage.BackColor = System.Drawing.Color.White
        Me.txtTestMessage.Font = New System.Drawing.Font("Courier New", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.txtTestMessage.Location = New System.Drawing.Point(3, 409)
        Me.txtTestMessage.Multiline = True
        Me.txtTestMessage.Name = "txtTestMessage"
        Me.txtTestMessage.ReadOnly = True
        Me.txtTestMessage.ScrollBars = System.Windows.Forms.ScrollBars.Both
        Me.txtTestMessage.Size = New System.Drawing.Size(957, 89)
        Me.txtTestMessage.TabIndex = 9
        Me.txtTestMessage.WordWrap = False
        '
        'lstTests
        '
        Me.lstTests.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.colName, Me.colResult, Me.colCategory, Me.colFailedVerification, Me.colDate, Me.colKnownFailureReason})
        Me.lstTests.ContextMenuStrip = Me.cmnuTest
        Me.lstTests.Dock = System.Windows.Forms.DockStyle.Fill
        Me.lstTests.FullRowSelect = True
        Me.lstTests.HideSelection = False
        Me.lstTests.LargeImageList = Me.lstImages
        Me.lstTests.Location = New System.Drawing.Point(3, 3)
        Me.lstTests.Name = "lstTests"
        Me.lstTests.Size = New System.Drawing.Size(957, 231)
        Me.lstTests.SmallImageList = Me.lstImages
        Me.lstTests.StateImageList = Me.lstImages
        Me.lstTests.TabIndex = 33
        Me.lstTests.UseCompatibleStateImageBehavior = False
        Me.lstTests.View = System.Windows.Forms.View.Details
        '
        'colName
        '
        Me.colName.Name = "colName"
        Me.colName.Text = "Name"
        Me.colName.Width = 80
        '
        'colResult
        '
        Me.colResult.Text = "Result"
        Me.colResult.Width = 80
        '
        'colCategory
        '
        Me.colCategory.Text = "Category"
        Me.colCategory.Width = 83
        '
        'colFailedVerification
        '
        Me.colFailedVerification.Text = "Failed Verification"
        Me.colFailedVerification.Width = 249
        '
        'colDate
        '
        Me.colDate.Text = "Date"
        Me.colDate.Width = 80
        '
        'colKnownFailureReason
        '
        Me.colKnownFailureReason.Text = "Known Failure Reason"
        Me.colKnownFailureReason.Width = 148
        '
        'txtFilter
        '
        Me.txtFilter.Dock = System.Windows.Forms.DockStyle.Fill
        Me.txtFilter.Location = New System.Drawing.Point(3, 240)
        Me.txtFilter.Name = "txtFilter"
        Me.txtFilter.Size = New System.Drawing.Size(957, 21)
        Me.txtFilter.TabIndex = 36
        '
        'cmbCompiler
        '
        Me.cmbCompiler.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmbCompiler.FormattingEnabled = True
        Me.cmbCompiler.Location = New System.Drawing.Point(129, 55)
        Me.cmbCompiler.Name = "cmbCompiler"
        Me.cmbCompiler.Size = New System.Drawing.Size(895, 21)
        Me.cmbCompiler.TabIndex = 19
        '
        'cmbVBCCompiler
        '
        Me.cmbVBCCompiler.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmbVBCCompiler.FormattingEnabled = True
        Me.cmbVBCCompiler.Location = New System.Drawing.Point(129, 82)
        Me.cmbVBCCompiler.Name = "cmbVBCCompiler"
        Me.cmbVBCCompiler.Size = New System.Drawing.Size(895, 21)
        Me.cmbVBCCompiler.TabIndex = 37
        '
        'cmbBasepath
        '
        Me.cmbBasepath.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmbBasepath.FormattingEnabled = True
        Me.cmbBasepath.Location = New System.Drawing.Point(129, 28)
        Me.cmbBasepath.Name = "cmbBasepath"
        Me.cmbBasepath.Size = New System.Drawing.Size(895, 21)
        Me.cmbBasepath.TabIndex = 18
        '
        'worker
        '
        '
        'cmdSave
        '
        Me.cmdSave.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdSave.Location = New System.Drawing.Point(980, 369)
        Me.cmdSave.Name = "cmdSave"
        Me.cmdSave.Size = New System.Drawing.Size(75, 25)
        Me.cmdSave.TabIndex = 44
        Me.cmdSave.Tag = ""
        Me.cmdSave.Text = "&Save list"
        '
        'barProgress
        '
        Me.barProgress.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.barProgress.Location = New System.Drawing.Point(12, 613)
        Me.barProgress.Name = "barProgress"
        Me.barProgress.Size = New System.Drawing.Size(964, 22)
        Me.barProgress.TabIndex = 0
        Me.barProgress.ValueCount = 3
        '
        'StatusStrip1
        '
        Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tblNumberOfTests, Me.tblTestsRun, Me.tblExecutionTime, Me.tblAverageExecutionTime, Me.tblTestsNotRun, Me.tblGreenTests, Me.tblRedTests, Me.tblTestsInQueue})
        Me.StatusStrip1.Location = New System.Drawing.Point(0, 645)
        Me.StatusStrip1.Name = "StatusStrip1"
        Me.StatusStrip1.Size = New System.Drawing.Size(1057, 22)
        Me.StatusStrip1.TabIndex = 45
        Me.StatusStrip1.Text = "StatusStrip1"
        '
        'tblNumberOfTests
        '
        Me.tblNumberOfTests.Name = "tblNumberOfTests"
        Me.tblNumberOfTests.Size = New System.Drawing.Size(121, 17)
        Me.tblNumberOfTests.Text = "ToolStripStatusLabel1"
        '
        'tblTestsRun
        '
        Me.tblTestsRun.Name = "tblTestsRun"
        Me.tblTestsRun.Size = New System.Drawing.Size(121, 17)
        Me.tblTestsRun.Text = "ToolStripStatusLabel1"
        '
        'tblExecutionTime
        '
        Me.tblExecutionTime.Name = "tblExecutionTime"
        Me.tblExecutionTime.Size = New System.Drawing.Size(121, 17)
        Me.tblExecutionTime.Text = "ToolStripStatusLabel1"
        '
        'tblAverageExecutionTime
        '
        Me.tblAverageExecutionTime.Name = "tblAverageExecutionTime"
        Me.tblAverageExecutionTime.Size = New System.Drawing.Size(121, 17)
        Me.tblAverageExecutionTime.Text = "ToolStripStatusLabel1"
        '
        'tblTestsNotRun
        '
        Me.tblTestsNotRun.Name = "tblTestsNotRun"
        Me.tblTestsNotRun.Size = New System.Drawing.Size(121, 17)
        Me.tblTestsNotRun.Text = "ToolStripStatusLabel1"
        '
        'tblGreenTests
        '
        Me.tblGreenTests.Name = "tblGreenTests"
        Me.tblGreenTests.Size = New System.Drawing.Size(121, 17)
        Me.tblGreenTests.Text = "ToolStripStatusLabel1"
        '
        'tblRedTests
        '
        Me.tblRedTests.Name = "tblRedTests"
        Me.tblRedTests.Size = New System.Drawing.Size(121, 17)
        Me.tblRedTests.Text = "ToolStripStatusLabel1"
        '
        'tblTestsInQueue
        '
        Me.tblTestsInQueue.Name = "tblTestsInQueue"
        Me.tblTestsInQueue.Size = New System.Drawing.Size(121, 17)
        Me.tblTestsInQueue.Text = "ToolStripStatusLabel1"
        '
        'cmdFindTests
        '
        Me.cmdFindTests.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdFindTests.Location = New System.Drawing.Point(978, 424)
        Me.cmdFindTests.Name = "cmdFindTests"
        Me.cmdFindTests.Size = New System.Drawing.Size(75, 51)
        Me.cmdFindTests.TabIndex = 44
        Me.cmdFindTests.Tag = ""
        Me.cmdFindTests.Text = "&Find files without test"
        '
        'cmdCreateTest
        '
        Me.cmdCreateTest.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdCreateTest.Location = New System.Drawing.Point(978, 481)
        Me.cmdCreateTest.Name = "cmdCreateTest"
        Me.cmdCreateTest.Size = New System.Drawing.Size(75, 110)
        Me.cmdCreateTest.TabIndex = 44
        Me.cmdCreateTest.Tag = ""
        Me.cmdCreateTest.Text = "Cre&ate Test"
        '
        'frmMain
        '
        Me.AcceptButton = Me.cmdCreateTest
        Me.ClientSize = New System.Drawing.Size(1057, 667)
        Me.Controls.Add(Me.tblLayoutMain)
        Me.Controls.Add(Me.StatusStrip1)
        Me.Controls.Add(Me.cmdSave)
        Me.Controls.Add(Me.cmbCompiler)
        Me.Controls.Add(Me.cmdFindTests)
        Me.Controls.Add(Me.cmbVBCCompiler)
        Me.Controls.Add(Me.cmdCreateTest)
        Me.Controls.Add(Me.cmdVBCCompiler)
        Me.Controls.Add(Me.cmdReload)
        Me.Controls.Add(Me.mnuMain)
        Me.Controls.Add(Me.lblVBCCompiler)
        Me.Controls.Add(Me.cmdStop)
        Me.Controls.Add(Me.cmdRun)
        Me.Controls.Add(Me.cmdPause)
        Me.Controls.Add(Me.cmbBasepath)
        Me.Controls.Add(Me.cmdExit)
        Me.Controls.Add(Me.barProgress)
        Me.Controls.Add(Me.lblCompiler)
        Me.Controls.Add(Me.cmdCompiler)
        Me.Controls.Add(Me.lblBasepath)
        Me.Controls.Add(Me.cmdBasepath)
        Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.MinimumSize = New System.Drawing.Size(800, 550)
        Me.Name = "frmMain"
        Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
        Me.Text = "Regression Tester"
        Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
        Me.mnuMain.ResumeLayout(False)
        Me.mnuMain.PerformLayout()
        Me.cmnuTest.ResumeLayout(False)
        Me.tblLayoutMain.ResumeLayout(False)
        Me.tblLayoutMain.PerformLayout()
        Me.StatusStrip1.ResumeLayout(False)
        Me.StatusStrip1.PerformLayout()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents mnuToolsRefresh As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents cmbBasepath As System.Windows.Forms.ComboBox
    Friend WithEvents cmbCompiler As System.Windows.Forms.ComboBox
    Friend WithEvents cmdPause As System.Windows.Forms.Button
    Friend WithEvents cmdRun As System.Windows.Forms.Button
    Friend WithEvents cmdExit As System.Windows.Forms.Button
    Friend WithEvents cmdStop As System.Windows.Forms.Button
    Friend WithEvents barProgress As rt.EnhancedProgressBar
    Friend WithEvents cmnuViewCodeAndDebugTest As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents lblVBCCompiler As System.Windows.Forms.Label
    Friend WithEvents cmbVBCCompiler As System.Windows.Forms.ComboBox
    Friend WithEvents cmdVBCCompiler As System.Windows.Forms.Button
    Friend WithEvents cmdReload As System.Windows.Forms.Button
    Friend WithEvents CreateNewTestToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents ReflectToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents VBNCAssemblyToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents VBCAssemblyToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents BothAssembliesToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents NewTestToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents lstTests As System.Windows.Forms.ListView
    Friend WithEvents colName As System.Windows.Forms.ColumnHeader
    Friend WithEvents colResult As System.Windows.Forms.ColumnHeader
    Friend WithEvents colFailedVerification As System.Windows.Forms.ColumnHeader
    Friend WithEvents colDate As System.Windows.Forms.ColumnHeader
    Friend WithEvents ToolStripSeparator1 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents ToolStripSeparator3 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents ToolStripSeparator2 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents ViewQueuedTestsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents colCategory As System.Windows.Forms.ColumnHeader
    Friend WithEvents worker As System.ComponentModel.BackgroundWorker
    Friend WithEvents MakeErrorTestToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnuIldasm As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnuIldasmBoth As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents cmdSave As System.Windows.Forms.Button
    Friend WithEvents cmnuDeleteTest As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents txtTestMessage As System.Windows.Forms.TextBox
    Friend WithEvents colKnownFailureReason As System.Windows.Forms.ColumnHeader
    Friend WithEvents tblLayoutMain As System.Windows.Forms.TableLayoutPanel
    Friend WithEvents StatusStrip1 As System.Windows.Forms.StatusStrip
    Friend WithEvents tblNumberOfTests As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents tblTestsRun As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents tblExecutionTime As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents tblAverageExecutionTime As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents tblTestsNotRun As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents tblGreenTests As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents tblRedTests As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents tblTestsInQueue As System.Windows.Forms.ToolStripStatusLabel
    Friend WithEvents gridTestProperties As System.Windows.Forms.PropertyGrid
    Friend WithEvents txtFilter As System.Windows.Forms.TextBox
    Friend WithEvents mnuIldasmDump As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents cmdFindTests As System.Windows.Forms.Button
    Friend WithEvents cmdCreateTest As System.Windows.Forms.Button
End Class