File: frmMain.Designer.vb

package info (click to toggle)
mono-basic 2.6.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 18,852 kB
  • ctags: 809
  • sloc: cs: 8,852; makefile: 516; sh: 307
file content (1165 lines) | stat: -rwxr-xr-x 60,289 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
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
' 
' Visual Basic.Net COmpiler
' Copyright (C) 2004 - 2006 Rolf Bjarne Kvinge, rbjarnek at users.sourceforge.net
' 
' 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 mnuToolsChangeOutputToVerified 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.mnuToolsChangeOutputToVerified = 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.EditThisTestToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.ToolStripSeparator3 = New System.Windows.Forms.ToolStripSeparator
        Me.cmnuOutputToVerified = 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.CreateNewTestCopyingThisTestToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem = 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.cmdCopySummaryToClipboard = New System.Windows.Forms.Button
        Me.Label14 = New System.Windows.Forms.Label
        Me.Label16 = New System.Windows.Forms.Label
        Me.cmdVBCCompiler = New System.Windows.Forms.Button
        Me.cmdReload = New System.Windows.Forms.Button
        Me.tmrContinuous = New System.Windows.Forms.Timer(Me.components)
        Me.treeTests = New System.Windows.Forms.TreeView
        Me.cmnuTree = New System.Windows.Forms.ContextMenuStrip(Me.components)
        Me.RunTestsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.AllTestsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.FailedTestsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.SucceededTestsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.NotRunTestsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.RunTestsToolStripMenuItem1 = New System.Windows.Forms.ToolStripMenuItem
        Me.CreateNewTestInThisFolderToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.OnlyRefreshToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.tabMain = New System.Windows.Forms.TabControl
        Me.pageSummary = New System.Windows.Forms.TabPage
        Me.TableLayoutPanel2 = New System.Windows.Forms.TableLayoutPanel
        Me.txtRedTests = New System.Windows.Forms.Label
        Me.lblRedTests = New System.Windows.Forms.Label
        Me.lblGreenTests = New System.Windows.Forms.Label
        Me.lblYellowTests = New System.Windows.Forms.Label
        Me.txtGreenTests = New System.Windows.Forms.Label
        Me.txtYellowTests = New System.Windows.Forms.Label
        Me.txtQueue = New System.Windows.Forms.Label
        Me.lblQueue = New System.Windows.Forms.Label
        Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel
        Me.lblNumberOfTests = New System.Windows.Forms.Label
        Me.txtAverageExecutionTime = New System.Windows.Forms.Label
        Me.lblAverageExecutionTime = New System.Windows.Forms.Label
        Me.txtExecutionTime = New System.Windows.Forms.Label
        Me.lblTestsRun = New System.Windows.Forms.Label
        Me.txtNumberOfTests = New System.Windows.Forms.Label
        Me.txtTestsRun = New System.Windows.Forms.Label
        Me.lblExecutionTime = New System.Windows.Forms.Label
        Me.pageTests = New System.Windows.Forms.TabPage
        Me.lstTests = New System.Windows.Forms.ListView
        Me.colName = New System.Windows.Forms.ColumnHeader
        Me.colCompiler = New System.Windows.Forms.ColumnHeader
        Me.colResult = New System.Windows.Forms.ColumnHeader
        Me.colOldResult2 = New System.Windows.Forms.ColumnHeader
        Me.colFailedVerification = New System.Windows.Forms.ColumnHeader
        Me.colDate = New System.Windows.Forms.ColumnHeader
        Me.colPath = New System.Windows.Forms.ColumnHeader
        Me.pageTestResult = New System.Windows.Forms.TabPage
        Me.GroupBox1 = New System.Windows.Forms.GroupBox
        Me.gridTestProperties = New System.Windows.Forms.PropertyGrid
        Me.txtTestResult = New System.Windows.Forms.TextBox
        Me.Label13 = New System.Windows.Forms.Label
        Me.txtMessage = New System.Windows.Forms.TextBox
        Me.pageOldResults = New System.Windows.Forms.TabPage
        Me.txtOldResult = New System.Windows.Forms.TextBox
        Me.lstOldResults = New System.Windows.Forms.ListView
        Me.colOldResult = New System.Windows.Forms.ColumnHeader
        Me.colOldCompiler = New System.Windows.Forms.ColumnHeader
        Me.cmbCompiler = New System.Windows.Forms.ComboBox
        Me.cmbVBCCompiler = New System.Windows.Forms.ComboBox
        Me.cmbBasepath = New System.Windows.Forms.ComboBox
        Me.EnhancedProgressBar1 = New rt.EnhancedProgressBar
        Me.chkContinuous = New System.Windows.Forms.CheckBox
        Me.chkHosted = New System.Windows.Forms.CheckBox
        Me.chkDontTestIfNothingHasChanged = New System.Windows.Forms.CheckBox
        Me.cmdSelfTest = New System.Windows.Forms.Button
        Me.worker = New System.ComponentModel.BackgroundWorker
        Me.CreateKnownFailurestxtToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.mnuMain.SuspendLayout()
        Me.cmnuTest.SuspendLayout()
        Me.cmnuTree.SuspendLayout()
        Me.tabMain.SuspendLayout()
        Me.pageSummary.SuspendLayout()
        Me.TableLayoutPanel2.SuspendLayout()
        Me.TableLayoutPanel1.SuspendLayout()
        Me.pageTests.SuspendLayout()
        Me.pageTestResult.SuspendLayout()
        Me.GroupBox1.SuspendLayout()
        Me.pageOldResults.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(940, 24)
        Me.mnuMain.TabIndex = 35
        '
        'mnuTools
        '
        Me.mnuTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuToolsChangeOutputToVerified, Me.cmnuViewCode, Me.mnuToolsRefresh, Me.NewTestToolStripMenuItem, Me.ViewQueuedTestsToolStripMenuItem})
        Me.mnuTools.Name = "mnuTools"
        Me.mnuTools.Size = New System.Drawing.Size(44, 20)
        Me.mnuTools.Text = "Tools"
        '
        'mnuToolsChangeOutputToVerified
        '
        Me.mnuToolsChangeOutputToVerified.Name = "mnuToolsChangeOutputToVerified"
        Me.mnuToolsChangeOutputToVerified.Size = New System.Drawing.Size(284, 22)
        Me.mnuToolsChangeOutputToVerified.Text = "Change output xml files to verified xml files."
        '
        'cmnuViewCode
        '
        Me.cmnuViewCode.Name = "cmnuViewCode"
        Me.cmnuViewCode.Size = New System.Drawing.Size(284, 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(284, 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(284, 22)
        Me.NewTestToolStripMenuItem.Text = "New test"
        '
        'ViewQueuedTestsToolStripMenuItem
        '
        Me.ViewQueuedTestsToolStripMenuItem.Name = "ViewQueuedTestsToolStripMenuItem"
        Me.ViewQueuedTestsToolStripMenuItem.Size = New System.Drawing.Size(284, 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 = "&Base path:"
        '
        '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(913, 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(913, 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.EditThisTestToolStripMenuItem, Me.ToolStripSeparator3, Me.cmnuOutputToVerified, Me.ReflectToolStripMenuItem, Me.ToolStripSeparator2, Me.CreateNewTestToolStripMenuItem, Me.CreateNewTestCopyingThisTestToolStripMenuItem, Me.CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem, Me.MakeErrorTestToolStripMenuItem})
        Me.cmnuTest.Name = "cmnuTest"
        Me.cmnuTest.Size = New System.Drawing.Size(368, 264)
        '
        'cmnuRunTest
        '
        Me.cmnuRunTest.Name = "cmnuRunTest"
        Me.cmnuRunTest.Size = New System.Drawing.Size(367, 22)
        Me.cmnuRunTest.Text = "Run this test"
        '
        'ToolStripSeparator1
        '
        Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
        Me.ToolStripSeparator1.Size = New System.Drawing.Size(364, 6)
        '
        'cmnuViewCodeAndDebugTest
        '
        Me.cmnuViewCodeAndDebugTest.Name = "cmnuViewCodeAndDebugTest"
        Me.cmnuViewCodeAndDebugTest.Size = New System.Drawing.Size(367, 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(367, 22)
        Me.cmnuViewCode2.Text = "View code (external editor)"
        '
        'cmnuDebugTest
        '
        Me.cmnuDebugTest.Name = "cmnuDebugTest"
        Me.cmnuDebugTest.Size = New System.Drawing.Size(367, 22)
        Me.cmnuDebugTest.Text = "&Set this test to be debugged"
        '
        'EditThisTestToolStripMenuItem
        '
        Me.EditThisTestToolStripMenuItem.Name = "EditThisTestToolStripMenuItem"
        Me.EditThisTestToolStripMenuItem.Size = New System.Drawing.Size(367, 22)
        Me.EditThisTestToolStripMenuItem.Text = "Edit this test (internal editor)"
        '
        'ToolStripSeparator3
        '
        Me.ToolStripSeparator3.Name = "ToolStripSeparator3"
        Me.ToolStripSeparator3.Size = New System.Drawing.Size(364, 6)
        '
        'cmnuOutputToVerified
        '
        Me.cmnuOutputToVerified.Name = "cmnuOutputToVerified"
        Me.cmnuOutputToVerified.Size = New System.Drawing.Size(367, 22)
        Me.cmnuOutputToVerified.Text = "Change output files to verified files"
        '
        '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(367, 22)
        Me.ReflectToolStripMenuItem.Text = "Reflect"
        '
        'VBNCAssemblyToolStripMenuItem
        '
        Me.VBNCAssemblyToolStripMenuItem.Name = "VBNCAssemblyToolStripMenuItem"
        Me.VBNCAssemblyToolStripMenuItem.Size = New System.Drawing.Size(150, 22)
        Me.VBNCAssemblyToolStripMenuItem.Text = "VBNC assembly"
        '
        'VBCAssemblyToolStripMenuItem
        '
        Me.VBCAssemblyToolStripMenuItem.Name = "VBCAssemblyToolStripMenuItem"
        Me.VBCAssemblyToolStripMenuItem.Size = New System.Drawing.Size(150, 22)
        Me.VBCAssemblyToolStripMenuItem.Text = "VBC assembly"
        '
        'BothAssembliesToolStripMenuItem
        '
        Me.BothAssembliesToolStripMenuItem.Name = "BothAssembliesToolStripMenuItem"
        Me.BothAssembliesToolStripMenuItem.Size = New System.Drawing.Size(150, 22)
        Me.BothAssembliesToolStripMenuItem.Text = "Both assemblies"
        '
        'ToolStripSeparator2
        '
        Me.ToolStripSeparator2.Name = "ToolStripSeparator2"
        Me.ToolStripSeparator2.Size = New System.Drawing.Size(364, 6)
        '
        'CreateNewTestToolStripMenuItem
        '
        Me.CreateNewTestToolStripMenuItem.Name = "CreateNewTestToolStripMenuItem"
        Me.CreateNewTestToolStripMenuItem.Size = New System.Drawing.Size(367, 22)
        Me.CreateNewTestToolStripMenuItem.Text = "Create new test"
        '
        'CreateNewTestCopyingThisTestToolStripMenuItem
        '
        Me.CreateNewTestCopyingThisTestToolStripMenuItem.Name = "CreateNewTestCopyingThisTestToolStripMenuItem"
        Me.CreateNewTestCopyingThisTestToolStripMenuItem.Size = New System.Drawing.Size(367, 22)
        Me.CreateNewTestCopyingThisTestToolStripMenuItem.Text = "Create new test copying this test"
        '
        'CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem
        '
        Me.CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem.Name = "CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem"
        Me.CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem.Size = New System.Drawing.Size(367, 22)
        Me.CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem.Text = "Create new test using this test as base name"
        '
        'MakeErrorTestToolStripMenuItem
        '
        Me.MakeErrorTestToolStripMenuItem.Name = "MakeErrorTestToolStripMenuItem"
        Me.MakeErrorTestToolStripMenuItem.Size = New System.Drawing.Size(367, 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(863, 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(863, 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(863, 555)
        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(863, 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"
        '
        'cmdCopySummaryToClipboard
        '
        Me.cmdCopySummaryToClipboard.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdCopySummaryToClipboard.Location = New System.Drawing.Point(863, 522)
        Me.cmdCopySummaryToClipboard.Name = "cmdCopySummaryToClipboard"
        Me.cmdCopySummaryToClipboard.Size = New System.Drawing.Size(75, 25)
        Me.cmdCopySummaryToClipboard.TabIndex = 31
        Me.cmdCopySummaryToClipboard.Tag = ""
        Me.cmdCopySummaryToClipboard.Text = "Copy"
        '
        'Label14
        '
        Me.Label14.Location = New System.Drawing.Point(9, 122)
        Me.Label14.Name = "Label14"
        Me.Label14.Size = New System.Drawing.Size(236, 13)
        Me.Label14.TabIndex = 33
        Me.Label14.Text = "Tests:"
        '
        'Label16
        '
        Me.Label16.Location = New System.Drawing.Point(9, 82)
        Me.Label16.Name = "Label16"
        Me.Label16.Size = New System.Drawing.Size(100, 21)
        Me.Label16.TabIndex = 36
        Me.Label16.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(913, 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(863, 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"
        '
        'tmrContinuous
        '
        Me.tmrContinuous.Enabled = True
        Me.tmrContinuous.Interval = 1000
        '
        'treeTests
        '
        Me.treeTests.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
                    Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
        Me.treeTests.ContextMenuStrip = Me.cmnuTree
        Me.treeTests.HideSelection = False
        Me.treeTests.ImageIndex = 0
        Me.treeTests.ImageList = Me.lstImages
        Me.treeTests.Location = New System.Drawing.Point(10, 138)
        Me.treeTests.Name = "treeTests"
        Me.treeTests.SelectedImageIndex = 0
        Me.treeTests.Size = New System.Drawing.Size(233, 442)
        Me.treeTests.TabIndex = 42
        '
        'cmnuTree
        '
        Me.cmnuTree.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.RunTestsToolStripMenuItem, Me.CreateNewTestInThisFolderToolStripMenuItem, Me.OnlyRefreshToolStripMenuItem, Me.CreateKnownFailurestxtToolStripMenuItem})
        Me.cmnuTree.Name = "cmnuTree"
        Me.cmnuTree.Size = New System.Drawing.Size(215, 114)
        '
        'RunTestsToolStripMenuItem
        '
        Me.RunTestsToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.AllTestsToolStripMenuItem, Me.FailedTestsToolStripMenuItem, Me.SucceededTestsToolStripMenuItem, Me.NotRunTestsToolStripMenuItem, Me.RunTestsToolStripMenuItem1})
        Me.RunTestsToolStripMenuItem.Name = "RunTestsToolStripMenuItem"
        Me.RunTestsToolStripMenuItem.Size = New System.Drawing.Size(214, 22)
        Me.RunTestsToolStripMenuItem.Text = "&Run tests"
        '
        'AllTestsToolStripMenuItem
        '
        Me.AllTestsToolStripMenuItem.Name = "AllTestsToolStripMenuItem"
        Me.AllTestsToolStripMenuItem.Size = New System.Drawing.Size(153, 22)
        Me.AllTestsToolStripMenuItem.Text = "&All tests"
        '
        'FailedTestsToolStripMenuItem
        '
        Me.FailedTestsToolStripMenuItem.Name = "FailedTestsToolStripMenuItem"
        Me.FailedTestsToolStripMenuItem.Size = New System.Drawing.Size(153, 22)
        Me.FailedTestsToolStripMenuItem.Text = "&Failed tests"
        '
        'SucceededTestsToolStripMenuItem
        '
        Me.SucceededTestsToolStripMenuItem.Name = "SucceededTestsToolStripMenuItem"
        Me.SucceededTestsToolStripMenuItem.Size = New System.Drawing.Size(153, 22)
        Me.SucceededTestsToolStripMenuItem.Text = "&Succeeded tests"
        '
        'NotRunTestsToolStripMenuItem
        '
        Me.NotRunTestsToolStripMenuItem.Name = "NotRunTestsToolStripMenuItem"
        Me.NotRunTestsToolStripMenuItem.Size = New System.Drawing.Size(153, 22)
        Me.NotRunTestsToolStripMenuItem.Text = "&Not run tests"
        '
        'RunTestsToolStripMenuItem1
        '
        Me.RunTestsToolStripMenuItem1.Name = "RunTestsToolStripMenuItem1"
        Me.RunTestsToolStripMenuItem1.Size = New System.Drawing.Size(153, 22)
        Me.RunTestsToolStripMenuItem1.Text = "&Run tests"
        '
        'CreateNewTestInThisFolderToolStripMenuItem
        '
        Me.CreateNewTestInThisFolderToolStripMenuItem.Name = "CreateNewTestInThisFolderToolStripMenuItem"
        Me.CreateNewTestInThisFolderToolStripMenuItem.Size = New System.Drawing.Size(214, 22)
        Me.CreateNewTestInThisFolderToolStripMenuItem.Text = "Create new test in this folder"
        '
        'OnlyRefreshToolStripMenuItem
        '
        Me.OnlyRefreshToolStripMenuItem.Name = "OnlyRefreshToolStripMenuItem"
        Me.OnlyRefreshToolStripMenuItem.Size = New System.Drawing.Size(214, 22)
        Me.OnlyRefreshToolStripMenuItem.Text = "Only refresh"
        '
        'tabMain
        '
        Me.tabMain.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.tabMain.Controls.Add(Me.pageSummary)
        Me.tabMain.Controls.Add(Me.pageTests)
        Me.tabMain.Controls.Add(Me.pageTestResult)
        Me.tabMain.Controls.Add(Me.pageOldResults)
        Me.tabMain.Location = New System.Drawing.Point(259, 138)
        Me.tabMain.Name = "tabMain"
        Me.tabMain.SelectedIndex = 0
        Me.tabMain.Size = New System.Drawing.Size(598, 442)
        Me.tabMain.TabIndex = 43
        '
        'pageSummary
        '
        Me.pageSummary.Controls.Add(Me.TableLayoutPanel2)
        Me.pageSummary.Controls.Add(Me.TableLayoutPanel1)
        Me.pageSummary.Location = New System.Drawing.Point(4, 22)
        Me.pageSummary.Name = "pageSummary"
        Me.pageSummary.Padding = New System.Windows.Forms.Padding(3)
        Me.pageSummary.Size = New System.Drawing.Size(590, 416)
        Me.pageSummary.TabIndex = 0
        Me.pageSummary.Text = "Summary"
        Me.pageSummary.UseVisualStyleBackColor = True
        '
        'TableLayoutPanel2
        '
        Me.TableLayoutPanel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.TableLayoutPanel2.ColumnCount = 2
        Me.TableLayoutPanel2.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 75.0!))
        Me.TableLayoutPanel2.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel2.Controls.Add(Me.txtRedTests, 1, 2)
        Me.TableLayoutPanel2.Controls.Add(Me.lblRedTests, 0, 2)
        Me.TableLayoutPanel2.Controls.Add(Me.lblGreenTests, 0, 1)
        Me.TableLayoutPanel2.Controls.Add(Me.lblYellowTests, 0, 0)
        Me.TableLayoutPanel2.Controls.Add(Me.txtGreenTests, 1, 1)
        Me.TableLayoutPanel2.Controls.Add(Me.txtYellowTests, 1, 0)
        Me.TableLayoutPanel2.Controls.Add(Me.txtQueue, 1, 3)
        Me.TableLayoutPanel2.Controls.Add(Me.lblQueue, 0, 3)
        Me.TableLayoutPanel2.Location = New System.Drawing.Point(12, 167)
        Me.TableLayoutPanel2.Name = "TableLayoutPanel2"
        Me.TableLayoutPanel2.RowCount = 4
        Me.TableLayoutPanel2.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel2.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel2.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel2.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel2.Size = New System.Drawing.Size(572, 142)
        Me.TableLayoutPanel2.TabIndex = 6
        '
        'txtRedTests
        '
        Me.txtRedTests.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.txtRedTests.AutoSize = True
        Me.txtRedTests.Location = New System.Drawing.Point(432, 81)
        Me.txtRedTests.Name = "txtRedTests"
        Me.txtRedTests.Size = New System.Drawing.Size(0, 13)
        Me.txtRedTests.TabIndex = 7
        '
        'lblRedTests
        '
        Me.lblRedTests.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.lblRedTests.AutoSize = True
        Me.lblRedTests.Location = New System.Drawing.Point(3, 81)
        Me.lblRedTests.Name = "lblRedTests"
        Me.lblRedTests.Size = New System.Drawing.Size(57, 13)
        Me.lblRedTests.TabIndex = 6
        Me.lblRedTests.Text = "Red tests:"
        '
        'lblGreenTests
        '
        Me.lblGreenTests.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.lblGreenTests.AutoSize = True
        Me.lblGreenTests.Location = New System.Drawing.Point(3, 46)
        Me.lblGreenTests.Name = "lblGreenTests"
        Me.lblGreenTests.Size = New System.Drawing.Size(67, 13)
        Me.lblGreenTests.TabIndex = 0
        Me.lblGreenTests.Text = "Green tests:"
        '
        'lblYellowTests
        '
        Me.lblYellowTests.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.lblYellowTests.AutoSize = True
        Me.lblYellowTests.Location = New System.Drawing.Point(3, 11)
        Me.lblYellowTests.Name = "lblYellowTests"
        Me.lblYellowTests.Size = New System.Drawing.Size(75, 13)
        Me.lblYellowTests.TabIndex = 4
        Me.lblYellowTests.Text = "Tests not run:"
        '
        'txtGreenTests
        '
        Me.txtGreenTests.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.txtGreenTests.AutoSize = True
        Me.txtGreenTests.Location = New System.Drawing.Point(432, 46)
        Me.txtGreenTests.Name = "txtGreenTests"
        Me.txtGreenTests.Size = New System.Drawing.Size(0, 13)
        Me.txtGreenTests.TabIndex = 3
        '
        'txtYellowTests
        '
        Me.txtYellowTests.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.txtYellowTests.AutoSize = True
        Me.txtYellowTests.Location = New System.Drawing.Point(432, 11)
        Me.txtYellowTests.Name = "txtYellowTests"
        Me.txtYellowTests.Size = New System.Drawing.Size(0, 13)
        Me.txtYellowTests.TabIndex = 5
        '
        'txtQueue
        '
        Me.txtQueue.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.txtQueue.AutoSize = True
        Me.txtQueue.Location = New System.Drawing.Point(432, 117)
        Me.txtQueue.Name = "txtQueue"
        Me.txtQueue.Size = New System.Drawing.Size(0, 13)
        Me.txtQueue.TabIndex = 9
        '
        'lblQueue
        '
        Me.lblQueue.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.lblQueue.AutoSize = True
        Me.lblQueue.Location = New System.Drawing.Point(3, 117)
        Me.lblQueue.Name = "lblQueue"
        Me.lblQueue.Size = New System.Drawing.Size(81, 13)
        Me.lblQueue.TabIndex = 8
        Me.lblQueue.Text = "Tests in queue:"
        '
        'TableLayoutPanel1
        '
        Me.TableLayoutPanel1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.TableLayoutPanel1.ColumnCount = 2
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 75.0!))
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel1.Controls.Add(Me.lblNumberOfTests, 0, 0)
        Me.TableLayoutPanel1.Controls.Add(Me.txtAverageExecutionTime, 1, 3)
        Me.TableLayoutPanel1.Controls.Add(Me.lblAverageExecutionTime, 0, 3)
        Me.TableLayoutPanel1.Controls.Add(Me.txtExecutionTime, 1, 2)
        Me.TableLayoutPanel1.Controls.Add(Me.lblTestsRun, 0, 1)
        Me.TableLayoutPanel1.Controls.Add(Me.txtNumberOfTests, 1, 0)
        Me.TableLayoutPanel1.Controls.Add(Me.txtTestsRun, 1, 1)
        Me.TableLayoutPanel1.Controls.Add(Me.lblExecutionTime, 0, 2)
        Me.TableLayoutPanel1.Location = New System.Drawing.Point(12, 17)
        Me.TableLayoutPanel1.Name = "TableLayoutPanel1"
        Me.TableLayoutPanel1.RowCount = 4
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.0!))
        Me.TableLayoutPanel1.Size = New System.Drawing.Size(572, 144)
        Me.TableLayoutPanel1.TabIndex = 5
        '
        'lblNumberOfTests
        '
        Me.lblNumberOfTests.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.lblNumberOfTests.AutoSize = True
        Me.lblNumberOfTests.Location = New System.Drawing.Point(3, 11)
        Me.lblNumberOfTests.Name = "lblNumberOfTests"
        Me.lblNumberOfTests.Size = New System.Drawing.Size(114, 13)
        Me.lblNumberOfTests.TabIndex = 5
        Me.lblNumberOfTests.Text = "Total number of tests:"
        '
        'txtAverageExecutionTime
        '
        Me.txtAverageExecutionTime.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.txtAverageExecutionTime.AutoSize = True
        Me.txtAverageExecutionTime.Location = New System.Drawing.Point(432, 119)
        Me.txtAverageExecutionTime.Name = "txtAverageExecutionTime"
        Me.txtAverageExecutionTime.Size = New System.Drawing.Size(0, 13)
        Me.txtAverageExecutionTime.TabIndex = 7
        '
        'lblAverageExecutionTime
        '
        Me.lblAverageExecutionTime.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.lblAverageExecutionTime.AutoSize = True
        Me.lblAverageExecutionTime.Location = New System.Drawing.Point(3, 119)
        Me.lblAverageExecutionTime.Name = "lblAverageExecutionTime"
        Me.lblAverageExecutionTime.Size = New System.Drawing.Size(166, 13)
        Me.lblAverageExecutionTime.TabIndex = 6
        Me.lblAverageExecutionTime.Text = "Average execution time per test:"
        '
        'txtExecutionTime
        '
        Me.txtExecutionTime.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.txtExecutionTime.AutoSize = True
        Me.txtExecutionTime.Location = New System.Drawing.Point(432, 83)
        Me.txtExecutionTime.Name = "txtExecutionTime"
        Me.txtExecutionTime.Size = New System.Drawing.Size(0, 13)
        Me.txtExecutionTime.TabIndex = 5
        '
        'lblTestsRun
        '
        Me.lblTestsRun.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.lblTestsRun.AutoSize = True
        Me.lblTestsRun.Location = New System.Drawing.Point(3, 47)
        Me.lblTestsRun.Name = "lblTestsRun"
        Me.lblTestsRun.Size = New System.Drawing.Size(56, 13)
        Me.lblTestsRun.TabIndex = 1
        Me.lblTestsRun.Text = "Tests run:"
        '
        'txtNumberOfTests
        '
        Me.txtNumberOfTests.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.txtNumberOfTests.AutoSize = True
        Me.txtNumberOfTests.Location = New System.Drawing.Point(432, 11)
        Me.txtNumberOfTests.Name = "txtNumberOfTests"
        Me.txtNumberOfTests.Size = New System.Drawing.Size(0, 13)
        Me.txtNumberOfTests.TabIndex = 2
        '
        'txtTestsRun
        '
        Me.txtTestsRun.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.txtTestsRun.AutoSize = True
        Me.txtTestsRun.Location = New System.Drawing.Point(432, 47)
        Me.txtTestsRun.Name = "txtTestsRun"
        Me.txtTestsRun.Size = New System.Drawing.Size(0, 13)
        Me.txtTestsRun.TabIndex = 3
        '
        'lblExecutionTime
        '
        Me.lblExecutionTime.Anchor = System.Windows.Forms.AnchorStyles.Left
        Me.lblExecutionTime.AutoSize = True
        Me.lblExecutionTime.Location = New System.Drawing.Point(3, 83)
        Me.lblExecutionTime.Name = "lblExecutionTime"
        Me.lblExecutionTime.Size = New System.Drawing.Size(108, 13)
        Me.lblExecutionTime.TabIndex = 4
        Me.lblExecutionTime.Text = "Total execution time:"
        '
        'pageTests
        '
        Me.pageTests.Controls.Add(Me.lstTests)
        Me.pageTests.Location = New System.Drawing.Point(4, 22)
        Me.pageTests.Name = "pageTests"
        Me.pageTests.Padding = New System.Windows.Forms.Padding(3)
        Me.pageTests.Size = New System.Drawing.Size(590, 416)
        Me.pageTests.TabIndex = 2
        Me.pageTests.Text = "Tests"
        Me.pageTests.UseVisualStyleBackColor = True
        '
        'lstTests
        '
        Me.lstTests.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.colName, Me.colCompiler, Me.colResult, Me.colOldResult2, Me.colFailedVerification, Me.colDate, Me.colPath})
        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(584, 410)
        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
        '
        'colCompiler
        '
        Me.colCompiler.Text = "Compiler Version"
        Me.colCompiler.Width = 80
        '
        'colResult
        '
        Me.colResult.Text = "Result"
        Me.colResult.Width = 80
        '
        'colOldResult2
        '
        Me.colOldResult2.Text = "OldResult"
        Me.colOldResult2.Width = 83
        '
        'colFailedVerification
        '
        Me.colFailedVerification.Text = "Failed Verification"
        Me.colFailedVerification.Width = 80
        '
        'colDate
        '
        Me.colDate.Text = "Date"
        Me.colDate.Width = 80
        '
        'colPath
        '
        Me.colPath.Text = "Path"
        '
        'pageTestResult
        '
        Me.pageTestResult.Controls.Add(Me.GroupBox1)
        Me.pageTestResult.Location = New System.Drawing.Point(4, 22)
        Me.pageTestResult.Name = "pageTestResult"
        Me.pageTestResult.Padding = New System.Windows.Forms.Padding(3)
        Me.pageTestResult.Size = New System.Drawing.Size(590, 416)
        Me.pageTestResult.TabIndex = 1
        Me.pageTestResult.Text = "Test result"
        Me.pageTestResult.UseVisualStyleBackColor = True
        '
        'GroupBox1
        '
        Me.GroupBox1.Controls.Add(Me.gridTestProperties)
        Me.GroupBox1.Controls.Add(Me.txtTestResult)
        Me.GroupBox1.Controls.Add(Me.Label13)
        Me.GroupBox1.Controls.Add(Me.txtMessage)
        Me.GroupBox1.Dock = System.Windows.Forms.DockStyle.Fill
        Me.GroupBox1.Location = New System.Drawing.Point(3, 3)
        Me.GroupBox1.Name = "GroupBox1"
        Me.GroupBox1.Size = New System.Drawing.Size(584, 410)
        Me.GroupBox1.TabIndex = 35
        Me.GroupBox1.TabStop = False
        Me.GroupBox1.Text = "Test Summary:"
        '
        'gridTestProperties
        '
        Me.gridTestProperties.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.gridTestProperties.HelpVisible = False
        Me.gridTestProperties.Location = New System.Drawing.Point(6, 66)
        Me.gridTestProperties.Name = "gridTestProperties"
        Me.gridTestProperties.PropertySort = System.Windows.Forms.PropertySort.Alphabetical
        Me.gridTestProperties.Size = New System.Drawing.Size(570, 101)
        Me.gridTestProperties.TabIndex = 11
        Me.gridTestProperties.ToolbarVisible = False
        '
        'txtTestResult
        '
        Me.txtTestResult.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtTestResult.BackColor = System.Drawing.Color.White
        Me.txtTestResult.Location = New System.Drawing.Point(6, 40)
        Me.txtTestResult.Name = "txtTestResult"
        Me.txtTestResult.ReadOnly = True
        Me.txtTestResult.Size = New System.Drawing.Size(570, 21)
        Me.txtTestResult.TabIndex = 10
        '
        'Label13
        '
        Me.Label13.AutoSize = True
        Me.Label13.Location = New System.Drawing.Point(7, 24)
        Me.Label13.Name = "Label13"
        Me.Label13.Size = New System.Drawing.Size(62, 13)
        Me.Label13.TabIndex = 9
        Me.Label13.Text = "Test result:"
        '
        'txtMessage
        '
        Me.txtMessage.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.txtMessage.BackColor = System.Drawing.Color.White
        Me.txtMessage.Font = New System.Drawing.Font("Courier New", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.txtMessage.Location = New System.Drawing.Point(6, 173)
        Me.txtMessage.Multiline = True
        Me.txtMessage.Name = "txtMessage"
        Me.txtMessage.ReadOnly = True
        Me.txtMessage.ScrollBars = System.Windows.Forms.ScrollBars.Both
        Me.txtMessage.Size = New System.Drawing.Size(570, 231)
        Me.txtMessage.TabIndex = 8
        Me.txtMessage.WordWrap = False
        '
        'pageOldResults
        '
        Me.pageOldResults.Controls.Add(Me.txtOldResult)
        Me.pageOldResults.Controls.Add(Me.lstOldResults)
        Me.pageOldResults.Location = New System.Drawing.Point(4, 22)
        Me.pageOldResults.Name = "pageOldResults"
        Me.pageOldResults.Padding = New System.Windows.Forms.Padding(3)
        Me.pageOldResults.Size = New System.Drawing.Size(590, 416)
        Me.pageOldResults.TabIndex = 3
        Me.pageOldResults.Text = "Old results"
        Me.pageOldResults.UseVisualStyleBackColor = True
        '
        'txtOldResult
        '
        Me.txtOldResult.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.txtOldResult.Location = New System.Drawing.Point(3, 215)
        Me.txtOldResult.Multiline = True
        Me.txtOldResult.Name = "txtOldResult"
        Me.txtOldResult.ScrollBars = System.Windows.Forms.ScrollBars.Both
        Me.txtOldResult.Size = New System.Drawing.Size(584, 195)
        Me.txtOldResult.TabIndex = 1
        '
        'lstOldResults
        '
        Me.lstOldResults.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.lstOldResults.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.colOldResult, Me.colOldCompiler})
        Me.lstOldResults.FullRowSelect = True
        Me.lstOldResults.LargeImageList = Me.lstImages
        Me.lstOldResults.Location = New System.Drawing.Point(3, 6)
        Me.lstOldResults.Name = "lstOldResults"
        Me.lstOldResults.Size = New System.Drawing.Size(584, 203)
        Me.lstOldResults.SmallImageList = Me.lstImages
        Me.lstOldResults.StateImageList = Me.lstImages
        Me.lstOldResults.TabIndex = 0
        Me.lstOldResults.UseCompatibleStateImageBehavior = False
        Me.lstOldResults.View = System.Windows.Forms.View.Details
        '
        'colOldResult
        '
        Me.colOldResult.Text = "Result"
        Me.colOldResult.Width = 154
        '
        'colOldCompiler
        '
        Me.colOldCompiler.Text = "Compiler"
        Me.colOldCompiler.Width = 142
        '
        '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(778, 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(778, 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(778, 21)
        Me.cmbBasepath.TabIndex = 18
        '
        'EnhancedProgressBar1
        '
        Me.EnhancedProgressBar1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.EnhancedProgressBar1.Location = New System.Drawing.Point(10, 593)
        Me.EnhancedProgressBar1.Name = "EnhancedProgressBar1"
        Me.EnhancedProgressBar1.Size = New System.Drawing.Size(847, 27)
        Me.EnhancedProgressBar1.TabIndex = 0
        Me.EnhancedProgressBar1.ValueCount = 3
        '
        'chkContinuous
        '
        Me.chkContinuous.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.chkContinuous.AutoSize = True
        Me.chkContinuous.Checked = True
        Me.chkContinuous.CheckState = System.Windows.Forms.CheckState.Checked
        Me.chkContinuous.Location = New System.Drawing.Point(863, 242)
        Me.chkContinuous.Name = "chkContinuous"
        Me.chkContinuous.Size = New System.Drawing.Size(80, 17)
        Me.chkContinuous.TabIndex = 41
        Me.chkContinuous.Text = "Continuous"
        '
        'chkHosted
        '
        Me.chkHosted.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.chkHosted.AutoSize = True
        Me.chkHosted.Location = New System.Drawing.Point(863, 219)
        Me.chkHosted.Name = "chkHosted"
        Me.chkHosted.Size = New System.Drawing.Size(60, 17)
        Me.chkHosted.TabIndex = 40
        Me.chkHosted.Text = "Hosted"
        '
        'chkDontTestIfNothingHasChanged
        '
        Me.chkDontTestIfNothingHasChanged.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.chkDontTestIfNothingHasChanged.Location = New System.Drawing.Point(859, 265)
        Me.chkDontTestIfNothingHasChanged.Name = "chkDontTestIfNothingHasChanged"
        Me.chkDontTestIfNothingHasChanged.Size = New System.Drawing.Size(77, 61)
        Me.chkDontTestIfNothingHasChanged.TabIndex = 44
        Me.chkDontTestIfNothingHasChanged.Text = "Don't test if nothing has changed"
        Me.chkDontTestIfNothingHasChanged.UseVisualStyleBackColor = False
        '
        'cmdSelfTest
        '
        Me.cmdSelfTest.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cmdSelfTest.Location = New System.Drawing.Point(863, 373)
        Me.cmdSelfTest.Name = "cmdSelfTest"
        Me.cmdSelfTest.Size = New System.Drawing.Size(75, 25)
        Me.cmdSelfTest.TabIndex = 39
        Me.cmdSelfTest.Tag = ""
        Me.cmdSelfTest.Text = "Self test"
        '
        'worker
        '
        '
        'CreateKnownFailurestxtToolStripMenuItem
        '
        Me.CreateKnownFailurestxtToolStripMenuItem.Name = "CreateKnownFailurestxtToolStripMenuItem"
        Me.CreateKnownFailurestxtToolStripMenuItem.Size = New System.Drawing.Size(214, 22)
        Me.CreateKnownFailurestxtToolStripMenuItem.Text = "Create KnownFailures.txt"
        '
        'frmMain
        '
        Me.ClientSize = New System.Drawing.Size(940, 621)
        Me.Controls.Add(Me.chkContinuous)
        Me.Controls.Add(Me.treeTests)
        Me.Controls.Add(Me.chkHosted)
        Me.Controls.Add(Me.tabMain)
        Me.Controls.Add(Me.cmbCompiler)
        Me.Controls.Add(Me.cmbVBCCompiler)
        Me.Controls.Add(Me.cmdVBCCompiler)
        Me.Controls.Add(Me.cmdReload)
        Me.Controls.Add(Me.mnuMain)
        Me.Controls.Add(Me.cmdSelfTest)
        Me.Controls.Add(Me.Label16)
        Me.Controls.Add(Me.cmdCopySummaryToClipboard)
        Me.Controls.Add(Me.cmdExit)
        Me.Controls.Add(Me.chkDontTestIfNothingHasChanged)
        Me.Controls.Add(Me.cmdStop)
        Me.Controls.Add(Me.cmdRun)
        Me.Controls.Add(Me.EnhancedProgressBar1)
        Me.Controls.Add(Me.cmdPause)
        Me.Controls.Add(Me.cmbBasepath)
        Me.Controls.Add(Me.lblCompiler)
        Me.Controls.Add(Me.cmdCompiler)
        Me.Controls.Add(Me.lblBasepath)
        Me.Controls.Add(Me.Label14)
        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.cmnuTree.ResumeLayout(False)
        Me.tabMain.ResumeLayout(False)
        Me.pageSummary.ResumeLayout(False)
        Me.TableLayoutPanel2.ResumeLayout(False)
        Me.TableLayoutPanel2.PerformLayout()
        Me.TableLayoutPanel1.ResumeLayout(False)
        Me.TableLayoutPanel1.PerformLayout()
        Me.pageTests.ResumeLayout(False)
        Me.pageTestResult.ResumeLayout(False)
        Me.GroupBox1.ResumeLayout(False)
        Me.GroupBox1.PerformLayout()
        Me.pageOldResults.ResumeLayout(False)
        Me.pageOldResults.PerformLayout()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents cmnuOutputToVerified As System.Windows.Forms.ToolStripMenuItem
    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 EnhancedProgressBar1 As rt.EnhancedProgressBar
    Friend WithEvents cmnuViewCodeAndDebugTest As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents cmdCopySummaryToClipboard As System.Windows.Forms.Button
    Friend WithEvents Label14 As System.Windows.Forms.Label
    Friend WithEvents Label16 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 CreateNewTestCopyingThisTestToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents CreateNewTestToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents EditThisTestToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents chkHosted As System.Windows.Forms.CheckBox
    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 chkContinuous As System.Windows.Forms.CheckBox
    Friend WithEvents tmrContinuous As System.Windows.Forms.Timer
    Friend WithEvents NewTestToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents CreateNewTestUsingThisTestAsBaseNameToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents treeTests As System.Windows.Forms.TreeView
    Friend WithEvents tabMain As System.Windows.Forms.TabControl
    Friend WithEvents pageSummary As System.Windows.Forms.TabPage
    Friend WithEvents pageTestResult As System.Windows.Forms.TabPage
    Friend WithEvents pageTests As System.Windows.Forms.TabPage
    Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
    Friend WithEvents gridTestProperties As System.Windows.Forms.PropertyGrid
    Friend WithEvents txtTestResult As System.Windows.Forms.TextBox
    Friend WithEvents Label13 As System.Windows.Forms.Label
    Friend WithEvents txtMessage As System.Windows.Forms.TextBox
    Friend WithEvents lstTests As System.Windows.Forms.ListView
    Friend WithEvents TableLayoutPanel2 As System.Windows.Forms.TableLayoutPanel
    Friend WithEvents txtRedTests As System.Windows.Forms.Label
    Friend WithEvents lblRedTests As System.Windows.Forms.Label
    Friend WithEvents lblGreenTests As System.Windows.Forms.Label
    Friend WithEvents lblYellowTests As System.Windows.Forms.Label
    Friend WithEvents txtGreenTests As System.Windows.Forms.Label
    Friend WithEvents txtYellowTests As System.Windows.Forms.Label
    Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel
    Friend WithEvents lblNumberOfTests As System.Windows.Forms.Label
    Friend WithEvents txtAverageExecutionTime As System.Windows.Forms.Label
    Friend WithEvents lblAverageExecutionTime As System.Windows.Forms.Label
    Friend WithEvents txtExecutionTime As System.Windows.Forms.Label
    Friend WithEvents lblTestsRun As System.Windows.Forms.Label
    Friend WithEvents txtNumberOfTests As System.Windows.Forms.Label
    Friend WithEvents txtTestsRun As System.Windows.Forms.Label
    Friend WithEvents lblExecutionTime As System.Windows.Forms.Label
    Friend WithEvents colName As System.Windows.Forms.ColumnHeader
    Friend WithEvents colCompiler 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 cmnuTree As System.Windows.Forms.ContextMenuStrip
    Friend WithEvents RunTestsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents AllTestsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents FailedTestsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents SucceededTestsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    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 CreateNewTestInThisFolderToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents ViewQueuedTestsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents NotRunTestsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents RunTestsToolStripMenuItem1 As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents txtQueue As System.Windows.Forms.Label
    Friend WithEvents lblQueue As System.Windows.Forms.Label
    Friend WithEvents colPath As System.Windows.Forms.ColumnHeader
    Friend WithEvents chkDontTestIfNothingHasChanged As System.Windows.Forms.CheckBox
    Friend WithEvents OnlyRefreshToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents pageOldResults As System.Windows.Forms.TabPage
    Friend WithEvents lstOldResults As System.Windows.Forms.ListView
    Friend WithEvents colOldResult As System.Windows.Forms.ColumnHeader
    Friend WithEvents colOldCompiler As System.Windows.Forms.ColumnHeader
    Friend WithEvents txtOldResult As System.Windows.Forms.TextBox
    Friend WithEvents colOldResult2 As System.Windows.Forms.ColumnHeader
    Friend WithEvents cmdSelfTest As System.Windows.Forms.Button
    Friend WithEvents worker As System.ComponentModel.BackgroundWorker
    Friend WithEvents MakeErrorTestToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents CreateKnownFailurestxtToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
End Class