-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathForm1.Designer.vb
More file actions
903 lines (898 loc) · 41.3 KB
/
Copy pathForm1.Designer.vb
File metadata and controls
903 lines (898 loc) · 41.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
Inherits MetroFramework.Forms.MetroForm
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form1))
Me.ListView1 = New System.Windows.Forms.ListView()
Me.ContextMenuStrip2 = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.ClearItemListToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.Button1 = New System.Windows.Forms.Button()
Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog()
Me.Button2 = New System.Windows.Forms.Button()
Me.SaveFileDialog1 = New System.Windows.Forms.SaveFileDialog()
Me.Button3 = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.ContextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.DonateToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.VisualSoftCorpToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.ASV93ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.BackgroundWorker1 = New System.ComponentModel.BackgroundWorker()
Me.Button4 = New System.Windows.Forms.Button()
Me.Button5 = New System.Windows.Forms.Button()
Me.Panel1 = New System.Windows.Forms.Panel()
Me.Button9 = New System.Windows.Forms.Button()
Me.Button7 = New System.Windows.Forms.Button()
Me.Button6 = New System.Windows.Forms.Button()
Me.Label2 = New System.Windows.Forms.Label()
Me.CheckBox1 = New System.Windows.Forms.CheckBox()
Me.Button8 = New System.Windows.Forms.Button()
Me.Button10 = New System.Windows.Forms.Button()
Me.ListView2 = New System.Windows.Forms.ListView()
Me.MetroTabControl1 = New MetroFramework.Controls.MetroTabControl()
Me.MetroTabPage1 = New MetroFramework.Controls.MetroTabPage()
Me.lastloadedxrm = New System.Windows.Forms.Label()
Me.MetroTabPage4 = New MetroFramework.Controls.MetroTabPage()
Me.MetroButton11 = New MetroFramework.Controls.MetroButton()
Me.Label3 = New System.Windows.Forms.Label()
Me.PictureBox14 = New System.Windows.Forms.PictureBox()
Me.PictureBox13 = New System.Windows.Forms.PictureBox()
Me.MetroLabel11 = New MetroFramework.Controls.MetroLabel()
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
Me.label8 = New MetroFramework.Controls.MetroLabel()
Me.linklabel1 = New MetroFramework.Controls.MetroLink()
Me.MetroTabPage5 = New MetroFramework.Controls.MetroTabPage()
Me.ListView3 = New System.Windows.Forms.ListView()
Me.MetroTabPage2 = New MetroFramework.Controls.MetroTabPage()
Me.MetroTabPage6 = New MetroFramework.Controls.MetroTabPage()
Me.ListView4 = New System.Windows.Forms.ListView()
Me.MetroTabPage7 = New MetroFramework.Controls.MetroTabPage()
Me.ListView6 = New System.Windows.Forms.ListView()
Me.ListView5 = New System.Windows.Forms.ListView()
Me.MetroTabPage3 = New MetroFramework.Controls.MetroTabPage()
Me.CheckBox4 = New MetroFramework.Controls.MetroCheckBox()
Me.CheckBox3 = New MetroFramework.Controls.MetroCheckBox()
Me.CheckBox2 = New MetroFramework.Controls.MetroCheckBox()
Me.Panel2 = New System.Windows.Forms.Panel()
Me.PictureBox2 = New System.Windows.Forms.PictureBox()
Me.PictureBox10 = New System.Windows.Forms.PictureBox()
Me.PictureBox4 = New System.Windows.Forms.PictureBox()
Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.Button11 = New System.Windows.Forms.Button()
Me.Button12 = New System.Windows.Forms.Button()
Me.Timer2 = New System.Windows.Forms.Timer(Me.components)
Me.Button13 = New System.Windows.Forms.Button()
Me.Button14 = New System.Windows.Forms.Button()
Me.MetroProgressSpinner1 = New MetroFramework.Controls.MetroProgressSpinner()
Me.Panel3 = New System.Windows.Forms.Panel()
Me.MetroLabel1 = New MetroFramework.Controls.MetroLabel()
Me.Timer3 = New System.Windows.Forms.Timer(Me.components)
Me.exporttoxlsworker = New System.ComponentModel.BackgroundWorker()
Me.ContextMenuStrip2.SuspendLayout()
Me.ContextMenuStrip1.SuspendLayout()
Me.Panel1.SuspendLayout()
Me.MetroTabControl1.SuspendLayout()
Me.MetroTabPage1.SuspendLayout()
Me.MetroTabPage4.SuspendLayout()
CType(Me.PictureBox14, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox13, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.MetroTabPage5.SuspendLayout()
Me.MetroTabPage2.SuspendLayout()
Me.MetroTabPage6.SuspendLayout()
Me.MetroTabPage7.SuspendLayout()
Me.MetroTabPage3.SuspendLayout()
Me.Panel2.SuspendLayout()
CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox10, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox4, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel3.SuspendLayout()
Me.SuspendLayout()
'
'ListView1
'
Me.ListView1.ContextMenuStrip = Me.ContextMenuStrip2
Me.ListView1.FullRowSelect = True
Me.ListView1.GridLines = True
Me.ListView1.Location = New System.Drawing.Point(3, 5)
Me.ListView1.Name = "ListView1"
Me.ListView1.Size = New System.Drawing.Size(970, 292)
Me.ListView1.TabIndex = 0
Me.ListView1.UseCompatibleStateImageBehavior = False
Me.ListView1.View = System.Windows.Forms.View.Details
'
'ContextMenuStrip2
'
Me.ContextMenuStrip2.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ClearItemListToolStripMenuItem})
Me.ContextMenuStrip2.Name = "ContextMenuStrip2"
Me.ContextMenuStrip2.Size = New System.Drawing.Size(147, 26)
'
'ClearItemListToolStripMenuItem
'
Me.ClearItemListToolStripMenuItem.Name = "ClearItemListToolStripMenuItem"
Me.ClearItemListToolStripMenuItem.Size = New System.Drawing.Size(146, 22)
Me.ClearItemListToolStripMenuItem.Text = "Clear item list"
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(19, 512)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(109, 23)
Me.Button1.TabIndex = 1
Me.Button1.Text = "Load File"
Me.Button1.UseVisualStyleBackColor = True
Me.Button1.Visible = False
'
'OpenFileDialog1
'
Me.OpenFileDialog1.Filter = "XrML Digital License|*.xrm-ms;*.xrm;*.xml"
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(134, 512)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(107, 23)
Me.Button2.TabIndex = 3
Me.Button2.Text = "Export to Excel"
Me.Button2.UseVisualStyleBackColor = True
'
'SaveFileDialog1
'
Me.SaveFileDialog1.Filter = "Excel Workbook|*.xlsx"
'
'Button3
'
Me.Button3.Location = New System.Drawing.Point(882, 512)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(107, 23)
Me.Button3.TabIndex = 4
Me.Button3.Text = "Exit"
Me.Button3.UseVisualStyleBackColor = True
'
'Label1
'
Me.Label1.ContextMenuStrip = Me.ContextMenuStrip1
Me.Label1.Cursor = System.Windows.Forms.Cursors.Hand
Me.Label1.Font = New System.Drawing.Font("Segoe UI", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.Location = New System.Drawing.Point(247, 512)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(516, 23)
Me.Label1.TabIndex = 5
Me.Label1.Text = "Created by ASV93 // PKEYCONFIG (C) 2013 Visual Software"
Me.Label1.TextAlign = System.Drawing.ContentAlignment.TopCenter
'
'ContextMenuStrip1
'
Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.DonateToolStripMenuItem, Me.VisualSoftCorpToolStripMenuItem, Me.ASV93ToolStripMenuItem})
Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
Me.ContextMenuStrip1.Size = New System.Drawing.Size(164, 70)
'
'DonateToolStripMenuItem
'
Me.DonateToolStripMenuItem.Name = "DonateToolStripMenuItem"
Me.DonateToolStripMenuItem.Size = New System.Drawing.Size(163, 22)
Me.DonateToolStripMenuItem.Text = "Donate"
'
'VisualSoftCorpToolStripMenuItem
'
Me.VisualSoftCorpToolStripMenuItem.Name = "VisualSoftCorpToolStripMenuItem"
Me.VisualSoftCorpToolStripMenuItem.Size = New System.Drawing.Size(163, 22)
Me.VisualSoftCorpToolStripMenuItem.Text = "@VisualSoftCorp"
'
'ASV93ToolStripMenuItem
'
Me.ASV93ToolStripMenuItem.Name = "ASV93ToolStripMenuItem"
Me.ASV93ToolStripMenuItem.Size = New System.Drawing.Size(163, 22)
Me.ASV93ToolStripMenuItem.Text = "@ASV93"
'
'Timer1
'
Me.Timer1.Enabled = True
Me.Timer1.Interval = 5000
'
'BackgroundWorker1
'
'
'Button4
'
Me.Button4.Location = New System.Drawing.Point(769, 512)
Me.Button4.Name = "Button4"
Me.Button4.Size = New System.Drawing.Size(107, 23)
Me.Button4.TabIndex = 7
Me.Button4.Text = "Options"
Me.Button4.UseVisualStyleBackColor = True
'
'Button5
'
Me.Button5.Location = New System.Drawing.Point(410, 34)
Me.Button5.Name = "Button5"
Me.Button5.Size = New System.Drawing.Size(109, 23)
Me.Button5.TabIndex = 8
Me.Button5.Text = "Load File PKEY"
Me.Button5.UseVisualStyleBackColor = True
Me.Button5.Visible = False
'
'Panel1
'
Me.Panel1.Controls.Add(Me.Button9)
Me.Panel1.Controls.Add(Me.Button7)
Me.Panel1.Controls.Add(Me.Button6)
Me.Panel1.Controls.Add(Me.Label2)
Me.Panel1.Controls.Add(Me.CheckBox1)
Me.Panel1.Location = New System.Drawing.Point(590, 21)
Me.Panel1.Name = "Panel1"
Me.Panel1.Size = New System.Drawing.Size(376, 185)
Me.Panel1.TabIndex = 9
Me.Panel1.Visible = False
'
'Button9
'
Me.Button9.Enabled = False
Me.Button9.Location = New System.Drawing.Point(142, 147)
Me.Button9.Name = "Button9"
Me.Button9.Size = New System.Drawing.Size(124, 23)
Me.Button9.TabIndex = 13
Me.Button9.Text = "Clear Item list"
Me.Button9.UseVisualStyleBackColor = True
'
'Button7
'
Me.Button7.Location = New System.Drawing.Point(16, 147)
Me.Button7.Name = "Button7"
Me.Button7.Size = New System.Drawing.Size(120, 23)
Me.Button7.TabIndex = 10
Me.Button7.Text = "Check for Updates"
Me.Button7.UseVisualStyleBackColor = True
'
'Button6
'
Me.Button6.Location = New System.Drawing.Point(272, 147)
Me.Button6.Name = "Button6"
Me.Button6.Size = New System.Drawing.Size(92, 23)
Me.Button6.TabIndex = 10
Me.Button6.Text = "Close"
Me.Button6.UseVisualStyleBackColor = True
'
'Label2
'
Me.Label2.ContextMenuStrip = Me.ContextMenuStrip1
Me.Label2.Cursor = System.Windows.Forms.Cursors.Hand
Me.Label2.Font = New System.Drawing.Font("Segoe UI", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label2.Location = New System.Drawing.Point(12, 11)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(69, 23)
Me.Label2.TabIndex = 6
Me.Label2.Text = "Options"
Me.Label2.TextAlign = System.Drawing.ContentAlignment.TopCenter
'
'CheckBox1
'
Me.CheckBox1.AutoSize = True
Me.CheckBox1.BackColor = System.Drawing.Color.Transparent
Me.CheckBox1.Location = New System.Drawing.Point(58, 75)
Me.CheckBox1.Name = "CheckBox1"
Me.CheckBox1.Size = New System.Drawing.Size(265, 17)
Me.CheckBox1.TabIndex = 11
Me.CheckBox1.Text = "Don't ignore duplicate values (PKeyConfig tab)"
Me.CheckBox1.UseVisualStyleBackColor = False
Me.CheckBox1.Visible = False
'
'Button8
'
Me.Button8.Location = New System.Drawing.Point(637, 34)
Me.Button8.Name = "Button8"
Me.Button8.Size = New System.Drawing.Size(173, 23)
Me.Button8.TabIndex = 10
Me.Button8.Text = "Load File INFORMATION"
Me.Button8.UseVisualStyleBackColor = True
Me.Button8.Visible = False
'
'Button10
'
Me.Button10.Location = New System.Drawing.Point(816, 34)
Me.Button10.Name = "Button10"
Me.Button10.Size = New System.Drawing.Size(173, 23)
Me.Button10.TabIndex = 11
Me.Button10.Text = "Load File POLICIES"
Me.Button10.UseVisualStyleBackColor = True
Me.Button10.Visible = False
'
'ListView2
'
Me.ListView2.ContextMenuStrip = Me.ContextMenuStrip2
Me.ListView2.FullRowSelect = True
Me.ListView2.GridLines = True
Me.ListView2.Location = New System.Drawing.Point(3, 5)
Me.ListView2.Name = "ListView2"
Me.ListView2.Size = New System.Drawing.Size(970, 292)
Me.ListView2.TabIndex = 1
Me.ListView2.UseCompatibleStateImageBehavior = False
Me.ListView2.View = System.Windows.Forms.View.Details
'
'MetroTabControl1
'
Me.MetroTabControl1.Controls.Add(Me.MetroTabPage1)
Me.MetroTabControl1.Controls.Add(Me.MetroTabPage5)
Me.MetroTabControl1.Controls.Add(Me.MetroTabPage2)
Me.MetroTabControl1.Controls.Add(Me.MetroTabPage6)
Me.MetroTabControl1.Controls.Add(Me.MetroTabPage7)
Me.MetroTabControl1.Controls.Add(Me.MetroTabPage3)
Me.MetroTabControl1.Controls.Add(Me.MetroTabPage4)
Me.MetroTabControl1.Location = New System.Drawing.Point(12, 63)
Me.MetroTabControl1.Name = "MetroTabControl1"
Me.MetroTabControl1.SelectedIndex = 5
Me.MetroTabControl1.Size = New System.Drawing.Size(987, 339)
Me.MetroTabControl1.TabIndex = 13
Me.MetroTabControl1.UseSelectable = True
'
'MetroTabPage1
'
Me.MetroTabPage1.Controls.Add(Me.lastloadedxrm)
Me.MetroTabPage1.Controls.Add(Me.ListView1)
Me.MetroTabPage1.HorizontalScrollbarBarColor = True
Me.MetroTabPage1.HorizontalScrollbarHighlightOnWheel = False
Me.MetroTabPage1.HorizontalScrollbarSize = 10
Me.MetroTabPage1.Location = New System.Drawing.Point(4, 38)
Me.MetroTabPage1.Name = "MetroTabPage1"
Me.MetroTabPage1.Size = New System.Drawing.Size(979, 297)
Me.MetroTabPage1.TabIndex = 0
Me.MetroTabPage1.Text = "PKeyConfig"
Me.MetroTabPage1.VerticalScrollbarBarColor = True
Me.MetroTabPage1.VerticalScrollbarHighlightOnWheel = False
Me.MetroTabPage1.VerticalScrollbarSize = 10
'
'lastloadedxrm
'
Me.lastloadedxrm.AutoSize = True
Me.lastloadedxrm.Font = New System.Drawing.Font("Segoe UI", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.lastloadedxrm.Location = New System.Drawing.Point(7, 267)
Me.lastloadedxrm.Name = "lastloadedxrm"
Me.lastloadedxrm.Size = New System.Drawing.Size(29, 21)
Me.lastloadedxrm.TabIndex = 2
Me.lastloadedxrm.Text = "c:\"
Me.lastloadedxrm.Visible = False
'
'MetroTabPage4
'
Me.MetroTabPage4.Controls.Add(Me.MetroButton11)
Me.MetroTabPage4.Controls.Add(Me.Label3)
Me.MetroTabPage4.Controls.Add(Me.PictureBox14)
Me.MetroTabPage4.Controls.Add(Me.PictureBox13)
Me.MetroTabPage4.Controls.Add(Me.MetroLabel11)
Me.MetroTabPage4.Controls.Add(Me.PictureBox1)
Me.MetroTabPage4.Controls.Add(Me.label8)
Me.MetroTabPage4.Controls.Add(Me.linklabel1)
Me.MetroTabPage4.HorizontalScrollbarBarColor = True
Me.MetroTabPage4.HorizontalScrollbarHighlightOnWheel = False
Me.MetroTabPage4.HorizontalScrollbarSize = 10
Me.MetroTabPage4.Location = New System.Drawing.Point(4, 38)
Me.MetroTabPage4.Name = "MetroTabPage4"
Me.MetroTabPage4.Size = New System.Drawing.Size(979, 297)
Me.MetroTabPage4.TabIndex = 3
Me.MetroTabPage4.Text = "About"
Me.MetroTabPage4.VerticalScrollbarBarColor = True
Me.MetroTabPage4.VerticalScrollbarHighlightOnWheel = False
Me.MetroTabPage4.VerticalScrollbarSize = 10
'
'MetroButton11
'
Me.MetroButton11.Location = New System.Drawing.Point(811, 68)
Me.MetroButton11.Name = "MetroButton11"
Me.MetroButton11.Size = New System.Drawing.Size(164, 23)
Me.MetroButton11.TabIndex = 43
Me.MetroButton11.Text = "Check for Updates"
Me.MetroButton11.UseSelectable = True
Me.MetroButton11.Visible = False
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.BackColor = System.Drawing.Color.Transparent
Me.Label3.Font = New System.Drawing.Font("Segoe UI Light", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label3.Location = New System.Drawing.Point(7, 9)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(168, 17)
Me.Label3.TabIndex = 42
Me.Label3.Text = "Registered to: Visual Software"
'
'PictureBox14
'
Me.PictureBox14.BackColor = System.Drawing.Color.Transparent
Me.PictureBox14.Cursor = System.Windows.Forms.Cursors.Hand
Me.PictureBox14.ForeColor = System.Drawing.Color.Black
Me.PictureBox14.Image = CType(resources.GetObject("PictureBox14.Image"), System.Drawing.Image)
Me.PictureBox14.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.PictureBox14.Location = New System.Drawing.Point(801, 246)
Me.PictureBox14.Name = "PictureBox14"
Me.PictureBox14.Size = New System.Drawing.Size(171, 30)
Me.PictureBox14.TabIndex = 41
Me.PictureBox14.TabStop = False
'
'PictureBox13
'
Me.PictureBox13.BackColor = System.Drawing.Color.Transparent
Me.PictureBox13.Cursor = System.Windows.Forms.Cursors.Hand
Me.PictureBox13.ForeColor = System.Drawing.Color.Black
Me.PictureBox13.Image = CType(resources.GetObject("PictureBox13.Image"), System.Drawing.Image)
Me.PictureBox13.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.PictureBox13.Location = New System.Drawing.Point(811, 29)
Me.PictureBox13.Name = "PictureBox13"
Me.PictureBox13.Size = New System.Drawing.Size(164, 30)
Me.PictureBox13.TabIndex = 40
Me.PictureBox13.TabStop = False
'
'MetroLabel11
'
Me.MetroLabel11.AutoSize = True
Me.MetroLabel11.Location = New System.Drawing.Point(861, 224)
Me.MetroLabel11.Name = "MetroLabel11"
Me.MetroLabel11.Size = New System.Drawing.Size(116, 19)
Me.MetroLabel11.TabIndex = 39
Me.MetroLabel11.Text = "Created by ASV93"
'
'PictureBox1
'
Me.PictureBox1.BackColor = System.Drawing.Color.Transparent
Me.PictureBox1.ForeColor = System.Drawing.Color.Black
Me.PictureBox1.Image = CType(resources.GetObject("PictureBox1.Image"), System.Drawing.Image)
Me.PictureBox1.ImeMode = System.Windows.Forms.ImeMode.NoControl
Me.PictureBox1.Location = New System.Drawing.Point(7, 212)
Me.PictureBox1.Name = "PictureBox1"
Me.PictureBox1.Size = New System.Drawing.Size(92, 97)
Me.PictureBox1.TabIndex = 38
Me.PictureBox1.TabStop = False
'
'label8
'
Me.label8.FontSize = MetroFramework.MetroLabelSize.Small
Me.label8.Location = New System.Drawing.Point(598, 11)
Me.label8.Name = "label8"
Me.label8.Size = New System.Drawing.Size(379, 15)
Me.label8.TabIndex = 37
Me.label8.Text = "Version 1.0.0.0"
Me.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight
'
'linklabel1
'
Me.linklabel1.Cursor = System.Windows.Forms.Cursors.Hand
Me.linklabel1.Location = New System.Drawing.Point(674, 276)
Me.linklabel1.Name = "linklabel1"
Me.linklabel1.Size = New System.Drawing.Size(299, 23)
Me.linklabel1.TabIndex = 36
Me.linklabel1.Text = "MetroLink1"
Me.linklabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.linklabel1.UseSelectable = True
'
'MetroTabPage5
'
Me.MetroTabPage5.Controls.Add(Me.ListView3)
Me.MetroTabPage5.HorizontalScrollbarBarColor = True
Me.MetroTabPage5.HorizontalScrollbarHighlightOnWheel = False
Me.MetroTabPage5.HorizontalScrollbarSize = 10
Me.MetroTabPage5.Location = New System.Drawing.Point(4, 38)
Me.MetroTabPage5.Name = "MetroTabPage5"
Me.MetroTabPage5.Size = New System.Drawing.Size(979, 297)
Me.MetroTabPage5.TabIndex = 4
Me.MetroTabPage5.Text = "Information"
Me.MetroTabPage5.VerticalScrollbarBarColor = True
Me.MetroTabPage5.VerticalScrollbarHighlightOnWheel = False
Me.MetroTabPage5.VerticalScrollbarSize = 10
'
'ListView3
'
Me.ListView3.ContextMenuStrip = Me.ContextMenuStrip2
Me.ListView3.FullRowSelect = True
Me.ListView3.GridLines = True
Me.ListView3.Location = New System.Drawing.Point(3, 5)
Me.ListView3.Name = "ListView3"
Me.ListView3.Size = New System.Drawing.Size(970, 292)
Me.ListView3.TabIndex = 2
Me.ListView3.UseCompatibleStateImageBehavior = False
Me.ListView3.View = System.Windows.Forms.View.Details
'
'MetroTabPage2
'
Me.MetroTabPage2.Controls.Add(Me.ListView2)
Me.MetroTabPage2.HorizontalScrollbarBarColor = True
Me.MetroTabPage2.HorizontalScrollbarHighlightOnWheel = False
Me.MetroTabPage2.HorizontalScrollbarSize = 10
Me.MetroTabPage2.Location = New System.Drawing.Point(4, 38)
Me.MetroTabPage2.Name = "MetroTabPage2"
Me.MetroTabPage2.Size = New System.Drawing.Size(979, 297)
Me.MetroTabPage2.TabIndex = 1
Me.MetroTabPage2.Text = "Policies"
Me.MetroTabPage2.VerticalScrollbarBarColor = True
Me.MetroTabPage2.VerticalScrollbarHighlightOnWheel = False
Me.MetroTabPage2.VerticalScrollbarSize = 10
'
'MetroTabPage6
'
Me.MetroTabPage6.Controls.Add(Me.ListView4)
Me.MetroTabPage6.HorizontalScrollbarBarColor = True
Me.MetroTabPage6.HorizontalScrollbarHighlightOnWheel = False
Me.MetroTabPage6.HorizontalScrollbarSize = 10
Me.MetroTabPage6.Location = New System.Drawing.Point(4, 38)
Me.MetroTabPage6.Name = "MetroTabPage6"
Me.MetroTabPage6.Size = New System.Drawing.Size(979, 297)
Me.MetroTabPage6.TabIndex = 5
Me.MetroTabPage6.Text = "EditionMatrix"
Me.MetroTabPage6.VerticalScrollbarBarColor = True
Me.MetroTabPage6.VerticalScrollbarHighlightOnWheel = False
Me.MetroTabPage6.VerticalScrollbarSize = 10
'
'ListView4
'
Me.ListView4.ContextMenuStrip = Me.ContextMenuStrip2
Me.ListView4.FullRowSelect = True
Me.ListView4.GridLines = True
Me.ListView4.Location = New System.Drawing.Point(3, 5)
Me.ListView4.Name = "ListView4"
Me.ListView4.Size = New System.Drawing.Size(970, 292)
Me.ListView4.TabIndex = 2
Me.ListView4.UseCompatibleStateImageBehavior = False
Me.ListView4.View = System.Windows.Forms.View.Details
'
'MetroTabPage7
'
Me.MetroTabPage7.Controls.Add(Me.ListView6)
Me.MetroTabPage7.Controls.Add(Me.ListView5)
Me.MetroTabPage7.HorizontalScrollbarBarColor = True
Me.MetroTabPage7.HorizontalScrollbarHighlightOnWheel = False
Me.MetroTabPage7.HorizontalScrollbarSize = 10
Me.MetroTabPage7.Location = New System.Drawing.Point(4, 38)
Me.MetroTabPage7.Name = "MetroTabPage7"
Me.MetroTabPage7.Size = New System.Drawing.Size(979, 297)
Me.MetroTabPage7.TabIndex = 6
Me.MetroTabPage7.Text = "UpgradeMatrix"
Me.MetroTabPage7.VerticalScrollbarBarColor = True
Me.MetroTabPage7.VerticalScrollbarHighlightOnWheel = False
Me.MetroTabPage7.VerticalScrollbarSize = 10
'
'ListView6
'
Me.ListView6.ContextMenuStrip = Me.ContextMenuStrip2
Me.ListView6.FullRowSelect = True
Me.ListView6.GridLines = True
Me.ListView6.Location = New System.Drawing.Point(3, 171)
Me.ListView6.Name = "ListView6"
Me.ListView6.Size = New System.Drawing.Size(970, 126)
Me.ListView6.TabIndex = 4
Me.ListView6.UseCompatibleStateImageBehavior = False
Me.ListView6.View = System.Windows.Forms.View.Details
'
'ListView5
'
Me.ListView5.ContextMenuStrip = Me.ContextMenuStrip2
Me.ListView5.FullRowSelect = True
Me.ListView5.GridLines = True
Me.ListView5.Location = New System.Drawing.Point(3, 5)
Me.ListView5.Name = "ListView5"
Me.ListView5.Size = New System.Drawing.Size(970, 161)
Me.ListView5.TabIndex = 3
Me.ListView5.UseCompatibleStateImageBehavior = False
Me.ListView5.View = System.Windows.Forms.View.Details
'
'MetroTabPage3
'
Me.MetroTabPage3.Controls.Add(Me.CheckBox4)
Me.MetroTabPage3.Controls.Add(Me.CheckBox3)
Me.MetroTabPage3.Controls.Add(Me.CheckBox2)
Me.MetroTabPage3.Controls.Add(Me.Panel1)
Me.MetroTabPage3.HorizontalScrollbarBarColor = True
Me.MetroTabPage3.HorizontalScrollbarHighlightOnWheel = False
Me.MetroTabPage3.HorizontalScrollbarSize = 10
Me.MetroTabPage3.Location = New System.Drawing.Point(4, 38)
Me.MetroTabPage3.Name = "MetroTabPage3"
Me.MetroTabPage3.Size = New System.Drawing.Size(979, 297)
Me.MetroTabPage3.TabIndex = 2
Me.MetroTabPage3.Text = "Options"
Me.MetroTabPage3.VerticalScrollbarBarColor = True
Me.MetroTabPage3.VerticalScrollbarHighlightOnWheel = False
Me.MetroTabPage3.VerticalScrollbarSize = 10
'
'CheckBox4
'
Me.CheckBox4.AutoSize = True
Me.CheckBox4.Location = New System.Drawing.Point(19, 98)
Me.CheckBox4.Name = "CheckBox4"
Me.CheckBox4.Size = New System.Drawing.Size(505, 15)
Me.CheckBox4.TabIndex = 17
Me.CheckBox4.Text = "Ignore reserve Part Numbers when calculating the SubTotal / Total of keys (PKeyCo" &
"nfig tab)"
Me.CheckBox4.UseSelectable = True
'
'CheckBox3
'
Me.CheckBox3.AutoSize = True
Me.CheckBox3.Location = New System.Drawing.Point(19, 60)
Me.CheckBox3.Name = "CheckBox3"
Me.CheckBox3.Size = New System.Drawing.Size(367, 15)
Me.CheckBox3.TabIndex = 16
Me.CheckBox3.Text = "Don't remove columns whose values are empty (Information tab)"
Me.CheckBox3.UseSelectable = True
'
'CheckBox2
'
Me.CheckBox2.AutoSize = True
Me.CheckBox2.Location = New System.Drawing.Point(19, 21)
Me.CheckBox2.Name = "CheckBox2"
Me.CheckBox2.Size = New System.Drawing.Size(298, 15)
Me.CheckBox2.TabIndex = 15
Me.CheckBox2.Text = "Don't clear the item list when loading a file (All tabs)"
Me.CheckBox2.UseSelectable = True
'
'Panel2
'
Me.Panel2.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(174, Byte), Integer), CType(CType(219, Byte), Integer))
Me.Panel2.Controls.Add(Me.PictureBox2)
Me.Panel2.Controls.Add(Me.PictureBox10)
Me.Panel2.Controls.Add(Me.PictureBox4)
Me.Panel2.Location = New System.Drawing.Point(0, 402)
Me.Panel2.Name = "Panel2"
Me.Panel2.Size = New System.Drawing.Size(1023, 40)
Me.Panel2.TabIndex = 28
'
'PictureBox2
'
Me.PictureBox2.BackgroundImage = CType(resources.GetObject("PictureBox2.BackgroundImage"), System.Drawing.Image)
Me.PictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center
Me.PictureBox2.Location = New System.Drawing.Point(90, 2)
Me.PictureBox2.Name = "PictureBox2"
Me.PictureBox2.Size = New System.Drawing.Size(36, 36)
Me.PictureBox2.TabIndex = 9
Me.PictureBox2.TabStop = False
Me.ToolTip1.SetToolTip(Me.PictureBox2, "Open the Product Key Checker")
'
'PictureBox10
'
Me.PictureBox10.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(174, Byte), Integer), CType(CType(219, Byte), Integer))
Me.PictureBox10.BackgroundImage = CType(resources.GetObject("PictureBox10.BackgroundImage"), System.Drawing.Image)
Me.PictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center
Me.PictureBox10.Location = New System.Drawing.Point(6, 2)
Me.PictureBox10.Name = "PictureBox10"
Me.PictureBox10.Size = New System.Drawing.Size(36, 36)
Me.PictureBox10.TabIndex = 8
Me.PictureBox10.TabStop = False
Me.ToolTip1.SetToolTip(Me.PictureBox10, "Open a File")
'
'PictureBox4
'
Me.PictureBox4.BackgroundImage = CType(resources.GetObject("PictureBox4.BackgroundImage"), System.Drawing.Image)
Me.PictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center
Me.PictureBox4.Location = New System.Drawing.Point(48, 2)
Me.PictureBox4.Name = "PictureBox4"
Me.PictureBox4.Size = New System.Drawing.Size(36, 36)
Me.PictureBox4.TabIndex = 2
Me.PictureBox4.TabStop = False
Me.ToolTip1.SetToolTip(Me.PictureBox4, "Export all data to Excel")
'
'TextBox1
'
Me.TextBox1.Location = New System.Drawing.Point(410, 6)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(100, 22)
Me.TextBox1.TabIndex = 29
Me.TextBox1.Text = "varName=""binding"""
Me.TextBox1.Visible = False
'
'Button11
'
Me.Button11.Location = New System.Drawing.Point(525, 6)
Me.Button11.Name = "Button11"
Me.Button11.Size = New System.Drawing.Size(171, 23)
Me.Button11.TabIndex = 30
Me.Button11.Text = "Wipe Unused Columns"
Me.Button11.UseVisualStyleBackColor = True
Me.Button11.Visible = False
'
'Button12
'
Me.Button12.Location = New System.Drawing.Point(524, 34)
Me.Button12.Name = "Button12"
Me.Button12.Size = New System.Drawing.Size(109, 23)
Me.Button12.TabIndex = 31
Me.Button12.Text = "Load File PKEY LH"
Me.Button12.UseVisualStyleBackColor = True
Me.Button12.Visible = False
'
'Timer2
'
Me.Timer2.Interval = 5000
'
'Button13
'
Me.Button13.Location = New System.Drawing.Point(702, 6)
Me.Button13.Name = "Button13"
Me.Button13.Size = New System.Drawing.Size(109, 23)
Me.Button13.TabIndex = 32
Me.Button13.Text = "Load File EdMatrix"
Me.Button13.UseVisualStyleBackColor = True
Me.Button13.Visible = False
'
'Button14
'
Me.Button14.Location = New System.Drawing.Point(816, 6)
Me.Button14.Name = "Button14"
Me.Button14.Size = New System.Drawing.Size(131, 23)
Me.Button14.TabIndex = 33
Me.Button14.Text = "Load File UpgMatrix"
Me.Button14.UseVisualStyleBackColor = True
Me.Button14.Visible = False
'
'MetroProgressSpinner1
'
Me.MetroProgressSpinner1.Location = New System.Drawing.Point(3, 3)
Me.MetroProgressSpinner1.Maximum = 100
Me.MetroProgressSpinner1.Name = "MetroProgressSpinner1"
Me.MetroProgressSpinner1.Size = New System.Drawing.Size(24, 24)
Me.MetroProgressSpinner1.TabIndex = 34
Me.MetroProgressSpinner1.UseSelectable = True
'
'Panel3
'
Me.Panel3.Controls.Add(Me.MetroLabel1)
Me.Panel3.Controls.Add(Me.MetroProgressSpinner1)
Me.Panel3.Location = New System.Drawing.Point(902, 69)
Me.Panel3.Name = "Panel3"
Me.Panel3.Size = New System.Drawing.Size(113, 29)
Me.Panel3.TabIndex = 35
Me.Panel3.Visible = False
'
'MetroLabel1
'
Me.MetroLabel1.AutoSize = True
Me.MetroLabel1.Location = New System.Drawing.Point(33, 4)
Me.MetroLabel1.Name = "MetroLabel1"
Me.MetroLabel1.Size = New System.Drawing.Size(65, 19)
Me.MetroLabel1.TabIndex = 35
Me.MetroLabel1.Text = "Loading..."
'
'Timer3
'
'
'exporttoxlsworker
'
'
'Form1
'
Me.AllowDrop = True
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(1005, 442)
Me.Controls.Add(Me.Panel3)
Me.Controls.Add(Me.Button14)
Me.Controls.Add(Me.Button13)
Me.Controls.Add(Me.Button12)
Me.Controls.Add(Me.Button11)
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.Panel2)
Me.Controls.Add(Me.Button10)
Me.Controls.Add(Me.Button8)
Me.Controls.Add(Me.Button5)
Me.Controls.Add(Me.MetroTabControl1)
Me.Controls.Add(Me.Button4)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.Button3)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.Name = "Form1"
Me.Resizable = False
Me.ShadowType = MetroFramework.Forms.MetroFormShadowType.DropShadow
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide
Me.Text = "Product Key Configuration Reader"
Me.ContextMenuStrip2.ResumeLayout(False)
Me.ContextMenuStrip1.ResumeLayout(False)
Me.Panel1.ResumeLayout(False)
Me.Panel1.PerformLayout()
Me.MetroTabControl1.ResumeLayout(False)
Me.MetroTabPage1.ResumeLayout(False)
Me.MetroTabPage1.PerformLayout()
Me.MetroTabPage4.ResumeLayout(False)
Me.MetroTabPage4.PerformLayout()
CType(Me.PictureBox14, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.PictureBox13, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
Me.MetroTabPage5.ResumeLayout(False)
Me.MetroTabPage2.ResumeLayout(False)
Me.MetroTabPage6.ResumeLayout(False)
Me.MetroTabPage7.ResumeLayout(False)
Me.MetroTabPage3.ResumeLayout(False)
Me.MetroTabPage3.PerformLayout()
Me.Panel2.ResumeLayout(False)
CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.PictureBox10, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.PictureBox4, System.ComponentModel.ISupportInitialize).EndInit()
Me.Panel3.ResumeLayout(False)
Me.Panel3.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents ListView1 As System.Windows.Forms.ListView
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents SaveFileDialog1 As System.Windows.Forms.SaveFileDialog
Friend WithEvents Button3 As System.Windows.Forms.Button
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents ContextMenuStrip1 As System.Windows.Forms.ContextMenuStrip
Friend WithEvents DonateToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents VisualSoftCorpToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents ASV93ToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents Timer1 As System.Windows.Forms.Timer
Friend WithEvents BackgroundWorker1 As System.ComponentModel.BackgroundWorker
Friend WithEvents Button4 As System.Windows.Forms.Button
Friend WithEvents Button5 As System.Windows.Forms.Button
Friend WithEvents Panel1 As System.Windows.Forms.Panel
Friend WithEvents CheckBox1 As System.Windows.Forms.CheckBox
Friend WithEvents Button6 As System.Windows.Forms.Button
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents Button7 As System.Windows.Forms.Button
Friend WithEvents Button8 As System.Windows.Forms.Button
Friend WithEvents Button9 As System.Windows.Forms.Button
Friend WithEvents Button10 As System.Windows.Forms.Button
Friend WithEvents ListView2 As System.Windows.Forms.ListView
Friend WithEvents MetroTabControl1 As MetroFramework.Controls.MetroTabControl
Friend WithEvents MetroTabPage1 As MetroFramework.Controls.MetroTabPage
Friend WithEvents MetroTabPage2 As MetroFramework.Controls.MetroTabPage
Friend WithEvents MetroTabPage3 As MetroFramework.Controls.MetroTabPage
Friend WithEvents MetroTabPage4 As MetroFramework.Controls.MetroTabPage
Friend WithEvents ContextMenuStrip2 As System.Windows.Forms.ContextMenuStrip
Friend WithEvents ClearItemListToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents Panel2 As System.Windows.Forms.Panel
Friend WithEvents PictureBox10 As System.Windows.Forms.PictureBox
Friend WithEvents PictureBox4 As System.Windows.Forms.PictureBox
Friend WithEvents MetroButton11 As MetroFramework.Controls.MetroButton
Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents PictureBox14 As System.Windows.Forms.PictureBox
Friend WithEvents PictureBox13 As System.Windows.Forms.PictureBox
Friend WithEvents MetroLabel11 As MetroFramework.Controls.MetroLabel
Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
Friend WithEvents label8 As MetroFramework.Controls.MetroLabel
Friend WithEvents linklabel1 As MetroFramework.Controls.MetroLink
Friend WithEvents ToolTip1 As System.Windows.Forms.ToolTip
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
Friend WithEvents Button11 As System.Windows.Forms.Button
Friend WithEvents MetroTabPage5 As MetroFramework.Controls.MetroTabPage
Friend WithEvents ListView3 As System.Windows.Forms.ListView
Friend WithEvents Button12 As System.Windows.Forms.Button
Friend WithEvents Timer2 As System.Windows.Forms.Timer
Friend WithEvents MetroTabPage6 As MetroFramework.Controls.MetroTabPage
Friend WithEvents ListView4 As System.Windows.Forms.ListView
Friend WithEvents Button13 As System.Windows.Forms.Button
Friend WithEvents MetroTabPage7 As MetroFramework.Controls.MetroTabPage
Friend WithEvents ListView5 As System.Windows.Forms.ListView
Friend WithEvents Button14 As System.Windows.Forms.Button
Friend WithEvents ListView6 As System.Windows.Forms.ListView
Friend WithEvents PictureBox2 As System.Windows.Forms.PictureBox
Friend WithEvents lastloadedxrm As System.Windows.Forms.Label
Friend WithEvents CheckBox2 As MetroFramework.Controls.MetroCheckBox
Friend WithEvents CheckBox3 As MetroFramework.Controls.MetroCheckBox
Friend WithEvents CheckBox4 As MetroFramework.Controls.MetroCheckBox
Friend WithEvents MetroProgressSpinner1 As MetroFramework.Controls.MetroProgressSpinner
Friend WithEvents Panel3 As System.Windows.Forms.Panel
Friend WithEvents MetroLabel1 As MetroFramework.Controls.MetroLabel
Friend WithEvents Timer3 As System.Windows.Forms.Timer
Friend WithEvents exporttoxlsworker As System.ComponentModel.BackgroundWorker
End Class