-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathucCCTV.Designer.vb
1042 lines (1038 loc) · 38.8 KB
/
ucCCTV.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
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class ucCCTV
'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()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.cmd47 = New System.Windows.Forms.Button()
Me.cmd46 = New System.Windows.Forms.Button()
Me.cmd45 = New System.Windows.Forms.Button()
Me.cmd44 = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.Label9 = New System.Windows.Forms.Label()
Me.cmdEditCameraList = New System.Windows.Forms.Button()
Me.cmdOpenCameraList = New System.Windows.Forms.Button()
Me.GroupBox2 = New System.Windows.Forms.GroupBox()
Me.txtTotalCameras = New System.Windows.Forms.TextBox()
Me.Label8 = New System.Windows.Forms.Label()
Me.Label7 = New System.Windows.Forms.Label()
Me.txtIpNetwork = New System.Windows.Forms.TextBox()
Me.Label5 = New System.Windows.Forms.Label()
Me.txtipport = New System.Windows.Forms.TextBox()
Me.txtPassword = New System.Windows.Forms.TextBox()
Me.txtUserName = New System.Windows.Forms.TextBox()
Me.Label6 = New System.Windows.Forms.Label()
Me.Label4 = New System.Windows.Forms.Label()
Me.GroupBox3 = New System.Windows.Forms.GroupBox()
Me.rdo1Camera = New System.Windows.Forms.RadioButton()
Me.chkSwitch = New System.Windows.Forms.CheckBox()
Me.rdo4Camera = New System.Windows.Forms.RadioButton()
Me.txtInterval = New System.Windows.Forms.TextBox()
Me.Label3 = New System.Windows.Forms.Label()
Me.Send11 = New System.Windows.Forms.Button()
Me.send10 = New System.Windows.Forms.Button()
Me.Send9 = New System.Windows.Forms.Button()
Me.Send8 = New System.Windows.Forms.Button()
Me.Send7 = New System.Windows.Forms.Button()
Me.Send6 = New System.Windows.Forms.Button()
Me.Send5 = New System.Windows.Forms.Button()
Me.Send4 = New System.Windows.Forms.Button()
Me.Send3 = New System.Windows.Forms.Button()
Me.Send2 = New System.Windows.Forms.Button()
Me.Send1 = New System.Windows.Forms.Button()
Me.cmd63 = New System.Windows.Forms.Button()
Me.cmd62 = New System.Windows.Forms.Button()
Me.cmd61 = New System.Windows.Forms.Button()
Me.cmd60 = New System.Windows.Forms.Button()
Me.cmd59 = New System.Windows.Forms.Button()
Me.cmd58 = New System.Windows.Forms.Button()
Me.cmd57 = New System.Windows.Forms.Button()
Me.cmd56 = New System.Windows.Forms.Button()
Me.cmd55 = New System.Windows.Forms.Button()
Me.cmd54 = New System.Windows.Forms.Button()
Me.cmd53 = New System.Windows.Forms.Button()
Me.cmd52 = New System.Windows.Forms.Button()
Me.cmd51 = New System.Windows.Forms.Button()
Me.cmd50 = New System.Windows.Forms.Button()
Me.cmd49 = New System.Windows.Forms.Button()
Me.cmd48 = New System.Windows.Forms.Button()
Me.cmd43 = New System.Windows.Forms.Button()
Me.cmd42 = New System.Windows.Forms.Button()
Me.cmd41 = New System.Windows.Forms.Button()
Me.cmd40 = New System.Windows.Forms.Button()
Me.cmd39 = New System.Windows.Forms.Button()
Me.cmd38 = New System.Windows.Forms.Button()
Me.cmd37 = New System.Windows.Forms.Button()
Me.cmd36 = New System.Windows.Forms.Button()
Me.cmd35 = New System.Windows.Forms.Button()
Me.cmd34 = New System.Windows.Forms.Button()
Me.cmd33 = New System.Windows.Forms.Button()
Me.cmd32 = New System.Windows.Forms.Button()
Me.cmd31 = New System.Windows.Forms.Button()
Me.cmd30 = New System.Windows.Forms.Button()
Me.cmd29 = New System.Windows.Forms.Button()
Me.cmd28 = New System.Windows.Forms.Button()
Me.cmd27 = New System.Windows.Forms.Button()
Me.cmd26 = New System.Windows.Forms.Button()
Me.cmd25 = New System.Windows.Forms.Button()
Me.cmd24 = New System.Windows.Forms.Button()
Me.cmd23 = New System.Windows.Forms.Button()
Me.cmd22 = New System.Windows.Forms.Button()
Me.cmd21 = New System.Windows.Forms.Button()
Me.cmd20 = New System.Windows.Forms.Button()
Me.cmdStopall = New System.Windows.Forms.Button()
Me.tmrSwitch = New System.Windows.Forms.Timer(Me.components)
Me.GroupBox1.SuspendLayout()
Me.GroupBox2.SuspendLayout()
Me.GroupBox3.SuspendLayout()
Me.SuspendLayout()
'
'GroupBox1
'
Me.GroupBox1.BackColor = System.Drawing.Color.MistyRose
Me.GroupBox1.Controls.Add(Me.cmd47)
Me.GroupBox1.Controls.Add(Me.cmd46)
Me.GroupBox1.Controls.Add(Me.cmd45)
Me.GroupBox1.Controls.Add(Me.cmd44)
Me.GroupBox1.Controls.Add(Me.Label1)
Me.GroupBox1.Controls.Add(Me.Label9)
Me.GroupBox1.Controls.Add(Me.cmdEditCameraList)
Me.GroupBox1.Controls.Add(Me.cmdOpenCameraList)
Me.GroupBox1.Controls.Add(Me.GroupBox2)
Me.GroupBox1.Controls.Add(Me.GroupBox3)
Me.GroupBox1.Controls.Add(Me.Send11)
Me.GroupBox1.Controls.Add(Me.send10)
Me.GroupBox1.Controls.Add(Me.Send9)
Me.GroupBox1.Controls.Add(Me.Send8)
Me.GroupBox1.Controls.Add(Me.Send7)
Me.GroupBox1.Controls.Add(Me.Send6)
Me.GroupBox1.Controls.Add(Me.Send5)
Me.GroupBox1.Controls.Add(Me.Send4)
Me.GroupBox1.Controls.Add(Me.Send3)
Me.GroupBox1.Controls.Add(Me.Send2)
Me.GroupBox1.Controls.Add(Me.Send1)
Me.GroupBox1.Controls.Add(Me.cmd63)
Me.GroupBox1.Controls.Add(Me.cmd62)
Me.GroupBox1.Controls.Add(Me.cmd61)
Me.GroupBox1.Controls.Add(Me.cmd60)
Me.GroupBox1.Controls.Add(Me.cmd59)
Me.GroupBox1.Controls.Add(Me.cmd58)
Me.GroupBox1.Controls.Add(Me.cmd57)
Me.GroupBox1.Controls.Add(Me.cmd56)
Me.GroupBox1.Controls.Add(Me.cmd55)
Me.GroupBox1.Controls.Add(Me.cmd54)
Me.GroupBox1.Controls.Add(Me.cmd53)
Me.GroupBox1.Controls.Add(Me.cmd52)
Me.GroupBox1.Controls.Add(Me.cmd51)
Me.GroupBox1.Controls.Add(Me.cmd50)
Me.GroupBox1.Controls.Add(Me.cmd49)
Me.GroupBox1.Controls.Add(Me.cmd48)
Me.GroupBox1.Controls.Add(Me.cmd43)
Me.GroupBox1.Controls.Add(Me.cmd42)
Me.GroupBox1.Controls.Add(Me.cmd41)
Me.GroupBox1.Controls.Add(Me.cmd40)
Me.GroupBox1.Controls.Add(Me.cmd39)
Me.GroupBox1.Controls.Add(Me.cmd38)
Me.GroupBox1.Controls.Add(Me.cmd37)
Me.GroupBox1.Controls.Add(Me.cmd36)
Me.GroupBox1.Controls.Add(Me.cmd35)
Me.GroupBox1.Controls.Add(Me.cmd34)
Me.GroupBox1.Controls.Add(Me.cmd33)
Me.GroupBox1.Controls.Add(Me.cmd32)
Me.GroupBox1.Controls.Add(Me.cmd31)
Me.GroupBox1.Controls.Add(Me.cmd30)
Me.GroupBox1.Controls.Add(Me.cmd29)
Me.GroupBox1.Controls.Add(Me.cmd28)
Me.GroupBox1.Controls.Add(Me.cmd27)
Me.GroupBox1.Controls.Add(Me.cmd26)
Me.GroupBox1.Controls.Add(Me.cmd25)
Me.GroupBox1.Controls.Add(Me.cmd24)
Me.GroupBox1.Controls.Add(Me.cmd23)
Me.GroupBox1.Controls.Add(Me.cmd22)
Me.GroupBox1.Controls.Add(Me.cmd21)
Me.GroupBox1.Controls.Add(Me.cmd20)
Me.GroupBox1.Controls.Add(Me.cmdStopall)
Me.GroupBox1.Location = New System.Drawing.Point(4, 4)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(550, 780)
Me.GroupBox1.TabIndex = 0
Me.GroupBox1.TabStop = False
Me.GroupBox1.Text = " "
'
'cmd47
'
Me.cmd47.Location = New System.Drawing.Point(5, 748)
Me.cmd47.Name = "cmd47"
Me.cmd47.Size = New System.Drawing.Size(166, 23)
Me.cmd47.TabIndex = 1338
Me.cmd47.Tag = "47"
Me.cmd47.Text = "Camera 28"
Me.cmd47.UseVisualStyleBackColor = True
'
'cmd46
'
Me.cmd46.Location = New System.Drawing.Point(5, 724)
Me.cmd46.Name = "cmd46"
Me.cmd46.Size = New System.Drawing.Size(166, 23)
Me.cmd46.TabIndex = 1337
Me.cmd46.Tag = "46"
Me.cmd46.Text = "Camera 27"
Me.cmd46.UseVisualStyleBackColor = True
'
'cmd45
'
Me.cmd45.Location = New System.Drawing.Point(5, 699)
Me.cmd45.Name = "cmd45"
Me.cmd45.Size = New System.Drawing.Size(166, 23)
Me.cmd45.TabIndex = 1336
Me.cmd45.Tag = "45"
Me.cmd45.Text = "Camera 26"
Me.cmd45.UseVisualStyleBackColor = True
'
'cmd44
'
Me.cmd44.Location = New System.Drawing.Point(5, 677)
Me.cmd44.Name = "cmd44"
Me.cmd44.Size = New System.Drawing.Size(166, 23)
Me.cmd44.TabIndex = 1335
Me.cmd44.Tag = "44"
Me.cmd44.Text = "Camera 25"
Me.cmd44.UseVisualStyleBackColor = True
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.Location = New System.Drawing.Point(6, 16)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(184, 16)
Me.Label1.TabIndex = 1334
Me.Label1.Text = "Works Good in Server 2.3"
'
'Label9
'
Me.Label9.AutoSize = True
Me.Label9.Location = New System.Drawing.Point(270, 49)
Me.Label9.Name = "Label9"
Me.Label9.Size = New System.Drawing.Size(275, 13)
Me.Label9.TabIndex = 1333
Me.Label9.Text = "Put Visual Name and then last digit of IP in Small Bracket"
'
'cmdEditCameraList
'
Me.cmdEditCameraList.Location = New System.Drawing.Point(130, 44)
Me.cmdEditCameraList.Name = "cmdEditCameraList"
Me.cmdEditCameraList.Size = New System.Drawing.Size(134, 23)
Me.cmdEditCameraList.TabIndex = 1332
Me.cmdEditCameraList.Text = "Edit camera Name and IP"
Me.cmdEditCameraList.UseVisualStyleBackColor = True
'
'cmdOpenCameraList
'
Me.cmdOpenCameraList.Location = New System.Drawing.Point(7, 44)
Me.cmdOpenCameraList.Name = "cmdOpenCameraList"
Me.cmdOpenCameraList.Size = New System.Drawing.Size(117, 23)
Me.cmdOpenCameraList.TabIndex = 1331
Me.cmdOpenCameraList.Text = "Open Camera List"
Me.cmdOpenCameraList.UseVisualStyleBackColor = True
'
'GroupBox2
'
Me.GroupBox2.BackColor = System.Drawing.Color.Salmon
Me.GroupBox2.Controls.Add(Me.txtTotalCameras)
Me.GroupBox2.Controls.Add(Me.Label8)
Me.GroupBox2.Controls.Add(Me.Label7)
Me.GroupBox2.Controls.Add(Me.txtIpNetwork)
Me.GroupBox2.Controls.Add(Me.Label5)
Me.GroupBox2.Controls.Add(Me.txtipport)
Me.GroupBox2.Controls.Add(Me.txtPassword)
Me.GroupBox2.Controls.Add(Me.txtUserName)
Me.GroupBox2.Controls.Add(Me.Label6)
Me.GroupBox2.Controls.Add(Me.Label4)
Me.GroupBox2.Location = New System.Drawing.Point(222, 616)
Me.GroupBox2.Name = "GroupBox2"
Me.GroupBox2.Size = New System.Drawing.Size(157, 155)
Me.GroupBox2.TabIndex = 1327
Me.GroupBox2.TabStop = False
Me.GroupBox2.Text = "Settings"
'
'txtTotalCameras
'
Me.txtTotalCameras.Location = New System.Drawing.Point(81, 120)
Me.txtTotalCameras.Name = "txtTotalCameras"
Me.txtTotalCameras.Size = New System.Drawing.Size(70, 20)
Me.txtTotalCameras.TabIndex = 1267
Me.txtTotalCameras.Text = "44"
'
'Label8
'
Me.Label8.AutoSize = True
Me.Label8.Location = New System.Drawing.Point(6, 123)
Me.Label8.Name = "Label8"
Me.Label8.Size = New System.Drawing.Size(75, 13)
Me.Label8.TabIndex = 1266
Me.Label8.Text = "Total Cameras"
'
'Label7
'
Me.Label7.AutoSize = True
Me.Label7.Location = New System.Drawing.Point(14, 17)
Me.Label7.Name = "Label7"
Me.Label7.Size = New System.Drawing.Size(60, 13)
Me.Label7.TabIndex = 1265
Me.Label7.Text = "IP Network"
'
'txtIpNetwork
'
Me.txtIpNetwork.Location = New System.Drawing.Point(81, 15)
Me.txtIpNetwork.Name = "txtIpNetwork"
Me.txtIpNetwork.Size = New System.Drawing.Size(70, 20)
Me.txtIpNetwork.TabIndex = 1264
Me.txtIpNetwork.Text = "192.168.5."
'
'Label5
'
Me.Label5.AutoSize = True
Me.Label5.Location = New System.Drawing.Point(52, 44)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(26, 13)
Me.Label5.TabIndex = 1263
Me.Label5.Text = "Port"
'
'txtipport
'
Me.txtipport.Location = New System.Drawing.Point(81, 41)
Me.txtipport.Name = "txtipport"
Me.txtipport.Size = New System.Drawing.Size(70, 20)
Me.txtipport.TabIndex = 1262
Me.txtipport.Text = "554"
'
'txtPassword
'
Me.txtPassword.Location = New System.Drawing.Point(81, 94)
Me.txtPassword.Name = "txtPassword"
Me.txtPassword.Size = New System.Drawing.Size(70, 20)
Me.txtPassword.TabIndex = 1260
Me.txtPassword.Text = "admin"
'
'txtUserName
'
Me.txtUserName.Location = New System.Drawing.Point(81, 68)
Me.txtUserName.Name = "txtUserName"
Me.txtUserName.Size = New System.Drawing.Size(70, 20)
Me.txtUserName.TabIndex = 1259
Me.txtUserName.Text = "admin"
'
'Label6
'
Me.Label6.AutoSize = True
Me.Label6.Location = New System.Drawing.Point(25, 97)
Me.Label6.Name = "Label6"
Me.Label6.Size = New System.Drawing.Size(53, 13)
Me.Label6.TabIndex = 1258
Me.Label6.Text = "Password"
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.Location = New System.Drawing.Point(18, 71)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(60, 13)
Me.Label4.TabIndex = 1256
Me.Label4.Text = "User Name"
'
'GroupBox3
'
Me.GroupBox3.BackColor = System.Drawing.Color.Bisque
Me.GroupBox3.Controls.Add(Me.rdo1Camera)
Me.GroupBox3.Controls.Add(Me.chkSwitch)
Me.GroupBox3.Controls.Add(Me.rdo4Camera)
Me.GroupBox3.Controls.Add(Me.txtInterval)
Me.GroupBox3.Controls.Add(Me.Label3)
Me.GroupBox3.Location = New System.Drawing.Point(222, 495)
Me.GroupBox3.Name = "GroupBox3"
Me.GroupBox3.Size = New System.Drawing.Size(157, 116)
Me.GroupBox3.TabIndex = 1326
Me.GroupBox3.TabStop = False
Me.GroupBox3.Text = "Camera Switch Option"
'
'rdo1Camera
'
Me.rdo1Camera.AutoSize = True
Me.rdo1Camera.Checked = True
Me.rdo1Camera.Location = New System.Drawing.Point(11, 65)
Me.rdo1Camera.Name = "rdo1Camera"
Me.rdo1Camera.Size = New System.Drawing.Size(70, 17)
Me.rdo1Camera.TabIndex = 1255
Me.rdo1Camera.TabStop = True
Me.rdo1Camera.Text = "1 Camera"
Me.rdo1Camera.UseVisualStyleBackColor = True
'
'chkSwitch
'
Me.chkSwitch.AutoSize = True
Me.chkSwitch.Location = New System.Drawing.Point(10, 19)
Me.chkSwitch.Name = "chkSwitch"
Me.chkSwitch.Size = New System.Drawing.Size(58, 17)
Me.chkSwitch.TabIndex = 64
Me.chkSwitch.Text = "Switch"
Me.chkSwitch.UseVisualStyleBackColor = True
'
'rdo4Camera
'
Me.rdo4Camera.AutoSize = True
Me.rdo4Camera.Location = New System.Drawing.Point(10, 42)
Me.rdo4Camera.Name = "rdo4Camera"
Me.rdo4Camera.Size = New System.Drawing.Size(70, 17)
Me.rdo4Camera.TabIndex = 1254
Me.rdo4Camera.Text = "4 Camera"
Me.rdo4Camera.UseVisualStyleBackColor = True
'
'txtInterval
'
Me.txtInterval.Location = New System.Drawing.Point(92, 87)
Me.txtInterval.Name = "txtInterval"
Me.txtInterval.Size = New System.Drawing.Size(32, 20)
Me.txtInterval.TabIndex = 66
Me.txtInterval.Text = "10"
Me.txtInterval.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Location = New System.Drawing.Point(5, 90)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(81, 13)
Me.Label3.TabIndex = 65
Me.Label3.Text = "Time in Second"
'
'Send11
'
Me.Send11.Location = New System.Drawing.Point(390, 371)
Me.Send11.Name = "Send11"
Me.Send11.Size = New System.Drawing.Size(40, 90)
Me.Send11.TabIndex = 1325
Me.Send11.Text = "Send"
Me.Send11.UseVisualStyleBackColor = True
'
'send10
'
Me.send10.Location = New System.Drawing.Point(390, 271)
Me.send10.Name = "send10"
Me.send10.Size = New System.Drawing.Size(40, 94)
Me.send10.TabIndex = 1324
Me.send10.Text = "Send"
Me.send10.UseVisualStyleBackColor = True
'
'Send9
'
Me.Send9.Location = New System.Drawing.Point(390, 176)
Me.Send9.Name = "Send9"
Me.Send9.Size = New System.Drawing.Size(40, 90)
Me.Send9.TabIndex = 1323
Me.Send9.Text = "Send"
Me.Send9.UseVisualStyleBackColor = True
'
'Send8
'
Me.Send8.Location = New System.Drawing.Point(390, 78)
Me.Send8.Name = "Send8"
Me.Send8.Size = New System.Drawing.Size(40, 92)
Me.Send8.TabIndex = 1322
Me.Send8.Text = "Send"
Me.Send8.UseVisualStyleBackColor = True
'
'Send7
'
Me.Send7.Location = New System.Drawing.Point(176, 677)
Me.Send7.Name = "Send7"
Me.Send7.Size = New System.Drawing.Size(40, 96)
Me.Send7.TabIndex = 1321
Me.Send7.Text = "Send"
Me.Send7.UseVisualStyleBackColor = True
'
'Send6
'
Me.Send6.Location = New System.Drawing.Point(176, 578)
Me.Send6.Name = "Send6"
Me.Send6.Size = New System.Drawing.Size(40, 93)
Me.Send6.TabIndex = 1320
Me.Send6.Text = "Send"
Me.Send6.UseVisualStyleBackColor = True
'
'Send5
'
Me.Send5.Location = New System.Drawing.Point(176, 481)
Me.Send5.Name = "Send5"
Me.Send5.Size = New System.Drawing.Size(40, 95)
Me.Send5.TabIndex = 1319
Me.Send5.Text = "Send"
Me.Send5.UseVisualStyleBackColor = True
'
'Send4
'
Me.Send4.Location = New System.Drawing.Point(176, 380)
Me.Send4.Name = "Send4"
Me.Send4.Size = New System.Drawing.Size(40, 97)
Me.Send4.TabIndex = 1318
Me.Send4.Text = "Send"
Me.Send4.UseVisualStyleBackColor = True
'
'Send3
'
Me.Send3.Location = New System.Drawing.Point(176, 281)
Me.Send3.Name = "Send3"
Me.Send3.Size = New System.Drawing.Size(40, 97)
Me.Send3.TabIndex = 1317
Me.Send3.Text = "Send"
Me.Send3.UseVisualStyleBackColor = True
'
'Send2
'
Me.Send2.Location = New System.Drawing.Point(176, 181)
Me.Send2.Name = "Send2"
Me.Send2.Size = New System.Drawing.Size(40, 96)
Me.Send2.TabIndex = 1316
Me.Send2.Text = "Send"
Me.Send2.UseVisualStyleBackColor = True
'
'Send1
'
Me.Send1.Location = New System.Drawing.Point(178, 78)
Me.Send1.Name = "Send1"
Me.Send1.Size = New System.Drawing.Size(40, 97)
Me.Send1.TabIndex = 1315
Me.Send1.Text = "Send"
Me.Send1.UseVisualStyleBackColor = True
'
'cmd63
'
Me.cmd63.Location = New System.Drawing.Point(226, 439)
Me.cmd63.Name = "cmd63"
Me.cmd63.Size = New System.Drawing.Size(160, 23)
Me.cmd63.TabIndex = 1314
Me.cmd63.Tag = "63"
Me.cmd63.Text = "Camera 44"
Me.cmd63.UseVisualStyleBackColor = True
'
'cmd62
'
Me.cmd62.Location = New System.Drawing.Point(226, 416)
Me.cmd62.Name = "cmd62"
Me.cmd62.Size = New System.Drawing.Size(160, 23)
Me.cmd62.TabIndex = 1313
Me.cmd62.Tag = "62"
Me.cmd62.Text = "Camera 43"
Me.cmd62.UseVisualStyleBackColor = True
'
'cmd61
'
Me.cmd61.Location = New System.Drawing.Point(226, 393)
Me.cmd61.Name = "cmd61"
Me.cmd61.Size = New System.Drawing.Size(160, 23)
Me.cmd61.TabIndex = 1312
Me.cmd61.Tag = "61"
Me.cmd61.Text = "Camera 42"
Me.cmd61.UseVisualStyleBackColor = True
'
'cmd60
'
Me.cmd60.Location = New System.Drawing.Point(226, 371)
Me.cmd60.Name = "cmd60"
Me.cmd60.Size = New System.Drawing.Size(160, 23)
Me.cmd60.TabIndex = 1311
Me.cmd60.Tag = "60"
Me.cmd60.Text = "Camera 41"
Me.cmd60.UseVisualStyleBackColor = True
'
'cmd59
'
Me.cmd59.Location = New System.Drawing.Point(226, 341)
Me.cmd59.Name = "cmd59"
Me.cmd59.Size = New System.Drawing.Size(160, 23)
Me.cmd59.TabIndex = 1310
Me.cmd59.Tag = "59"
Me.cmd59.Text = "Camera 40"
Me.cmd59.UseVisualStyleBackColor = True
'
'cmd58
'
Me.cmd58.Location = New System.Drawing.Point(226, 317)
Me.cmd58.Name = "cmd58"
Me.cmd58.Size = New System.Drawing.Size(160, 23)
Me.cmd58.TabIndex = 1309
Me.cmd58.Tag = "58"
Me.cmd58.Text = "Camera 39"
Me.cmd58.UseVisualStyleBackColor = True
'
'cmd57
'
Me.cmd57.Location = New System.Drawing.Point(226, 293)
Me.cmd57.Name = "cmd57"
Me.cmd57.Size = New System.Drawing.Size(160, 23)
Me.cmd57.TabIndex = 1308
Me.cmd57.Tag = "57"
Me.cmd57.Text = "Camera 38"
Me.cmd57.UseVisualStyleBackColor = True
'
'cmd56
'
Me.cmd56.Location = New System.Drawing.Point(226, 271)
Me.cmd56.Name = "cmd56"
Me.cmd56.Size = New System.Drawing.Size(160, 23)
Me.cmd56.TabIndex = 1307
Me.cmd56.Tag = "56"
Me.cmd56.Text = "Camera 37"
Me.cmd56.UseVisualStyleBackColor = True
'
'cmd55
'
Me.cmd55.Location = New System.Drawing.Point(226, 243)
Me.cmd55.Name = "cmd55"
Me.cmd55.Size = New System.Drawing.Size(160, 23)
Me.cmd55.TabIndex = 1306
Me.cmd55.Tag = "55"
Me.cmd55.Text = "Camera 36"
Me.cmd55.UseVisualStyleBackColor = True
'
'cmd54
'
Me.cmd54.Location = New System.Drawing.Point(226, 222)
Me.cmd54.Name = "cmd54"
Me.cmd54.Size = New System.Drawing.Size(160, 23)
Me.cmd54.TabIndex = 1305
Me.cmd54.Tag = "54"
Me.cmd54.Text = "Camera 35"
Me.cmd54.UseVisualStyleBackColor = True
'
'cmd53
'
Me.cmd53.Location = New System.Drawing.Point(226, 199)
Me.cmd53.Name = "cmd53"
Me.cmd53.Size = New System.Drawing.Size(160, 23)
Me.cmd53.TabIndex = 1304
Me.cmd53.Tag = "53"
Me.cmd53.Text = "Camera 34"
Me.cmd53.UseVisualStyleBackColor = True
'
'cmd52
'
Me.cmd52.Location = New System.Drawing.Point(226, 176)
Me.cmd52.Name = "cmd52"
Me.cmd52.Size = New System.Drawing.Size(160, 23)
Me.cmd52.TabIndex = 1303
Me.cmd52.Tag = "52"
Me.cmd52.Text = "Camera 33"
Me.cmd52.UseVisualStyleBackColor = True
'
'cmd51
'
Me.cmd51.Location = New System.Drawing.Point(226, 147)
Me.cmd51.Name = "cmd51"
Me.cmd51.Size = New System.Drawing.Size(160, 23)
Me.cmd51.TabIndex = 1302
Me.cmd51.Tag = "51"
Me.cmd51.Text = "Camera 32"
Me.cmd51.UseVisualStyleBackColor = True
'
'cmd50
'
Me.cmd50.Location = New System.Drawing.Point(226, 124)
Me.cmd50.Name = "cmd50"
Me.cmd50.Size = New System.Drawing.Size(160, 23)
Me.cmd50.TabIndex = 1301
Me.cmd50.Tag = "50"
Me.cmd50.Text = "Camera 31"
Me.cmd50.UseVisualStyleBackColor = True
'
'cmd49
'
Me.cmd49.Location = New System.Drawing.Point(226, 100)
Me.cmd49.Name = "cmd49"
Me.cmd49.Size = New System.Drawing.Size(160, 23)
Me.cmd49.TabIndex = 1300
Me.cmd49.Tag = "49"
Me.cmd49.Text = "Camera 30"
Me.cmd49.UseVisualStyleBackColor = True
'
'cmd48
'
Me.cmd48.Location = New System.Drawing.Point(226, 78)
Me.cmd48.Name = "cmd48"
Me.cmd48.Size = New System.Drawing.Size(160, 23)
Me.cmd48.TabIndex = 1299
Me.cmd48.Tag = "48"
Me.cmd48.Text = "Camera 29"
Me.cmd48.UseVisualStyleBackColor = True
'
'cmd43
'
Me.cmd43.Location = New System.Drawing.Point(6, 650)
Me.cmd43.Name = "cmd43"
Me.cmd43.Size = New System.Drawing.Size(164, 23)
Me.cmd43.TabIndex = 1294
Me.cmd43.Tag = "43"
Me.cmd43.Text = "Camera 24"
Me.cmd43.UseVisualStyleBackColor = True
'
'cmd42
'
Me.cmd42.Location = New System.Drawing.Point(6, 625)
Me.cmd42.Name = "cmd42"
Me.cmd42.Size = New System.Drawing.Size(164, 23)
Me.cmd42.TabIndex = 1293
Me.cmd42.Tag = "42"
Me.cmd42.Text = "Camera 23"
Me.cmd42.UseVisualStyleBackColor = True
'
'cmd41
'
Me.cmd41.Location = New System.Drawing.Point(6, 601)
Me.cmd41.Name = "cmd41"
Me.cmd41.Size = New System.Drawing.Size(164, 23)
Me.cmd41.TabIndex = 1292
Me.cmd41.Tag = "41"
Me.cmd41.Text = "Camera 22"
Me.cmd41.UseVisualStyleBackColor = True
'
'cmd40
'
Me.cmd40.Location = New System.Drawing.Point(6, 578)
Me.cmd40.Name = "cmd40"
Me.cmd40.Size = New System.Drawing.Size(164, 23)
Me.cmd40.TabIndex = 1291
Me.cmd40.Tag = "40"
Me.cmd40.Text = "Camera 21"
Me.cmd40.UseVisualStyleBackColor = True
'
'cmd39
'
Me.cmd39.Location = New System.Drawing.Point(6, 552)
Me.cmd39.Name = "cmd39"
Me.cmd39.Size = New System.Drawing.Size(164, 23)
Me.cmd39.TabIndex = 1290
Me.cmd39.Tag = "39"
Me.cmd39.Text = "Camera 20"
Me.cmd39.UseVisualStyleBackColor = True
'
'cmd38
'
Me.cmd38.Location = New System.Drawing.Point(6, 528)
Me.cmd38.Name = "cmd38"
Me.cmd38.Size = New System.Drawing.Size(164, 23)
Me.cmd38.TabIndex = 1289
Me.cmd38.Tag = "38"
Me.cmd38.Text = "Camera 19"
Me.cmd38.UseVisualStyleBackColor = True
'
'cmd37
'
Me.cmd37.Location = New System.Drawing.Point(6, 504)
Me.cmd37.Name = "cmd37"
Me.cmd37.Size = New System.Drawing.Size(164, 23)
Me.cmd37.TabIndex = 1288
Me.cmd37.Tag = "37"
Me.cmd37.Text = "Camera 18"
Me.cmd37.UseVisualStyleBackColor = True
'
'cmd36
'
Me.cmd36.Location = New System.Drawing.Point(6, 481)
Me.cmd36.Name = "cmd36"
Me.cmd36.Size = New System.Drawing.Size(164, 23)
Me.cmd36.TabIndex = 1287
Me.cmd36.Tag = "36"
Me.cmd36.Text = "Camera 17"
Me.cmd36.UseVisualStyleBackColor = True
'
'cmd35
'
Me.cmd35.Location = New System.Drawing.Point(6, 454)
Me.cmd35.Name = "cmd35"
Me.cmd35.Size = New System.Drawing.Size(164, 23)
Me.cmd35.TabIndex = 1286
Me.cmd35.Tag = "35"
Me.cmd35.Text = "Camera 16"
Me.cmd35.UseVisualStyleBackColor = True
'
'cmd34
'
Me.cmd34.Location = New System.Drawing.Point(6, 430)
Me.cmd34.Name = "cmd34"
Me.cmd34.Size = New System.Drawing.Size(164, 23)
Me.cmd34.TabIndex = 1285
Me.cmd34.Tag = "34"
Me.cmd34.Text = "Camera 15"
Me.cmd34.UseVisualStyleBackColor = True
'
'cmd33
'
Me.cmd33.Location = New System.Drawing.Point(6, 405)
Me.cmd33.Name = "cmd33"
Me.cmd33.Size = New System.Drawing.Size(164, 23)
Me.cmd33.TabIndex = 1284
Me.cmd33.Tag = "33"
Me.cmd33.Text = "Camera 14"
Me.cmd33.UseVisualStyleBackColor = True
'
'cmd32
'
Me.cmd32.Location = New System.Drawing.Point(6, 380)
Me.cmd32.Name = "cmd32"
Me.cmd32.Size = New System.Drawing.Size(164, 23)
Me.cmd32.TabIndex = 1283
Me.cmd32.Tag = "32"
Me.cmd32.Text = "Camera 13"
Me.cmd32.UseVisualStyleBackColor = True
'
'cmd31
'
Me.cmd31.Location = New System.Drawing.Point(6, 354)
Me.cmd31.Name = "cmd31"
Me.cmd31.Size = New System.Drawing.Size(164, 23)
Me.cmd31.TabIndex = 1282
Me.cmd31.Tag = "31"
Me.cmd31.Text = "Camera 12"
Me.cmd31.UseVisualStyleBackColor = True
'
'cmd30
'
Me.cmd30.Location = New System.Drawing.Point(6, 329)
Me.cmd30.Name = "cmd30"
Me.cmd30.Size = New System.Drawing.Size(164, 23)
Me.cmd30.TabIndex = 1281
Me.cmd30.Tag = "30"
Me.cmd30.Text = "Camera 11"
Me.cmd30.UseVisualStyleBackColor = True
'
'cmd29
'
Me.cmd29.Location = New System.Drawing.Point(6, 303)
Me.cmd29.Name = "cmd29"
Me.cmd29.Size = New System.Drawing.Size(164, 23)
Me.cmd29.TabIndex = 1280
Me.cmd29.Tag = "29"
Me.cmd29.Text = "Camera 10"
Me.cmd29.UseVisualStyleBackColor = True
'
'cmd28
'
Me.cmd28.Location = New System.Drawing.Point(6, 281)
Me.cmd28.Name = "cmd28"
Me.cmd28.Size = New System.Drawing.Size(164, 23)
Me.cmd28.TabIndex = 1279
Me.cmd28.Tag = "28"
Me.cmd28.Text = "Camera 9"
Me.cmd28.UseVisualStyleBackColor = True
'
'cmd27
'
Me.cmd27.Location = New System.Drawing.Point(6, 254)
Me.cmd27.Name = "cmd27"
Me.cmd27.Size = New System.Drawing.Size(164, 23)
Me.cmd27.TabIndex = 1278
Me.cmd27.Tag = "27"
Me.cmd27.Text = "Camera 8"
Me.cmd27.UseVisualStyleBackColor = True
'
'cmd26
'
Me.cmd26.Location = New System.Drawing.Point(6, 230)
Me.cmd26.Name = "cmd26"
Me.cmd26.Size = New System.Drawing.Size(164, 23)
Me.cmd26.TabIndex = 1277
Me.cmd26.Tag = "26"
Me.cmd26.Text = "Camera 7"
Me.cmd26.UseVisualStyleBackColor = True
'
'cmd25
'
Me.cmd25.Location = New System.Drawing.Point(6, 204)
Me.cmd25.Name = "cmd25"
Me.cmd25.Size = New System.Drawing.Size(164, 23)
Me.cmd25.TabIndex = 1276
Me.cmd25.Tag = "25"
Me.cmd25.Text = "Camera 6"
Me.cmd25.UseVisualStyleBackColor = True
'
'cmd24
'
Me.cmd24.Location = New System.Drawing.Point(6, 181)
Me.cmd24.Name = "cmd24"
Me.cmd24.Size = New System.Drawing.Size(164, 23)
Me.cmd24.TabIndex = 1275
Me.cmd24.Tag = "24"
Me.cmd24.Text = "Camera 5"
Me.cmd24.UseVisualStyleBackColor = True
'
'cmd23
'
Me.cmd23.Location = New System.Drawing.Point(6, 152)
Me.cmd23.Name = "cmd23"
Me.cmd23.Size = New System.Drawing.Size(164, 23)
Me.cmd23.TabIndex = 1274
Me.cmd23.Tag = "23"
Me.cmd23.Text = "Camera 4"
Me.cmd23.UseVisualStyleBackColor = True
'
'cmd22
'
Me.cmd22.Location = New System.Drawing.Point(6, 127)
Me.cmd22.Name = "cmd22"
Me.cmd22.Size = New System.Drawing.Size(164, 23)
Me.cmd22.TabIndex = 1273
Me.cmd22.Tag = "22"
Me.cmd22.Text = "Camera 3"
Me.cmd22.UseVisualStyleBackColor = True
'
'cmd21
'
Me.cmd21.Location = New System.Drawing.Point(6, 102)
Me.cmd21.Name = "cmd21"
Me.cmd21.Size = New System.Drawing.Size(164, 23)
Me.cmd21.TabIndex = 1272
Me.cmd21.Tag = "21"
Me.cmd21.Text = "Camera 2"
Me.cmd21.UseVisualStyleBackColor = True
'
'cmd20
'
Me.cmd20.Location = New System.Drawing.Point(6, 78)
Me.cmd20.Name = "cmd20"
Me.cmd20.Size = New System.Drawing.Size(164, 23)
Me.cmd20.TabIndex = 1271
Me.cmd20.Tag = "20"
Me.cmd20.Text = "Camera 1"
Me.cmd20.UseVisualStyleBackColor = True
'
'cmdStopall
'
Me.cmdStopall.BackColor = System.Drawing.Color.Red
Me.cmdStopall.Location = New System.Drawing.Point(436, 78)
Me.cmdStopall.Name = "cmdStopall"
Me.cmdStopall.Size = New System.Drawing.Size(52, 697)
Me.cmdStopall.TabIndex = 1270
Me.cmdStopall.Text = "Stop"
Me.cmdStopall.UseVisualStyleBackColor = False
'
'tmrSwitch
'
Me.tmrSwitch.Interval = 4000
'
'ucCCTV
'
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.GroupBox1)
Me.HideOnClose = True
Me.Name = "ucCCTV"
Me.Text = "CCTV"
Me.GroupBox1.ResumeLayout(False)
Me.GroupBox1.PerformLayout()
Me.GroupBox2.ResumeLayout(False)
Me.GroupBox2.PerformLayout()
Me.GroupBox3.ResumeLayout(False)
Me.GroupBox3.PerformLayout()
Me.ResumeLayout(False)
End Sub
Friend WithEvents GroupBox1 As GroupBox
Friend WithEvents GroupBox2 As GroupBox
Friend WithEvents Label8 As Label
Friend WithEvents Label7 As Label
Friend WithEvents Label5 As Label
Friend WithEvents Label6 As Label
Friend WithEvents Label4 As Label
Friend WithEvents GroupBox3 As GroupBox
Friend WithEvents rdo1Camera As RadioButton
Friend WithEvents chkSwitch As CheckBox
Friend WithEvents rdo4Camera As RadioButton
Friend WithEvents txtInterval As TextBox
Friend WithEvents Label3 As Label
Friend WithEvents Send11 As Button
Friend WithEvents send10 As Button
Friend WithEvents Send9 As Button
Friend WithEvents Send8 As Button
Friend WithEvents Send7 As Button
Friend WithEvents Send6 As Button
Friend WithEvents Send5 As Button
Friend WithEvents Send4 As Button
Friend WithEvents Send3 As Button
Friend WithEvents Send2 As Button
Friend WithEvents Send1 As Button
Friend WithEvents cmd63 As Button
Friend WithEvents cmd62 As Button
Friend WithEvents cmd61 As Button
Friend WithEvents cmd60 As Button
Friend WithEvents cmd59 As Button
Friend WithEvents cmd58 As Button
Friend WithEvents cmd57 As Button
Friend WithEvents cmd56 As Button
Friend WithEvents cmd55 As Button
Friend WithEvents cmd54 As Button
Friend WithEvents cmd53 As Button
Friend WithEvents cmd52 As Button
Friend WithEvents cmd51 As Button
Friend WithEvents cmd50 As Button