-
Notifications
You must be signed in to change notification settings - Fork 4
/
Form1.Designer.vb
728 lines (723 loc) · 30.6 KB
/
Form1.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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
Inherits System.Windows.Forms.Form
'フォームがコンポーネントの一覧をクリーンアップするために dispose をオーバーライドします。
<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
'Windows フォーム デザイナーで必要です。
Private components As System.ComponentModel.IContainer
'メモ: 以下のプロシージャは Windows フォーム デザイナーで必要です。
'Windows フォーム デザイナーを使用して変更できます。
'コード エディターを使って変更しないでください。
<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.buttonHlsAppPath = New System.Windows.Forms.Button()
Me.buttonUdpAppPath = New System.Windows.Forms.Button()
Me.textBoxHlsOpt2 = New System.Windows.Forms.TextBox()
Me.labelHlsOpt2 = New System.Windows.Forms.Label()
Me.textBoxHlsApp = New System.Windows.Forms.TextBox()
Me.labelHlsApp = New System.Windows.Forms.Label()
Me.textBoxUdpApp = New System.Windows.Forms.TextBox()
Me.labelUdpApp = New System.Windows.Forms.Label()
Me.textHttpPortNumber = New System.Windows.Forms.TextBox()
Me.labelPortNuber = New System.Windows.Forms.Label()
Me.ButtonMovieStart = New System.Windows.Forms.Button()
Me.ButtonMovieStop = New System.Windows.Forms.Button()
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.ButtonWebStop = New System.Windows.Forms.Button()
Me.ButtonWebStart = New System.Windows.Forms.Button()
Me.ComboBoxNum = New System.Windows.Forms.ComboBox()
Me.textBoxUdpPort = New System.Windows.Forms.TextBox()
Me.Label2 = New System.Windows.Forms.Label()
Me.TextBoxChSpace = New System.Windows.Forms.TextBox()
Me.Label3 = New System.Windows.Forms.Label()
Me.ButtonWWWROOT = New System.Windows.Forms.Button()
Me.TextBoxWWWroot = New System.Windows.Forms.TextBox()
Me.Label4 = New System.Windows.Forms.Label()
Me.TextBoxLog = New System.Windows.Forms.TextBox()
Me.Label5 = New System.Windows.Forms.Label()
Me.Label6 = New System.Windows.Forms.Label()
Me.Label7 = New System.Windows.Forms.Label()
Me.ButtonBonDriverPath = New System.Windows.Forms.Button()
Me.TextBoxBonDriverPath = New System.Windows.Forms.TextBox()
Me.Label8 = New System.Windows.Forms.Label()
Me.ComboBoxBonDriver = New System.Windows.Forms.ComboBox()
Me.ComboBoxServiceID = New System.Windows.Forms.ComboBox()
Me.Button2 = New System.Windows.Forms.Button()
Me.FolderBrowserDialog1 = New System.Windows.Forms.FolderBrowserDialog()
Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog()
Me.Label9 = New System.Windows.Forms.Label()
Me.ComboBoxResolution = New System.Windows.Forms.ComboBox()
Me.Button1 = New System.Windows.Forms.Button()
Me.ButtonHLSoption = New System.Windows.Forms.Button()
Me.Button5 = New System.Windows.Forms.Button()
Me.Button6 = New System.Windows.Forms.Button()
Me.Label10 = New System.Windows.Forms.Label()
Me.ButtonFILEROOT = New System.Windows.Forms.Button()
Me.TextBoxFILEROOT = New System.Windows.Forms.TextBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.NotifyIcon1 = New System.Windows.Forms.NotifyIcon(Me.components)
Me.ContextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.終了ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.CheckBoxShowConsole = New System.Windows.Forms.CheckBox()
Me.LabelStream = New System.Windows.Forms.Label()
Me.TextBoxUdpOpt3 = New System.Windows.Forms.TextBox()
Me.Label11 = New System.Windows.Forms.Label()
Me.Button3 = New System.Windows.Forms.Button()
Me.TextBoxID = New System.Windows.Forms.TextBox()
Me.TextBoxPASS = New System.Windows.Forms.TextBox()
Me.Label12 = New System.Windows.Forms.Label()
Me.Label13 = New System.Windows.Forms.Label()
Me.Label14 = New System.Windows.Forms.Label()
Me.ContextMenuStrip1.SuspendLayout()
Me.SuspendLayout()
'
'buttonHlsAppPath
'
Me.buttonHlsAppPath.Location = New System.Drawing.Point(491, 254)
Me.buttonHlsAppPath.Name = "buttonHlsAppPath"
Me.buttonHlsAppPath.Size = New System.Drawing.Size(25, 19)
Me.buttonHlsAppPath.TabIndex = 38
Me.buttonHlsAppPath.TabStop = False
Me.buttonHlsAppPath.Text = "..."
Me.buttonHlsAppPath.UseVisualStyleBackColor = True
'
'buttonUdpAppPath
'
Me.buttonUdpAppPath.Location = New System.Drawing.Point(492, 160)
Me.buttonUdpAppPath.Name = "buttonUdpAppPath"
Me.buttonUdpAppPath.Size = New System.Drawing.Size(25, 19)
Me.buttonUdpAppPath.TabIndex = 23
Me.buttonUdpAppPath.TabStop = False
Me.buttonUdpAppPath.Text = "..."
Me.buttonUdpAppPath.UseVisualStyleBackColor = True
'
'textBoxHlsOpt2
'
Me.textBoxHlsOpt2.Location = New System.Drawing.Point(102, 279)
Me.textBoxHlsOpt2.Multiline = True
Me.textBoxHlsOpt2.Name = "textBoxHlsOpt2"
Me.textBoxHlsOpt2.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
Me.textBoxHlsOpt2.Size = New System.Drawing.Size(415, 118)
Me.textBoxHlsOpt2.TabIndex = 40
Me.textBoxHlsOpt2.TabStop = False
'
'labelHlsOpt2
'
Me.labelHlsOpt2.AutoSize = True
Me.labelHlsOpt2.Location = New System.Drawing.Point(8, 282)
Me.labelHlsOpt2.Name = "labelHlsOpt2"
Me.labelHlsOpt2.Size = New System.Drawing.Size(73, 12)
Me.labelHlsOpt2.TabIndex = 26
Me.labelHlsOpt2.Text = "HLS オプション"
'
'textBoxHlsApp
'
Me.textBoxHlsApp.Location = New System.Drawing.Point(102, 254)
Me.textBoxHlsApp.Name = "textBoxHlsApp"
Me.textBoxHlsApp.Size = New System.Drawing.Size(384, 19)
Me.textBoxHlsApp.TabIndex = 37
Me.textBoxHlsApp.TabStop = False
'
'labelHlsApp
'
Me.labelHlsApp.AutoSize = True
Me.labelHlsApp.Location = New System.Drawing.Point(8, 257)
Me.labelHlsApp.Name = "labelHlsApp"
Me.labelHlsApp.Size = New System.Drawing.Size(51, 12)
Me.labelHlsApp.TabIndex = 29
Me.labelHlsApp.Text = "HLSアプリ"
'
'textBoxUdpApp
'
Me.textBoxUdpApp.Location = New System.Drawing.Point(102, 160)
Me.textBoxUdpApp.Name = "textBoxUdpApp"
Me.textBoxUdpApp.Size = New System.Drawing.Size(384, 19)
Me.textBoxUdpApp.TabIndex = 22
Me.textBoxUdpApp.TabStop = False
'
'labelUdpApp
'
Me.labelUdpApp.AutoSize = True
Me.labelUdpApp.Location = New System.Drawing.Point(7, 163)
Me.labelUdpApp.Name = "labelUdpApp"
Me.labelUdpApp.Size = New System.Drawing.Size(53, 12)
Me.labelUdpApp.TabIndex = 27
Me.labelUdpApp.Text = "UDPアプリ"
'
'textHttpPortNumber
'
Me.textHttpPortNumber.Location = New System.Drawing.Point(101, 106)
Me.textHttpPortNumber.Name = "textHttpPortNumber"
Me.textHttpPortNumber.Size = New System.Drawing.Size(43, 19)
Me.textHttpPortNumber.TabIndex = 42
Me.textHttpPortNumber.TabStop = False
Me.textHttpPortNumber.Text = "40003"
'
'labelPortNuber
'
Me.labelPortNuber.AutoSize = True
Me.labelPortNuber.Location = New System.Drawing.Point(5, 109)
Me.labelPortNuber.Name = "labelPortNuber"
Me.labelPortNuber.Size = New System.Drawing.Size(80, 12)
Me.labelPortNuber.TabIndex = 21
Me.labelPortNuber.Text = "HTTPポート (*)"
'
'ButtonMovieStart
'
Me.ButtonMovieStart.Location = New System.Drawing.Point(374, 510)
Me.ButtonMovieStart.Name = "ButtonMovieStart"
Me.ButtonMovieStart.Size = New System.Drawing.Size(68, 28)
Me.ButtonMovieStart.TabIndex = 49
Me.ButtonMovieStart.TabStop = False
Me.ButtonMovieStart.Text = "Start"
Me.ButtonMovieStart.UseVisualStyleBackColor = True
'
'ButtonMovieStop
'
Me.ButtonMovieStop.Location = New System.Drawing.Point(448, 510)
Me.ButtonMovieStop.Name = "ButtonMovieStop"
Me.ButtonMovieStop.Size = New System.Drawing.Size(68, 28)
Me.ButtonMovieStop.TabIndex = 50
Me.ButtonMovieStop.TabStop = False
Me.ButtonMovieStop.Text = "Stop"
Me.ButtonMovieStop.UseVisualStyleBackColor = True
'
'Timer1
'
Me.Timer1.Interval = 1000
'
'ButtonWebStop
'
Me.ButtonWebStop.Enabled = False
Me.ButtonWebStop.Location = New System.Drawing.Point(224, 103)
Me.ButtonWebStop.Name = "ButtonWebStop"
Me.ButtonWebStop.Size = New System.Drawing.Size(68, 28)
Me.ButtonWebStop.TabIndex = 52
Me.ButtonWebStop.TabStop = False
Me.ButtonWebStop.Text = "WebStop"
Me.ButtonWebStop.UseVisualStyleBackColor = True
Me.ButtonWebStop.Visible = False
'
'ButtonWebStart
'
Me.ButtonWebStart.Location = New System.Drawing.Point(205, 103)
Me.ButtonWebStart.Name = "ButtonWebStart"
Me.ButtonWebStart.Size = New System.Drawing.Size(68, 28)
Me.ButtonWebStart.TabIndex = 51
Me.ButtonWebStart.TabStop = False
Me.ButtonWebStart.Text = "WebStart"
Me.ButtonWebStart.UseVisualStyleBackColor = True
Me.ButtonWebStart.Visible = False
'
'ComboBoxNum
'
Me.ComboBoxNum.FormattingEnabled = True
Me.ComboBoxNum.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"})
Me.ComboBoxNum.Location = New System.Drawing.Point(102, 439)
Me.ComboBoxNum.Name = "ComboBoxNum"
Me.ComboBoxNum.Size = New System.Drawing.Size(51, 20)
Me.ComboBoxNum.TabIndex = 53
Me.ComboBoxNum.TabStop = False
Me.ComboBoxNum.Text = "1"
'
'textBoxUdpPort
'
Me.textBoxUdpPort.Location = New System.Drawing.Point(102, 210)
Me.textBoxUdpPort.Name = "textBoxUdpPort"
Me.textBoxUdpPort.Size = New System.Drawing.Size(43, 19)
Me.textBoxUdpPort.TabIndex = 55
Me.textBoxUdpPort.TabStop = False
Me.textBoxUdpPort.Text = "42424"
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(6, 213)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(74, 12)
Me.Label2.TabIndex = 54
Me.Label2.Text = "UDPポート (*)"
'
'TextBoxChSpace
'
Me.TextBoxChSpace.Location = New System.Drawing.Point(102, 490)
Me.TextBoxChSpace.Name = "TextBoxChSpace"
Me.TextBoxChSpace.Size = New System.Drawing.Size(28, 19)
Me.TextBoxChSpace.TabIndex = 57
Me.TextBoxChSpace.TabStop = False
Me.TextBoxChSpace.Text = "0"
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Location = New System.Drawing.Point(8, 493)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(47, 12)
Me.Label3.TabIndex = 56
Me.Label3.Text = "chspace"
'
'ButtonWWWROOT
'
Me.ButtonWWWROOT.Location = New System.Drawing.Point(492, 30)
Me.ButtonWWWROOT.Name = "ButtonWWWROOT"
Me.ButtonWWWROOT.Size = New System.Drawing.Size(25, 19)
Me.ButtonWWWROOT.TabIndex = 60
Me.ButtonWWWROOT.TabStop = False
Me.ButtonWWWROOT.Text = "..."
Me.ButtonWWWROOT.UseVisualStyleBackColor = True
'
'TextBoxWWWroot
'
Me.TextBoxWWWroot.Location = New System.Drawing.Point(102, 30)
Me.TextBoxWWWroot.Name = "TextBoxWWWroot"
Me.TextBoxWWWroot.Size = New System.Drawing.Size(384, 19)
Me.TextBoxWWWroot.TabIndex = 59
Me.TextBoxWWWroot.TabStop = False
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.Location = New System.Drawing.Point(7, 33)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(93, 12)
Me.Label4.TabIndex = 61
Me.Label4.Text = "%WWWROOT% (*)"
'
'TextBoxLog
'
Me.TextBoxLog.Location = New System.Drawing.Point(0, 544)
Me.TextBoxLog.Multiline = True
Me.TextBoxLog.Name = "TextBoxLog"
Me.TextBoxLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
Me.TextBoxLog.Size = New System.Drawing.Size(529, 141)
Me.TextBoxLog.TabIndex = 62
'
'Label5
'
Me.Label5.AutoSize = True
Me.Label5.Location = New System.Drawing.Point(8, 468)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(56, 12)
Me.Label5.TabIndex = 65
Me.Label5.Text = "BonDriver"
'
'Label6
'
Me.Label6.AutoSize = True
Me.Label6.Location = New System.Drawing.Point(8, 518)
Me.Label6.Name = "Label6"
Me.Label6.Size = New System.Drawing.Size(54, 12)
Me.Label6.TabIndex = 66
Me.Label6.Text = "ServiceID"
'
'Label7
'
Me.Label7.AutoSize = True
Me.Label7.Location = New System.Drawing.Point(8, 442)
Me.Label7.Name = "Label7"
Me.Label7.Size = New System.Drawing.Size(92, 12)
Me.Label7.TabIndex = 67
Me.Label7.Text = "ストリーム Number"
'
'ButtonBonDriverPath
'
Me.ButtonBonDriverPath.Location = New System.Drawing.Point(492, 185)
Me.ButtonBonDriverPath.Name = "ButtonBonDriverPath"
Me.ButtonBonDriverPath.Size = New System.Drawing.Size(25, 19)
Me.ButtonBonDriverPath.TabIndex = 69
Me.ButtonBonDriverPath.TabStop = False
Me.ButtonBonDriverPath.Text = "..."
Me.ButtonBonDriverPath.UseVisualStyleBackColor = True
'
'TextBoxBonDriverPath
'
Me.TextBoxBonDriverPath.Location = New System.Drawing.Point(102, 185)
Me.TextBoxBonDriverPath.Name = "TextBoxBonDriverPath"
Me.TextBoxBonDriverPath.Size = New System.Drawing.Size(384, 19)
Me.TextBoxBonDriverPath.TabIndex = 68
Me.TextBoxBonDriverPath.TabStop = False
'
'Label8
'
Me.Label8.AutoSize = True
Me.Label8.Location = New System.Drawing.Point(7, 188)
Me.Label8.Name = "Label8"
Me.Label8.Size = New System.Drawing.Size(83, 12)
Me.Label8.TabIndex = 70
Me.Label8.Text = "BonDriver Path"
'
'ComboBoxBonDriver
'
Me.ComboBoxBonDriver.FormattingEnabled = True
Me.ComboBoxBonDriver.Location = New System.Drawing.Point(102, 464)
Me.ComboBoxBonDriver.Name = "ComboBoxBonDriver"
Me.ComboBoxBonDriver.Size = New System.Drawing.Size(210, 20)
Me.ComboBoxBonDriver.TabIndex = 71
Me.ComboBoxBonDriver.TabStop = False
'
'ComboBoxServiceID
'
Me.ComboBoxServiceID.FormattingEnabled = True
Me.ComboBoxServiceID.Location = New System.Drawing.Point(102, 515)
Me.ComboBoxServiceID.Name = "ComboBoxServiceID"
Me.ComboBoxServiceID.Size = New System.Drawing.Size(249, 20)
Me.ComboBoxServiceID.TabIndex = 72
Me.ComboBoxServiceID.TabStop = False
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(414, 103)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(102, 28)
Me.Button2.TabIndex = 73
Me.Button2.TabStop = False
Me.Button2.Text = "index.htmlを開く"
Me.Button2.UseVisualStyleBackColor = True
'
'OpenFileDialog1
'
Me.OpenFileDialog1.FileName = "OpenFileDialog1"
'
'Label9
'
Me.Label9.AutoSize = True
Me.Label9.Location = New System.Drawing.Point(200, 213)
Me.Label9.Name = "Label9"
Me.Label9.Size = New System.Drawing.Size(56, 12)
Me.Label9.TabIndex = 74
Me.Label9.Text = "+Number"
'
'ComboBoxResolution
'
Me.ComboBoxResolution.FormattingEnabled = True
Me.ComboBoxResolution.Location = New System.Drawing.Point(322, 403)
Me.ComboBoxResolution.Name = "ComboBoxResolution"
Me.ComboBoxResolution.Size = New System.Drawing.Size(87, 20)
Me.ComboBoxResolution.TabIndex = 75
Me.ComboBoxResolution.TabStop = False
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(279, 103)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(129, 28)
Me.Button1.TabIndex = 76
Me.Button1.TabStop = False
Me.Button1.Text = "設定ファイルを編集(*)"
Me.Button1.UseVisualStyleBackColor = True
'
'ButtonHLSoption
'
Me.ButtonHLSoption.Location = New System.Drawing.Point(415, 398)
Me.ButtonHLSoption.Name = "ButtonHLSoption"
Me.ButtonHLSoption.Size = New System.Drawing.Size(102, 28)
Me.ButtonHLSoption.TabIndex = 77
Me.ButtonHLSoption.TabStop = False
Me.ButtonHLSoption.Text = "HLS_option.txt(*)"
Me.ButtonHLSoption.UseVisualStyleBackColor = True
'
'Button5
'
Me.Button5.Location = New System.Drawing.Point(147, 103)
Me.Button5.Name = "Button5"
Me.Button5.Size = New System.Drawing.Size(52, 25)
Me.Button5.TabIndex = 79
Me.Button5.TabStop = False
Me.Button5.Text = "初期値"
Me.Button5.UseVisualStyleBackColor = True
'
'Button6
'
Me.Button6.Location = New System.Drawing.Point(148, 207)
Me.Button6.Name = "Button6"
Me.Button6.Size = New System.Drawing.Size(52, 25)
Me.Button6.TabIndex = 80
Me.Button6.TabStop = False
Me.Button6.Text = "初期値"
Me.Button6.UseVisualStyleBackColor = True
'
'Label10
'
Me.Label10.AutoSize = True
Me.Label10.Location = New System.Drawing.Point(312, 9)
Me.Label10.Name = "Label10"
Me.Label10.Size = New System.Drawing.Size(204, 12)
Me.Label10.TabIndex = 81
Me.Label10.Text = "(*)変更後はこのアプリを再起動してください"
'
'ButtonFILEROOT
'
Me.ButtonFILEROOT.Location = New System.Drawing.Point(492, 55)
Me.ButtonFILEROOT.Name = "ButtonFILEROOT"
Me.ButtonFILEROOT.Size = New System.Drawing.Size(25, 19)
Me.ButtonFILEROOT.TabIndex = 83
Me.ButtonFILEROOT.TabStop = False
Me.ButtonFILEROOT.Text = "..."
Me.ButtonFILEROOT.UseVisualStyleBackColor = True
'
'TextBoxFILEROOT
'
Me.TextBoxFILEROOT.Location = New System.Drawing.Point(102, 55)
Me.TextBoxFILEROOT.Name = "TextBoxFILEROOT"
Me.TextBoxFILEROOT.Size = New System.Drawing.Size(384, 19)
Me.TextBoxFILEROOT.TabIndex = 82
Me.TextBoxFILEROOT.TabStop = False
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(7, 58)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(89, 12)
Me.Label1.TabIndex = 84
Me.Label1.Text = "%FILEROOT% (*)"
'
'NotifyIcon1
'
Me.NotifyIcon1.ContextMenuStrip = Me.ContextMenuStrip1
Me.NotifyIcon1.Icon = CType(resources.GetObject("NotifyIcon1.Icon"), System.Drawing.Icon)
Me.NotifyIcon1.Text = "TvRemoteViewer_VB"
Me.NotifyIcon1.Visible = True
'
'ContextMenuStrip1
'
Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.終了ToolStripMenuItem})
Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
Me.ContextMenuStrip1.ShowImageMargin = False
Me.ContextMenuStrip1.Size = New System.Drawing.Size(76, 26)
'
'終了ToolStripMenuItem
'
Me.終了ToolStripMenuItem.Name = "終了ToolStripMenuItem"
Me.終了ToolStripMenuItem.Size = New System.Drawing.Size(75, 22)
Me.終了ToolStripMenuItem.Text = "終了"
'
'CheckBoxShowConsole
'
Me.CheckBoxShowConsole.AutoSize = True
Me.CheckBoxShowConsole.Location = New System.Drawing.Point(395, 479)
Me.CheckBoxShowConsole.Name = "CheckBoxShowConsole"
Me.CheckBoxShowConsole.Size = New System.Drawing.Size(122, 16)
Me.CheckBoxShowConsole.TabIndex = 86
Me.CheckBoxShowConsole.TabStop = False
Me.CheckBoxShowConsole.Text = "コンソールを表示する"
Me.CheckBoxShowConsole.UseVisualStyleBackColor = True
'
'LabelStream
'
Me.LabelStream.AutoSize = True
Me.LabelStream.Location = New System.Drawing.Point(165, 443)
Me.LabelStream.Name = "LabelStream"
Me.LabelStream.Size = New System.Drawing.Size(47, 12)
Me.LabelStream.TabIndex = 88
Me.LabelStream.Text = "配信中:"
'
'TextBoxUdpOpt3
'
Me.TextBoxUdpOpt3.Location = New System.Drawing.Point(374, 210)
Me.TextBoxUdpOpt3.Name = "TextBoxUdpOpt3"
Me.TextBoxUdpOpt3.Size = New System.Drawing.Size(91, 19)
Me.TextBoxUdpOpt3.TabIndex = 90
Me.TextBoxUdpOpt3.TabStop = False
Me.TextBoxUdpOpt3.Text = "/sendservice 1"
'
'Label11
'
Me.Label11.AutoSize = True
Me.Label11.Location = New System.Drawing.Point(278, 213)
Me.Label11.Name = "Label11"
Me.Label11.Size = New System.Drawing.Size(95, 12)
Me.Label11.TabIndex = 89
Me.Label11.Text = "追加UDPオプション"
'
'Button3
'
Me.Button3.Location = New System.Drawing.Point(469, 207)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(50, 25)
Me.Button3.TabIndex = 91
Me.Button3.TabStop = False
Me.Button3.Text = "初期値"
Me.Button3.UseVisualStyleBackColor = True
'
'TextBoxID
'
Me.TextBoxID.Location = New System.Drawing.Point(121, 80)
Me.TextBoxID.Name = "TextBoxID"
Me.TextBoxID.Size = New System.Drawing.Size(91, 19)
Me.TextBoxID.TabIndex = 92
Me.TextBoxID.TabStop = False
'
'TextBoxPASS
'
Me.TextBoxPASS.Location = New System.Drawing.Point(258, 80)
Me.TextBoxPASS.Name = "TextBoxPASS"
Me.TextBoxPASS.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42)
Me.TextBoxPASS.Size = New System.Drawing.Size(91, 19)
Me.TextBoxPASS.TabIndex = 93
Me.TextBoxPASS.TabStop = False
'
'Label12
'
Me.Label12.AutoSize = True
Me.Label12.Location = New System.Drawing.Point(6, 83)
Me.Label12.Name = "Label12"
Me.Label12.Size = New System.Drawing.Size(81, 12)
Me.Label12.TabIndex = 94
Me.Label12.Text = "BASIC認証 (*)"
'
'Label13
'
Me.Label13.AutoSize = True
Me.Label13.Location = New System.Drawing.Point(102, 83)
Me.Label13.Name = "Label13"
Me.Label13.Size = New System.Drawing.Size(16, 12)
Me.Label13.TabIndex = 95
Me.Label13.Text = "ID"
'
'Label14
'
Me.Label14.AutoSize = True
Me.Label14.Location = New System.Drawing.Point(221, 83)
Me.Label14.Name = "Label14"
Me.Label14.Size = New System.Drawing.Size(34, 12)
Me.Label14.TabIndex = 96
Me.Label14.Text = "PASS"
'
'Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(530, 685)
Me.Controls.Add(Me.Label14)
Me.Controls.Add(Me.Label13)
Me.Controls.Add(Me.Label12)
Me.Controls.Add(Me.TextBoxPASS)
Me.Controls.Add(Me.TextBoxID)
Me.Controls.Add(Me.Button3)
Me.Controls.Add(Me.TextBoxUdpOpt3)
Me.Controls.Add(Me.Label11)
Me.Controls.Add(Me.LabelStream)
Me.Controls.Add(Me.CheckBoxShowConsole)
Me.Controls.Add(Me.ButtonFILEROOT)
Me.Controls.Add(Me.TextBoxFILEROOT)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.Label10)
Me.Controls.Add(Me.Button6)
Me.Controls.Add(Me.Button5)
Me.Controls.Add(Me.ButtonHLSoption)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.ComboBoxResolution)
Me.Controls.Add(Me.textBoxUdpPort)
Me.Controls.Add(Me.Label9)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.ComboBoxServiceID)
Me.Controls.Add(Me.ComboBoxBonDriver)
Me.Controls.Add(Me.ButtonBonDriverPath)
Me.Controls.Add(Me.TextBoxBonDriverPath)
Me.Controls.Add(Me.Label8)
Me.Controls.Add(Me.Label7)
Me.Controls.Add(Me.Label6)
Me.Controls.Add(Me.Label5)
Me.Controls.Add(Me.TextBoxLog)
Me.Controls.Add(Me.ButtonWWWROOT)
Me.Controls.Add(Me.TextBoxWWWroot)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.TextBoxChSpace)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.ComboBoxNum)
Me.Controls.Add(Me.ButtonWebStop)
Me.Controls.Add(Me.ButtonWebStart)
Me.Controls.Add(Me.ButtonMovieStop)
Me.Controls.Add(Me.ButtonMovieStart)
Me.Controls.Add(Me.buttonHlsAppPath)
Me.Controls.Add(Me.buttonUdpAppPath)
Me.Controls.Add(Me.textBoxHlsOpt2)
Me.Controls.Add(Me.labelHlsOpt2)
Me.Controls.Add(Me.textBoxHlsApp)
Me.Controls.Add(Me.labelHlsApp)
Me.Controls.Add(Me.textBoxUdpApp)
Me.Controls.Add(Me.labelUdpApp)
Me.Controls.Add(Me.textHttpPortNumber)
Me.Controls.Add(Me.labelPortNuber)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximumSize = New System.Drawing.Size(546, 722)
Me.Name = "Form1"
Me.ShowInTaskbar = False
Me.Text = "TvRemoteViewer_VB"
Me.WindowState = System.Windows.Forms.FormWindowState.Minimized
Me.ContextMenuStrip1.ResumeLayout(False)
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Private WithEvents buttonHlsAppPath As System.Windows.Forms.Button
Private WithEvents buttonUdpAppPath As System.Windows.Forms.Button
Private WithEvents textBoxHlsOpt2 As System.Windows.Forms.TextBox
Private WithEvents labelHlsOpt2 As System.Windows.Forms.Label
Private WithEvents textBoxHlsApp As System.Windows.Forms.TextBox
Private WithEvents labelHlsApp As System.Windows.Forms.Label
Private WithEvents textBoxUdpApp As System.Windows.Forms.TextBox
Private WithEvents labelUdpApp As System.Windows.Forms.Label
Private WithEvents textHttpPortNumber As System.Windows.Forms.TextBox
Private WithEvents labelPortNuber As System.Windows.Forms.Label
Friend WithEvents ButtonMovieStart As System.Windows.Forms.Button
Friend WithEvents ButtonMovieStop As System.Windows.Forms.Button
Friend WithEvents Timer1 As System.Windows.Forms.Timer
Friend WithEvents ButtonWebStop As System.Windows.Forms.Button
Friend WithEvents ButtonWebStart As System.Windows.Forms.Button
Friend WithEvents ComboBoxNum As System.Windows.Forms.ComboBox
Private WithEvents textBoxUdpPort As System.Windows.Forms.TextBox
Private WithEvents Label2 As System.Windows.Forms.Label
Private WithEvents TextBoxChSpace As System.Windows.Forms.TextBox
Private WithEvents Label3 As System.Windows.Forms.Label
Private WithEvents ButtonWWWROOT As System.Windows.Forms.Button
Private WithEvents TextBoxWWWroot As System.Windows.Forms.TextBox
Private WithEvents Label4 As System.Windows.Forms.Label
Friend WithEvents TextBoxLog As System.Windows.Forms.TextBox
Private WithEvents Label5 As System.Windows.Forms.Label
Private WithEvents Label6 As System.Windows.Forms.Label
Private WithEvents Label7 As System.Windows.Forms.Label
Private WithEvents ButtonBonDriverPath As System.Windows.Forms.Button
Private WithEvents TextBoxBonDriverPath As System.Windows.Forms.TextBox
Private WithEvents Label8 As System.Windows.Forms.Label
Friend WithEvents ComboBoxBonDriver As System.Windows.Forms.ComboBox
Friend WithEvents ComboBoxServiceID As System.Windows.Forms.ComboBox
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents FolderBrowserDialog1 As System.Windows.Forms.FolderBrowserDialog
Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog
Private WithEvents Label9 As System.Windows.Forms.Label
Friend WithEvents ComboBoxResolution As System.Windows.Forms.ComboBox
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents ButtonHLSoption As System.Windows.Forms.Button
Friend WithEvents Button5 As System.Windows.Forms.Button
Friend WithEvents Button6 As System.Windows.Forms.Button
Private WithEvents Label10 As System.Windows.Forms.Label
Private WithEvents ButtonFILEROOT As System.Windows.Forms.Button
Private WithEvents TextBoxFILEROOT As System.Windows.Forms.TextBox
Private WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents NotifyIcon1 As System.Windows.Forms.NotifyIcon
Friend WithEvents ContextMenuStrip1 As System.Windows.Forms.ContextMenuStrip
Friend WithEvents 終了ToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents CheckBoxShowConsole As System.Windows.Forms.CheckBox
Private WithEvents LabelStream As System.Windows.Forms.Label
Private WithEvents TextBoxUdpOpt3 As System.Windows.Forms.TextBox
Private WithEvents Label11 As System.Windows.Forms.Label
Friend WithEvents Button3 As System.Windows.Forms.Button
Private WithEvents TextBoxID As System.Windows.Forms.TextBox
Private WithEvents TextBoxPASS As System.Windows.Forms.TextBox
Private WithEvents Label12 As System.Windows.Forms.Label
Private WithEvents Label13 As System.Windows.Forms.Label
Private WithEvents Label14 As System.Windows.Forms.Label
End Class