-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathucHtmlTemplate.Designer.vb
977 lines (973 loc) · 52.3 KB
/
ucHtmlTemplate.Designer.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class ucHtmlTemplate
'Inherits System.Windows.Forms.UserControl
Inherits WeifenLuo.WinFormsUI.Docking.DockContent
'UserControl 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(ucHtmlTemplate))
Dim DataGridViewCellStyle32 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle33 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle34 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle35 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle28 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle30 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle31 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle36 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle29 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Me.gbtemplate = New System.Windows.Forms.GroupBox()
Me.ChromiumWebBrowser1 = New CefSharp.WinForms.ChromiumWebBrowser()
Me.GroupBox2 = New System.Windows.Forms.GroupBox()
Me.chkRCWebAnimatorTemplate = New System.Windows.Forms.CheckBox()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.cmdStopAnimation = New System.Windows.Forms.Button()
Me.chkRCCTemplate = New System.Windows.Forms.CheckBox()
Me.chkLBand = New System.Windows.Forms.CheckBox()
Me.txtLBand = New System.Windows.Forms.TextBox()
Me.Label3 = New System.Windows.Forms.Label()
Me.chkanimatetemplate = New System.Windows.Forms.CheckBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.txtupdatedelay = New System.Windows.Forms.TextBox()
Me.cmdPutTestdata = New System.Windows.Forms.Button()
Me.cmdPlayandUpdate = New System.Windows.Forms.Button()
Me.cmdanytemplatePause = New System.Windows.Forms.Button()
Me.WB1 = New System.Windows.Forms.WebBrowser()
Me.gbrundown = New System.Windows.Forms.GroupBox()
Me.Label2 = New System.Windows.Forms.Label()
Me.MenuStrip1 = New System.Windows.Forms.MenuStrip()
Me.FileToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.NewToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.OpenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.SaveToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.EditToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.CutToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.CopyToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.PasteToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.Label269 = New System.Windows.Forms.Label()
Me.Label268 = New System.Windows.Forms.Label()
Me.txtadjusttimeofrundownsec = New System.Windows.Forms.TextBox()
Me.txtadjusttimeofrundownmin = New System.Windows.Forms.TextBox()
Me.cmdadjusttimeofrundown = New System.Windows.Forms.Button()
Me.cmdstopsheduletemplate = New System.Windows.Forms.Button()
Me.cmdstartsheduletemplate = New System.Windows.Forms.Button()
Me.cmbrundowninvoke = New System.Windows.Forms.ComboBox()
Me.cmdrundowninvoke = New System.Windows.Forms.Button()
Me.removetsrundown = New System.Windows.Forms.Button()
Me.nexttsrundown = New System.Windows.Forms.Button()
Me.uptsrundown = New System.Windows.Forms.Button()
Me.downtsrundown = New System.Windows.Forms.Button()
Me.addtsrundown = New System.Windows.Forms.Button()
Me.playtsrundown = New System.Windows.Forms.Button()
Me.stoptsrundown = New System.Windows.Forms.Button()
Me.dgvrundown = New System.Windows.Forms.DataGridView()
Me.cmdaddtorundown = New System.Windows.Forms.Button()
Me.dgvanytemplate = New System.Windows.Forms.DataGridView()
Me.Column4 = New System.Windows.Forms.DataGridViewImageColumn()
Me.Label10 = New System.Windows.Forms.Label()
Me.cmbinvoke = New System.Windows.Forms.ComboBox()
Me.cmdinvoke = New System.Windows.Forms.Button()
Me.cmdupdatetemplate = New System.Windows.Forms.Button()
Me.cmblayertemplate = New System.Windows.Forms.ComboBox()
Me.cmdnextframe = New System.Windows.Forms.Button()
Me.txtsearchtemplate = New System.Windows.Forms.TextBox()
Me.lsttemplate = New System.Windows.Forms.ListBox()
Me.cmdclipsearchtemplate = New System.Windows.Forms.Button()
Me.cmdanytemplatestop = New System.Windows.Forms.Button()
Me.cmdanytemplateplay = New System.Windows.Forms.Button()
Me.tmrsheduletemplatestart = New System.Windows.Forms.Timer(Me.components)
Me.tmrshedultemplateend = New System.Windows.Forms.Timer(Me.components)
Me.DataGridViewTextBoxColumn1 = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.DataGridViewTextBoxColumn2 = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.DataGridViewTextBoxColumn3 = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.DataGridViewTextBoxColumn4 = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.DataGridViewTextBoxColumn5 = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.DataGridViewTextBoxColumn6 = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.DataGridViewTextBoxColumn7 = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.Label = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.V = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.T = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.Data = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.InstanceName = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.Value = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.gbtemplate.SuspendLayout()
Me.GroupBox2.SuspendLayout()
Me.GroupBox1.SuspendLayout()
Me.gbrundown.SuspendLayout()
Me.MenuStrip1.SuspendLayout()
CType(Me.dgvrundown, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.dgvanytemplate, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'gbtemplate
'
Me.gbtemplate.BackColor = System.Drawing.Color.LightGreen
Me.gbtemplate.Controls.Add(Me.ChromiumWebBrowser1)
Me.gbtemplate.Controls.Add(Me.GroupBox2)
Me.gbtemplate.Controls.Add(Me.GroupBox1)
Me.gbtemplate.Controls.Add(Me.chkLBand)
Me.gbtemplate.Controls.Add(Me.txtLBand)
Me.gbtemplate.Controls.Add(Me.Label3)
Me.gbtemplate.Controls.Add(Me.chkanimatetemplate)
Me.gbtemplate.Controls.Add(Me.Label1)
Me.gbtemplate.Controls.Add(Me.txtupdatedelay)
Me.gbtemplate.Controls.Add(Me.cmdPutTestdata)
Me.gbtemplate.Controls.Add(Me.cmdPlayandUpdate)
Me.gbtemplate.Controls.Add(Me.cmdanytemplatePause)
Me.gbtemplate.Controls.Add(Me.WB1)
Me.gbtemplate.Controls.Add(Me.gbrundown)
Me.gbtemplate.Controls.Add(Me.cmdaddtorundown)
Me.gbtemplate.Controls.Add(Me.dgvanytemplate)
Me.gbtemplate.Controls.Add(Me.Label10)
Me.gbtemplate.Controls.Add(Me.cmbinvoke)
Me.gbtemplate.Controls.Add(Me.cmdinvoke)
Me.gbtemplate.Controls.Add(Me.cmdupdatetemplate)
Me.gbtemplate.Controls.Add(Me.cmblayertemplate)
Me.gbtemplate.Controls.Add(Me.cmdnextframe)
Me.gbtemplate.Controls.Add(Me.txtsearchtemplate)
Me.gbtemplate.Controls.Add(Me.lsttemplate)
Me.gbtemplate.Controls.Add(Me.cmdclipsearchtemplate)
Me.gbtemplate.Controls.Add(Me.cmdanytemplatestop)
Me.gbtemplate.Controls.Add(Me.cmdanytemplateplay)
Me.gbtemplate.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.gbtemplate.Location = New System.Drawing.Point(3, 3)
Me.gbtemplate.Margin = New System.Windows.Forms.Padding(0)
Me.gbtemplate.Name = "gbtemplate"
Me.gbtemplate.Size = New System.Drawing.Size(1220, 919)
Me.gbtemplate.TabIndex = 425
Me.gbtemplate.TabStop = False
Me.gbtemplate.Text = " "
'
'ChromiumWebBrowser1
'
Me.ChromiumWebBrowser1.ActivateBrowserOnCreation = False
Me.ChromiumWebBrowser1.Location = New System.Drawing.Point(277, 35)
Me.ChromiumWebBrowser1.Name = "ChromiumWebBrowser1"
Me.ChromiumWebBrowser1.Size = New System.Drawing.Size(428, 342)
Me.ChromiumWebBrowser1.TabIndex = 1182
'
'GroupBox2
'
Me.GroupBox2.BackColor = System.Drawing.Color.LimeGreen
Me.GroupBox2.Controls.Add(Me.chkRCWebAnimatorTemplate)
Me.GroupBox2.Location = New System.Drawing.Point(861, 77)
Me.GroupBox2.Name = "GroupBox2"
Me.GroupBox2.Size = New System.Drawing.Size(182, 40)
Me.GroupBox2.TabIndex = 1181
Me.GroupBox2.TabStop = False
Me.GroupBox2.Text = "RCC Web Animator Template"
'
'chkRCWebAnimatorTemplate
'
Me.chkRCWebAnimatorTemplate.AutoSize = True
Me.chkRCWebAnimatorTemplate.Location = New System.Drawing.Point(6, 19)
Me.chkRCWebAnimatorTemplate.Name = "chkRCWebAnimatorTemplate"
Me.chkRCWebAnimatorTemplate.Size = New System.Drawing.Size(165, 17)
Me.chkRCWebAnimatorTemplate.TabIndex = 1180
Me.chkRCWebAnimatorTemplate.Text = "RCC Web Animator Template"
Me.chkRCWebAnimatorTemplate.UseVisualStyleBackColor = True
'
'GroupBox1
'
Me.GroupBox1.BackColor = System.Drawing.Color.LimeGreen
Me.GroupBox1.Controls.Add(Me.cmdStopAnimation)
Me.GroupBox1.Controls.Add(Me.chkRCCTemplate)
Me.GroupBox1.Location = New System.Drawing.Point(1049, 76)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(121, 65)
Me.GroupBox1.TabIndex = 1179
Me.GroupBox1.TabStop = False
Me.GroupBox1.Text = "RCC Template"
'
'cmdStopAnimation
'
Me.cmdStopAnimation.BackColor = System.Drawing.Color.Red
Me.cmdStopAnimation.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdStopAnimation.ForeColor = System.Drawing.Color.White
Me.cmdStopAnimation.Location = New System.Drawing.Point(6, 35)
Me.cmdStopAnimation.Name = "cmdStopAnimation"
Me.cmdStopAnimation.Size = New System.Drawing.Size(109, 24)
Me.cmdStopAnimation.TabIndex = 1180
Me.cmdStopAnimation.Text = "Stop Animation"
Me.cmdStopAnimation.UseVisualStyleBackColor = False
'
'chkRCCTemplate
'
Me.chkRCCTemplate.AutoSize = True
Me.chkRCCTemplate.Location = New System.Drawing.Point(6, 19)
Me.chkRCCTemplate.Name = "chkRCCTemplate"
Me.chkRCCTemplate.Size = New System.Drawing.Size(95, 17)
Me.chkRCCTemplate.TabIndex = 1180
Me.chkRCCTemplate.Text = "RCC Template"
Me.chkRCCTemplate.UseVisualStyleBackColor = True
'
'chkLBand
'
Me.chkLBand.AutoSize = True
Me.chkLBand.Location = New System.Drawing.Point(910, 127)
Me.chkLBand.Name = "chkLBand"
Me.chkLBand.Size = New System.Drawing.Size(133, 17)
Me.chkLBand.TabIndex = 1178
Me.chkLBand.Text = "Apply L band Squeeze"
Me.chkLBand.UseVisualStyleBackColor = True
'
'txtLBand
'
Me.txtLBand.Location = New System.Drawing.Point(721, 125)
Me.txtLBand.Name = "txtLBand"
Me.txtLBand.Size = New System.Drawing.Size(183, 20)
Me.txtLBand.TabIndex = 1177
Me.txtLBand.Text = "fill 0.18 0 0.82 0.83 25 easeoutexpo"
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Location = New System.Drawing.Point(718, 109)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(84, 13)
Me.Label3.TabIndex = 1176
Me.Label3.Text = "L Band squeeze"
'
'chkanimatetemplate
'
Me.chkanimatetemplate.AutoSize = True
Me.chkanimatetemplate.Checked = True
Me.chkanimatetemplate.CheckState = System.Windows.Forms.CheckState.Checked
Me.chkanimatetemplate.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.chkanimatetemplate.Location = New System.Drawing.Point(1010, 40)
Me.chkanimatetemplate.Name = "chkanimatetemplate"
Me.chkanimatetemplate.Size = New System.Drawing.Size(64, 17)
Me.chkanimatetemplate.TabIndex = 1175
Me.chkanimatetemplate.Text = "Animate"
Me.chkanimatetemplate.UseVisualStyleBackColor = True
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(720, 44)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(88, 13)
Me.Label1.TabIndex = 1174
Me.Label1.Text = "Update Delay ms"
'
'txtupdatedelay
'
Me.txtupdatedelay.Location = New System.Drawing.Point(816, 41)
Me.txtupdatedelay.Name = "txtupdatedelay"
Me.txtupdatedelay.Size = New System.Drawing.Size(39, 20)
Me.txtupdatedelay.TabIndex = 1173
Me.txtupdatedelay.Text = "0"
'
'cmdPutTestdata
'
Me.cmdPutTestdata.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdPutTestdata.Location = New System.Drawing.Point(710, 78)
Me.cmdPutTestdata.Name = "cmdPutTestdata"
Me.cmdPutTestdata.Size = New System.Drawing.Size(119, 24)
Me.cmdPutTestdata.TabIndex = 1172
Me.cmdPutTestdata.Text = "Put Test data"
Me.cmdPutTestdata.UseVisualStyleBackColor = True
'
'cmdPlayandUpdate
'
Me.cmdPlayandUpdate.BackColor = System.Drawing.Color.Green
Me.cmdPlayandUpdate.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdPlayandUpdate.ForeColor = System.Drawing.Color.White
Me.cmdPlayandUpdate.Location = New System.Drawing.Point(861, 40)
Me.cmdPlayandUpdate.Name = "cmdPlayandUpdate"
Me.cmdPlayandUpdate.Size = New System.Drawing.Size(124, 25)
Me.cmdPlayandUpdate.TabIndex = 1171
Me.cmdPlayandUpdate.Text = "Play + Update"
Me.cmdPlayandUpdate.UseVisualStyleBackColor = False
'
'cmdanytemplatePause
'
Me.cmdanytemplatePause.BackColor = System.Drawing.Color.Yellow
Me.cmdanytemplatePause.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdanytemplatePause.Location = New System.Drawing.Point(943, 6)
Me.cmdanytemplatePause.Name = "cmdanytemplatePause"
Me.cmdanytemplatePause.Size = New System.Drawing.Size(61, 29)
Me.cmdanytemplatePause.TabIndex = 1170
Me.cmdanytemplatePause.Text = "Pause"
Me.cmdanytemplatePause.UseVisualStyleBackColor = False
'
'WB1
'
Me.WB1.Location = New System.Drawing.Point(277, 35)
Me.WB1.MinimumSize = New System.Drawing.Size(20, 20)
Me.WB1.Name = "WB1"
Me.WB1.ScriptErrorsSuppressed = True
Me.WB1.Size = New System.Drawing.Size(427, 342)
Me.WB1.TabIndex = 1169
'
'gbrundown
'
Me.gbrundown.BackColor = System.Drawing.Color.DarkSeaGreen
Me.gbrundown.Controls.Add(Me.Label2)
Me.gbrundown.Controls.Add(Me.MenuStrip1)
Me.gbrundown.Controls.Add(Me.Label269)
Me.gbrundown.Controls.Add(Me.Label268)
Me.gbrundown.Controls.Add(Me.txtadjusttimeofrundownsec)
Me.gbrundown.Controls.Add(Me.txtadjusttimeofrundownmin)
Me.gbrundown.Controls.Add(Me.cmdadjusttimeofrundown)
Me.gbrundown.Controls.Add(Me.cmdstopsheduletemplate)
Me.gbrundown.Controls.Add(Me.cmdstartsheduletemplate)
Me.gbrundown.Controls.Add(Me.cmbrundowninvoke)
Me.gbrundown.Controls.Add(Me.cmdrundowninvoke)
Me.gbrundown.Controls.Add(Me.removetsrundown)
Me.gbrundown.Controls.Add(Me.nexttsrundown)
Me.gbrundown.Controls.Add(Me.uptsrundown)
Me.gbrundown.Controls.Add(Me.downtsrundown)
Me.gbrundown.Controls.Add(Me.addtsrundown)
Me.gbrundown.Controls.Add(Me.playtsrundown)
Me.gbrundown.Controls.Add(Me.stoptsrundown)
Me.gbrundown.Controls.Add(Me.dgvrundown)
Me.gbrundown.Location = New System.Drawing.Point(7, 383)
Me.gbrundown.Name = "gbrundown"
Me.gbrundown.Size = New System.Drawing.Size(697, 534)
Me.gbrundown.TabIndex = 638
Me.gbrundown.TabStop = False
Me.gbrundown.Text = "Rundown"
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 14.25!, System.Drawing.FontStyle.Bold)
Me.Label2.Location = New System.Drawing.Point(239, 43)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(169, 24)
Me.Label2.TabIndex = 1177
Me.Label2.Text = "Play or Schedule"
'
'MenuStrip1
'
Me.MenuStrip1.Dock = System.Windows.Forms.DockStyle.None
Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.FileToolStripMenuItem, Me.EditToolStripMenuItem})
Me.MenuStrip1.Location = New System.Drawing.Point(6, 18)
Me.MenuStrip1.Name = "MenuStrip1"
Me.MenuStrip1.Size = New System.Drawing.Size(84, 24)
Me.MenuStrip1.TabIndex = 1176
Me.MenuStrip1.Text = "MenuStrip1"
'
'FileToolStripMenuItem
'
Me.FileToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.NewToolStripMenuItem, Me.OpenToolStripMenuItem, Me.SaveToolStripMenuItem})
Me.FileToolStripMenuItem.Name = "FileToolStripMenuItem"
Me.FileToolStripMenuItem.Size = New System.Drawing.Size(37, 20)
Me.FileToolStripMenuItem.Text = "File"
'
'NewToolStripMenuItem
'
Me.NewToolStripMenuItem.Name = "NewToolStripMenuItem"
Me.NewToolStripMenuItem.Size = New System.Drawing.Size(103, 22)
Me.NewToolStripMenuItem.Text = "New"
'
'OpenToolStripMenuItem
'
Me.OpenToolStripMenuItem.Name = "OpenToolStripMenuItem"
Me.OpenToolStripMenuItem.Size = New System.Drawing.Size(103, 22)
Me.OpenToolStripMenuItem.Text = "Open"
'
'SaveToolStripMenuItem
'
Me.SaveToolStripMenuItem.Name = "SaveToolStripMenuItem"
Me.SaveToolStripMenuItem.Size = New System.Drawing.Size(103, 22)
Me.SaveToolStripMenuItem.Text = "Save"
'
'EditToolStripMenuItem
'
Me.EditToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.CutToolStripMenuItem, Me.CopyToolStripMenuItem, Me.PasteToolStripMenuItem})
Me.EditToolStripMenuItem.Name = "EditToolStripMenuItem"
Me.EditToolStripMenuItem.Size = New System.Drawing.Size(39, 20)
Me.EditToolStripMenuItem.Text = "Edit"
'
'CutToolStripMenuItem
'
Me.CutToolStripMenuItem.Name = "CutToolStripMenuItem"
Me.CutToolStripMenuItem.Size = New System.Drawing.Size(102, 22)
Me.CutToolStripMenuItem.Text = "Cut"
'
'CopyToolStripMenuItem
'
Me.CopyToolStripMenuItem.Name = "CopyToolStripMenuItem"
Me.CopyToolStripMenuItem.Size = New System.Drawing.Size(102, 22)
Me.CopyToolStripMenuItem.Text = "Copy"
'
'PasteToolStripMenuItem
'
Me.PasteToolStripMenuItem.Name = "PasteToolStripMenuItem"
Me.PasteToolStripMenuItem.Size = New System.Drawing.Size(102, 22)
Me.PasteToolStripMenuItem.Text = "Paste"
'
'Label269
'
Me.Label269.AutoSize = True
Me.Label269.Location = New System.Drawing.Point(614, 51)
Me.Label269.Name = "Label269"
Me.Label269.Size = New System.Drawing.Size(26, 13)
Me.Label269.TabIndex = 1175
Me.Label269.Text = "Sec"
'
'Label268
'
Me.Label268.AutoSize = True
Me.Label268.Location = New System.Drawing.Point(555, 49)
Me.Label268.Name = "Label268"
Me.Label268.Size = New System.Drawing.Size(24, 13)
Me.Label268.TabIndex = 1174
Me.Label268.Text = "Min"
'
'txtadjusttimeofrundownsec
'
Me.txtadjusttimeofrundownsec.Location = New System.Drawing.Point(585, 47)
Me.txtadjusttimeofrundownsec.Name = "txtadjusttimeofrundownsec"
Me.txtadjusttimeofrundownsec.Size = New System.Drawing.Size(28, 20)
Me.txtadjusttimeofrundownsec.TabIndex = 533
Me.txtadjusttimeofrundownsec.Text = "00"
'
'txtadjusttimeofrundownmin
'
Me.txtadjusttimeofrundownmin.Location = New System.Drawing.Point(525, 47)
Me.txtadjusttimeofrundownmin.Name = "txtadjusttimeofrundownmin"
Me.txtadjusttimeofrundownmin.Size = New System.Drawing.Size(27, 20)
Me.txtadjusttimeofrundownmin.TabIndex = 532
Me.txtadjusttimeofrundownmin.Text = "01"
'
'cmdadjusttimeofrundown
'
Me.cmdadjusttimeofrundown.Location = New System.Drawing.Point(452, 47)
Me.cmdadjusttimeofrundown.Name = "cmdadjusttimeofrundown"
Me.cmdadjusttimeofrundown.Size = New System.Drawing.Size(71, 23)
Me.cmdadjusttimeofrundown.TabIndex = 531
Me.cmdadjusttimeofrundown.Text = "Adjust Time"
Me.cmdadjusttimeofrundown.UseVisualStyleBackColor = True
'
'cmdstopsheduletemplate
'
Me.cmdstopsheduletemplate.Location = New System.Drawing.Point(552, 16)
Me.cmdstopsheduletemplate.Name = "cmdstopsheduletemplate"
Me.cmdstopsheduletemplate.Size = New System.Drawing.Size(87, 23)
Me.cmdstopsheduletemplate.TabIndex = 530
Me.cmdstopsheduletemplate.Text = "Stop Schedule"
Me.cmdstopsheduletemplate.UseVisualStyleBackColor = True
'
'cmdstartsheduletemplate
'
Me.cmdstartsheduletemplate.Location = New System.Drawing.Point(477, 16)
Me.cmdstartsheduletemplate.Name = "cmdstartsheduletemplate"
Me.cmdstartsheduletemplate.Size = New System.Drawing.Size(69, 23)
Me.cmdstartsheduletemplate.TabIndex = 529
Me.cmdstartsheduletemplate.Text = "Schedule"
Me.cmdstartsheduletemplate.UseVisualStyleBackColor = True
'
'cmbrundowninvoke
'
Me.cmbrundowninvoke.FormattingEnabled = True
Me.cmbrundowninvoke.Items.AddRange(New Object() {"gotoandplaylabel('in')", "gotoandplaylabel('out')", "gotoandplaylabel('loop')", "gotoandplaylabel('stop')", "gotoandplaylabel('label-1')", "Next", "pause", "resume"})
Me.cmbrundowninvoke.Location = New System.Drawing.Point(365, 16)
Me.cmbrundowninvoke.Name = "cmbrundowninvoke"
Me.cmbrundowninvoke.Size = New System.Drawing.Size(50, 21)
Me.cmbrundowninvoke.TabIndex = 526
Me.cmbrundowninvoke.Text = "next()"
'
'cmdrundowninvoke
'
Me.cmdrundowninvoke.Location = New System.Drawing.Point(420, 16)
Me.cmdrundowninvoke.Margin = New System.Windows.Forms.Padding(4, 3, 4, 3)
Me.cmdrundowninvoke.Name = "cmdrundowninvoke"
Me.cmdrundowninvoke.Size = New System.Drawing.Size(50, 23)
Me.cmdrundowninvoke.TabIndex = 525
Me.cmdrundowninvoke.Text = "Invoke"
Me.cmdrundowninvoke.UseVisualStyleBackColor = True
'
'removetsrundown
'
Me.removetsrundown.Font = New System.Drawing.Font("Microsoft Sans Serif", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.removetsrundown.Image = CType(resources.GetObject("removetsrundown.Image"), System.Drawing.Image)
Me.removetsrundown.Location = New System.Drawing.Point(113, 45)
Me.removetsrundown.Name = "removetsrundown"
Me.removetsrundown.Size = New System.Drawing.Size(33, 22)
Me.removetsrundown.TabIndex = 522
Me.removetsrundown.UseVisualStyleBackColor = True
'
'nexttsrundown
'
Me.nexttsrundown.BackColor = System.Drawing.Color.Yellow
Me.nexttsrundown.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.nexttsrundown.ForeColor = System.Drawing.Color.Black
Me.nexttsrundown.Location = New System.Drawing.Point(223, 16)
Me.nexttsrundown.Margin = New System.Windows.Forms.Padding(4, 3, 4, 3)
Me.nexttsrundown.Name = "nexttsrundown"
Me.nexttsrundown.Size = New System.Drawing.Size(80, 23)
Me.nexttsrundown.TabIndex = 518
Me.nexttsrundown.Text = "Next Step"
Me.nexttsrundown.UseVisualStyleBackColor = False
'
'uptsrundown
'
Me.uptsrundown.Image = CType(resources.GetObject("uptsrundown.Image"), System.Drawing.Image)
Me.uptsrundown.Location = New System.Drawing.Point(4, 45)
Me.uptsrundown.Name = "uptsrundown"
Me.uptsrundown.Size = New System.Drawing.Size(28, 23)
Me.uptsrundown.TabIndex = 520
Me.uptsrundown.UseVisualStyleBackColor = True
'
'downtsrundown
'
Me.downtsrundown.Image = CType(resources.GetObject("downtsrundown.Image"), System.Drawing.Image)
Me.downtsrundown.Location = New System.Drawing.Point(33, 45)
Me.downtsrundown.Name = "downtsrundown"
Me.downtsrundown.Size = New System.Drawing.Size(36, 23)
Me.downtsrundown.TabIndex = 521
Me.downtsrundown.UseVisualStyleBackColor = True
'
'addtsrundown
'
Me.addtsrundown.Image = CType(resources.GetObject("addtsrundown.Image"), System.Drawing.Image)
Me.addtsrundown.Location = New System.Drawing.Point(70, 45)
Me.addtsrundown.Name = "addtsrundown"
Me.addtsrundown.Size = New System.Drawing.Size(41, 23)
Me.addtsrundown.TabIndex = 519
Me.addtsrundown.UseVisualStyleBackColor = True
'
'playtsrundown
'
Me.playtsrundown.BackColor = System.Drawing.Color.Green
Me.playtsrundown.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.playtsrundown.ForeColor = System.Drawing.Color.White
Me.playtsrundown.Location = New System.Drawing.Point(154, 16)
Me.playtsrundown.Margin = New System.Windows.Forms.Padding(4, 3, 4, 3)
Me.playtsrundown.Name = "playtsrundown"
Me.playtsrundown.Size = New System.Drawing.Size(62, 26)
Me.playtsrundown.TabIndex = 516
Me.playtsrundown.Text = "Play"
Me.playtsrundown.UseVisualStyleBackColor = False
'
'stoptsrundown
'
Me.stoptsrundown.BackColor = System.Drawing.Color.Red
Me.stoptsrundown.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.stoptsrundown.ForeColor = System.Drawing.Color.White
Me.stoptsrundown.Location = New System.Drawing.Point(313, 16)
Me.stoptsrundown.Margin = New System.Windows.Forms.Padding(4, 3, 4, 3)
Me.stoptsrundown.Name = "stoptsrundown"
Me.stoptsrundown.Size = New System.Drawing.Size(45, 23)
Me.stoptsrundown.TabIndex = 517
Me.stoptsrundown.Text = "Stop"
Me.stoptsrundown.UseVisualStyleBackColor = False
'
'dgvrundown
'
DataGridViewCellStyle32.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(192, Byte), Integer))
Me.dgvrundown.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle32
DataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
DataGridViewCellStyle33.BackColor = System.Drawing.SystemColors.Control
DataGridViewCellStyle33.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
DataGridViewCellStyle33.ForeColor = System.Drawing.SystemColors.WindowText
DataGridViewCellStyle33.SelectionBackColor = System.Drawing.SystemColors.Highlight
DataGridViewCellStyle33.SelectionForeColor = System.Drawing.SystemColors.HighlightText
DataGridViewCellStyle33.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
Me.dgvrundown.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle33
Me.dgvrundown.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.dgvrundown.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.Label, Me.DataGridViewTextBoxColumn5, Me.V, Me.T, Me.Data})
DataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
DataGridViewCellStyle34.BackColor = System.Drawing.SystemColors.Window
DataGridViewCellStyle34.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
DataGridViewCellStyle34.ForeColor = System.Drawing.SystemColors.ControlText
DataGridViewCellStyle34.SelectionBackColor = System.Drawing.SystemColors.Highlight
DataGridViewCellStyle34.SelectionForeColor = System.Drawing.SystemColors.HighlightText
DataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.[False]
Me.dgvrundown.DefaultCellStyle = DataGridViewCellStyle34
Me.dgvrundown.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter
Me.dgvrundown.Location = New System.Drawing.Point(6, 70)
Me.dgvrundown.Name = "dgvrundown"
DataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
DataGridViewCellStyle35.BackColor = System.Drawing.SystemColors.Control
DataGridViewCellStyle35.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
DataGridViewCellStyle35.ForeColor = System.Drawing.SystemColors.WindowText
DataGridViewCellStyle35.SelectionBackColor = System.Drawing.SystemColors.Highlight
DataGridViewCellStyle35.SelectionForeColor = System.Drawing.SystemColors.HighlightText
DataGridViewCellStyle35.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
Me.dgvrundown.RowHeadersDefaultCellStyle = DataGridViewCellStyle35
Me.dgvrundown.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect
Me.dgvrundown.Size = New System.Drawing.Size(685, 455)
Me.dgvrundown.TabIndex = 370
'
'cmdaddtorundown
'
Me.cmdaddtorundown.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdaddtorundown.Location = New System.Drawing.Point(711, 7)
Me.cmdaddtorundown.Margin = New System.Windows.Forms.Padding(4, 3, 4, 3)
Me.cmdaddtorundown.Name = "cmdaddtorundown"
Me.cmdaddtorundown.Size = New System.Drawing.Size(158, 30)
Me.cmdaddtorundown.TabIndex = 524
Me.cmdaddtorundown.Text = "Add to Rundown"
Me.cmdaddtorundown.UseVisualStyleBackColor = True
'
'dgvanytemplate
'
DataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
DataGridViewCellStyle28.BackColor = System.Drawing.SystemColors.Control
DataGridViewCellStyle28.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
DataGridViewCellStyle28.ForeColor = System.Drawing.SystemColors.WindowText
DataGridViewCellStyle28.SelectionBackColor = System.Drawing.SystemColors.Highlight
DataGridViewCellStyle28.SelectionForeColor = System.Drawing.SystemColors.HighlightText
DataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
Me.dgvanytemplate.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle28
Me.dgvanytemplate.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.dgvanytemplate.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.InstanceName, Me.Value, Me.Column4})
DataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
DataGridViewCellStyle30.BackColor = System.Drawing.SystemColors.Window
DataGridViewCellStyle30.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
DataGridViewCellStyle30.ForeColor = System.Drawing.SystemColors.ControlText
DataGridViewCellStyle30.SelectionBackColor = System.Drawing.SystemColors.Highlight
DataGridViewCellStyle30.SelectionForeColor = System.Drawing.SystemColors.HighlightText
DataGridViewCellStyle30.WrapMode = System.Windows.Forms.DataGridViewTriState.[False]
Me.dgvanytemplate.DefaultCellStyle = DataGridViewCellStyle30
Me.dgvanytemplate.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter
Me.dgvanytemplate.Location = New System.Drawing.Point(711, 148)
Me.dgvanytemplate.Name = "dgvanytemplate"
DataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
DataGridViewCellStyle31.BackColor = System.Drawing.SystemColors.Control
DataGridViewCellStyle31.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
DataGridViewCellStyle31.ForeColor = System.Drawing.SystemColors.WindowText
DataGridViewCellStyle31.SelectionBackColor = System.Drawing.SystemColors.Highlight
DataGridViewCellStyle31.SelectionForeColor = System.Drawing.SystemColors.HighlightText
DataGridViewCellStyle31.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
Me.dgvanytemplate.RowHeadersDefaultCellStyle = DataGridViewCellStyle31
Me.dgvanytemplate.Size = New System.Drawing.Size(493, 760)
Me.dgvanytemplate.TabIndex = 369
'
'Column4
'
Me.Column4.HeaderText = ""
Me.Column4.Name = "Column4"
Me.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.[True]
Me.Column4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic
Me.Column4.Width = 50
'
'Label10
'
Me.Label10.AutoSize = True
Me.Label10.Location = New System.Drawing.Point(598, 13)
Me.Label10.Name = "Label10"
Me.Label10.Size = New System.Drawing.Size(63, 13)
Me.Label10.TabIndex = 368
Me.Label10.Text = "Video Layer"
'
'cmbinvoke
'
Me.cmbinvoke.FormattingEnabled = True
Me.cmbinvoke.Items.AddRange(New Object() {"gotoandplaylabel('in')", "gotoandplaylabel('out')", "gotoandplaylabel('loop')", "gotoandplaylabel('stop')", "gotoandplaylabel('label-1')", "Next", "pause", "resume", "document.getElementById('ccgf0').innerHTML='Suresh Kumar'"})
Me.cmbinvoke.Location = New System.Drawing.Point(158, 11)
Me.cmbinvoke.Name = "cmbinvoke"
Me.cmbinvoke.Size = New System.Drawing.Size(363, 21)
Me.cmbinvoke.TabIndex = 366
Me.cmbinvoke.Text = "document.getElementById('ccgf0').innerHTML='Suresh Kumar'"
'
'cmdinvoke
'
Me.cmdinvoke.Location = New System.Drawing.Point(522, 10)
Me.cmdinvoke.Name = "cmdinvoke"
Me.cmdinvoke.Size = New System.Drawing.Size(76, 21)
Me.cmdinvoke.TabIndex = 365
Me.cmdinvoke.Text = "Call Function"
Me.cmdinvoke.UseVisualStyleBackColor = True
'
'cmdupdatetemplate
'
Me.cmdupdatetemplate.Font = New System.Drawing.Font("Microsoft Sans Serif", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdupdatetemplate.Location = New System.Drawing.Point(1076, 34)
Me.cmdupdatetemplate.Name = "cmdupdatetemplate"
Me.cmdupdatetemplate.Size = New System.Drawing.Size(61, 29)
Me.cmdupdatetemplate.TabIndex = 358
Me.cmdupdatetemplate.Text = "Update"
Me.cmdupdatetemplate.UseVisualStyleBackColor = True
'
'cmblayertemplate
'
Me.cmblayertemplate.FormattingEnabled = True
Me.cmblayertemplate.Items.AddRange(New Object() {"21", "22", "23", "24", "25", "26", "27", "28", "29", "30"})
Me.cmblayertemplate.Location = New System.Drawing.Point(664, 9)
Me.cmblayertemplate.Name = "cmblayertemplate"
Me.cmblayertemplate.Size = New System.Drawing.Size(40, 21)
Me.cmblayertemplate.TabIndex = 291
Me.cmblayertemplate.Text = "96"
'
'cmdnextframe
'
Me.cmdnextframe.BackColor = System.Drawing.Color.Yellow
Me.cmdnextframe.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdnextframe.Location = New System.Drawing.Point(1010, 6)
Me.cmdnextframe.Name = "cmdnextframe"
Me.cmdnextframe.Size = New System.Drawing.Size(61, 29)
Me.cmdnextframe.TabIndex = 309
Me.cmdnextframe.Text = "Resume"
Me.cmdnextframe.UseVisualStyleBackColor = False
'
'txtsearchtemplate
'
Me.txtsearchtemplate.Location = New System.Drawing.Point(6, 13)
Me.txtsearchtemplate.Name = "txtsearchtemplate"
Me.txtsearchtemplate.Size = New System.Drawing.Size(91, 20)
Me.txtsearchtemplate.TabIndex = 302
'
'lsttemplate
'
Me.lsttemplate.AllowDrop = True
Me.lsttemplate.BackColor = System.Drawing.SystemColors.Control
Me.lsttemplate.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.lsttemplate.FormattingEnabled = True
Me.lsttemplate.HorizontalScrollbar = True
Me.lsttemplate.Location = New System.Drawing.Point(6, 35)
Me.lsttemplate.Name = "lsttemplate"
Me.lsttemplate.ScrollAlwaysVisible = True
Me.lsttemplate.Size = New System.Drawing.Size(265, 342)
Me.lsttemplate.TabIndex = 304
'
'cmdclipsearchtemplate
'
Me.cmdclipsearchtemplate.Location = New System.Drawing.Point(99, 12)
Me.cmdclipsearchtemplate.Name = "cmdclipsearchtemplate"
Me.cmdclipsearchtemplate.Size = New System.Drawing.Size(53, 22)
Me.cmdclipsearchtemplate.TabIndex = 303
Me.cmdclipsearchtemplate.Text = "Search"
Me.cmdclipsearchtemplate.UseVisualStyleBackColor = True
'
'cmdanytemplatestop
'
Me.cmdanytemplatestop.BackColor = System.Drawing.Color.Red
Me.cmdanytemplatestop.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdanytemplatestop.ForeColor = System.Drawing.Color.White
Me.cmdanytemplatestop.Location = New System.Drawing.Point(1073, 5)
Me.cmdanytemplatestop.Name = "cmdanytemplatestop"
Me.cmdanytemplatestop.Size = New System.Drawing.Size(61, 29)
Me.cmdanytemplatestop.TabIndex = 289
Me.cmdanytemplatestop.Text = "Stop"
Me.cmdanytemplatestop.UseVisualStyleBackColor = False
'
'cmdanytemplateplay
'
Me.cmdanytemplateplay.BackColor = System.Drawing.Color.Green
Me.cmdanytemplateplay.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdanytemplateplay.ForeColor = System.Drawing.Color.White
Me.cmdanytemplateplay.Location = New System.Drawing.Point(876, 7)
Me.cmdanytemplateplay.Name = "cmdanytemplateplay"
Me.cmdanytemplateplay.Size = New System.Drawing.Size(61, 29)
Me.cmdanytemplateplay.TabIndex = 288
Me.cmdanytemplateplay.Text = "Play"
Me.cmdanytemplateplay.UseVisualStyleBackColor = False
'
'tmrsheduletemplatestart
'
Me.tmrsheduletemplatestart.Interval = 10000
'
'tmrshedultemplateend
'
Me.tmrshedultemplateend.Interval = 7000
'
'DataGridViewTextBoxColumn1
'
Me.DataGridViewTextBoxColumn1.HeaderText = "Label"
Me.DataGridViewTextBoxColumn1.Name = "DataGridViewTextBoxColumn1"
Me.DataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
Me.DataGridViewTextBoxColumn1.Width = 180
'
'DataGridViewTextBoxColumn2
'
Me.DataGridViewTextBoxColumn2.HeaderText = "Template"
Me.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2"
Me.DataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
'
'DataGridViewTextBoxColumn3
'
Me.DataGridViewTextBoxColumn3.HeaderText = "V"
Me.DataGridViewTextBoxColumn3.Name = "DataGridViewTextBoxColumn3"
Me.DataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
Me.DataGridViewTextBoxColumn3.Width = 30
'
'DataGridViewTextBoxColumn4
'
Me.DataGridViewTextBoxColumn4.HeaderText = "T"
Me.DataGridViewTextBoxColumn4.Name = "DataGridViewTextBoxColumn4"
Me.DataGridViewTextBoxColumn4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
Me.DataGridViewTextBoxColumn4.Width = 30
'
'DataGridViewTextBoxColumn5
'
Me.DataGridViewTextBoxColumn5.HeaderText = "Template"
Me.DataGridViewTextBoxColumn5.Name = "DataGridViewTextBoxColumn5"
Me.DataGridViewTextBoxColumn5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
'
'DataGridViewTextBoxColumn6
'
Me.DataGridViewTextBoxColumn6.HeaderText = "Instance/Label Name"
Me.DataGridViewTextBoxColumn6.Name = "DataGridViewTextBoxColumn6"
Me.DataGridViewTextBoxColumn6.Width = 85
'
'DataGridViewTextBoxColumn7
'
DataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft
DataGridViewCellStyle36.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
Me.DataGridViewTextBoxColumn7.DefaultCellStyle = DataGridViewCellStyle36
Me.DataGridViewTextBoxColumn7.HeaderText = "Value"
Me.DataGridViewTextBoxColumn7.Name = "DataGridViewTextBoxColumn7"
Me.DataGridViewTextBoxColumn7.Width = 290
'
'Label
'
Me.Label.HeaderText = "Label"
Me.Label.Name = "Label"
Me.Label.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
Me.Label.Width = 180
'
'V
'
Me.V.HeaderText = "V"
Me.V.Name = "V"
Me.V.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
Me.V.Width = 30
'
'T
'
Me.T.HeaderText = "T"
Me.T.Name = "T"
Me.T.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
Me.T.Width = 30
'
'Data
'
Me.Data.HeaderText = "Data"
Me.Data.Name = "Data"
Me.Data.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable
'
'InstanceName
'
Me.InstanceName.HeaderText = "Instance/Label Name"
Me.InstanceName.Name = "InstanceName"
Me.InstanceName.Width = 90
'
'Value
'
DataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft
DataGridViewCellStyle29.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
Me.Value.DefaultCellStyle = DataGridViewCellStyle29
Me.Value.HeaderText = "Value"
Me.Value.Name = "Value"
Me.Value.Width = 270
'
'ucHtmlTemplate
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.AutoScroll = True
Me.BackColor = System.Drawing.SystemColors.ControlDarkDark
Me.ClientSize = New System.Drawing.Size(1208, 921)
Me.Controls.Add(Me.gbtemplate)
Me.HideOnClose = True
Me.Name = "ucHtmlTemplate"
Me.Text = "HTML Template"
Me.gbtemplate.ResumeLayout(False)
Me.gbtemplate.PerformLayout()
Me.GroupBox2.ResumeLayout(False)
Me.GroupBox2.PerformLayout()
Me.GroupBox1.ResumeLayout(False)
Me.GroupBox1.PerformLayout()
Me.gbrundown.ResumeLayout(False)
Me.gbrundown.PerformLayout()
Me.MenuStrip1.ResumeLayout(False)
Me.MenuStrip1.PerformLayout()
CType(Me.dgvrundown, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.dgvanytemplate, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
Friend WithEvents gbtemplate As System.Windows.Forms.GroupBox
Friend WithEvents gbrundown As System.Windows.Forms.GroupBox
Friend WithEvents Label269 As System.Windows.Forms.Label
Friend WithEvents Label268 As System.Windows.Forms.Label
Friend WithEvents txtadjusttimeofrundownsec As System.Windows.Forms.TextBox
Friend WithEvents txtadjusttimeofrundownmin As System.Windows.Forms.TextBox
Friend WithEvents cmdadjusttimeofrundown As System.Windows.Forms.Button
Friend WithEvents cmdstopsheduletemplate As System.Windows.Forms.Button
Friend WithEvents cmdstartsheduletemplate As System.Windows.Forms.Button
Friend WithEvents cmbrundowninvoke As System.Windows.Forms.ComboBox
Friend WithEvents cmdrundowninvoke As System.Windows.Forms.Button
Friend WithEvents removetsrundown As System.Windows.Forms.Button
Friend WithEvents nexttsrundown As System.Windows.Forms.Button
Friend WithEvents uptsrundown As System.Windows.Forms.Button
Friend WithEvents downtsrundown As System.Windows.Forms.Button
Friend WithEvents addtsrundown As System.Windows.Forms.Button
Friend WithEvents playtsrundown As System.Windows.Forms.Button
Friend WithEvents stoptsrundown As System.Windows.Forms.Button
Friend WithEvents dgvrundown As System.Windows.Forms.DataGridView
Friend WithEvents cmdaddtorundown As System.Windows.Forms.Button
Friend WithEvents dgvanytemplate As System.Windows.Forms.DataGridView
Friend WithEvents Label10 As System.Windows.Forms.Label
Friend WithEvents cmbinvoke As System.Windows.Forms.ComboBox
Friend WithEvents cmdinvoke As System.Windows.Forms.Button
Friend WithEvents cmdnextframe As System.Windows.Forms.Button
Friend WithEvents txtsearchtemplate As System.Windows.Forms.TextBox
Friend WithEvents lsttemplate As System.Windows.Forms.ListBox
Friend WithEvents cmdclipsearchtemplate As System.Windows.Forms.Button
Friend WithEvents cmdanytemplatestop As System.Windows.Forms.Button
Friend WithEvents cmdanytemplateplay As System.Windows.Forms.Button
Friend WithEvents tmrsheduletemplatestart As System.Windows.Forms.Timer
Friend WithEvents tmrshedultemplateend As System.Windows.Forms.Timer
Friend WithEvents WB1 As WebBrowser
Friend WithEvents cmdanytemplatePause As Button
Friend WithEvents cmblayertemplate As ComboBox
Friend WithEvents DataGridViewTextBoxColumn1 As DataGridViewTextBoxColumn
Friend WithEvents DataGridViewTextBoxColumn2 As DataGridViewTextBoxColumn
Friend WithEvents DataGridViewTextBoxColumn3 As DataGridViewTextBoxColumn
Friend WithEvents DataGridViewTextBoxColumn4 As DataGridViewTextBoxColumn
Friend WithEvents DataGridViewTextBoxColumn6 As DataGridViewTextBoxColumn
Friend WithEvents DataGridViewTextBoxColumn7 As DataGridViewTextBoxColumn
Friend WithEvents cmdPutTestdata As Button
Friend WithEvents MenuStrip1 As MenuStrip
Friend WithEvents FileToolStripMenuItem As ToolStripMenuItem
Friend WithEvents NewToolStripMenuItem As ToolStripMenuItem
Friend WithEvents OpenToolStripMenuItem As ToolStripMenuItem
Friend WithEvents SaveToolStripMenuItem As ToolStripMenuItem
Friend WithEvents EditToolStripMenuItem As ToolStripMenuItem
Friend WithEvents CutToolStripMenuItem As ToolStripMenuItem
Friend WithEvents CopyToolStripMenuItem As ToolStripMenuItem
Friend WithEvents PasteToolStripMenuItem As ToolStripMenuItem
Friend WithEvents Label As DataGridViewTextBoxColumn
Friend WithEvents DataGridViewTextBoxColumn5 As DataGridViewTextBoxColumn
Friend WithEvents V As DataGridViewTextBoxColumn
Friend WithEvents T As DataGridViewTextBoxColumn
Friend WithEvents Data As DataGridViewTextBoxColumn
Friend WithEvents Label2 As Label
Friend WithEvents InstanceName As DataGridViewTextBoxColumn
Friend WithEvents Value As DataGridViewTextBoxColumn
Friend WithEvents Column4 As DataGridViewImageColumn
Friend WithEvents chkLBand As CheckBox
Friend WithEvents txtLBand As TextBox
Friend WithEvents Label3 As Label
Friend WithEvents GroupBox1 As GroupBox
Friend WithEvents chkRCCTemplate As CheckBox
Friend WithEvents cmdStopAnimation As Button
Friend WithEvents GroupBox2 As GroupBox
Friend WithEvents chkRCWebAnimatorTemplate As CheckBox
Friend WithEvents chkanimatetemplate As CheckBox
Friend WithEvents Label1 As Label
Friend WithEvents txtupdatedelay As TextBox
Friend WithEvents cmdPlayandUpdate As Button
Friend WithEvents cmdupdatetemplate As Button
Friend WithEvents ChromiumWebBrowser1 As CefSharp.WinForms.ChromiumWebBrowser
End Class