-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
891 lines (884 loc) · 46.7 KB
/
Form1.Designer.cs
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
namespace WindowsFormsApplication7
{
partial class がしゃふぃるたー
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows フォーム デザイナーで生成されたコード
/// <summary>
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
/// コード エディターで変更しないでください。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.comboBox2 = new System.Windows.Forms.ComboBox();
this.button2 = new System.Windows.Forms.Button();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.checkBox3 = new System.Windows.Forms.CheckBox();
this.checkBox4 = new System.Windows.Forms.CheckBox();
this.checkBox5 = new System.Windows.Forms.CheckBox();
this.checkBox6 = new System.Windows.Forms.CheckBox();
this.checkBox7 = new System.Windows.Forms.CheckBox();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.comboBox5 = new System.Windows.Forms.ComboBox();
this.comboBox4 = new System.Windows.Forms.ComboBox();
this.textBox4 = new System.Windows.Forms.TextBox();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.バージョンToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.panel1 = new System.Windows.Forms.Panel();
this.checkBox12 = new System.Windows.Forms.CheckBox();
this.checkBox9 = new System.Windows.Forms.CheckBox();
this.label7 = new System.Windows.Forms.Label();
this.comboBox6 = new System.Windows.Forms.ComboBox();
this.checkBox8 = new System.Windows.Forms.CheckBox();
this.label6 = new System.Windows.Forms.Label();
this.textBox5 = new System.Windows.Forms.TextBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.label5 = new System.Windows.Forms.Label();
this.radioButton4 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.label4 = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.button4 = new System.Windows.Forms.Button();
this.comboBox3 = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.textBox3 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.checkBox10 = new System.Windows.Forms.CheckBox();
this.button3 = new System.Windows.Forms.Button();
this.button5 = new System.Windows.Forms.Button();
this.checkBox11 = new System.Windows.Forms.CheckBox();
this.button6 = new System.Windows.Forms.Button();
this.textBox6 = new System.Windows.Forms.TextBox();
this.output_st = new System.Windows.Forms.TextBox();
this.savetime = new System.Windows.Forms.CheckBox();
this.menuStrip1.SuspendLayout();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(12, 249);
this.textBox1.MaxLength = 0;
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBox1.Size = new System.Drawing.Size(450, 98);
this.textBox1.TabIndex = 0;
this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(12, 382);
this.textBox2.MaxLength = 0;
this.textBox2.Multiline = true;
this.textBox2.Name = "textBox2";
this.textBox2.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBox2.Size = new System.Drawing.Size(317, 208);
this.textBox2.TabIndex = 1;
this.textBox2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox2_KeyDown);
//
// button1
//
this.button1.Location = new System.Drawing.Point(205, 353);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(45, 23);
this.button1.TabIndex = 2;
this.button1.Text = "↓";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Location = new System.Drawing.Point(12, 40);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(156, 16);
this.radioButton1.TabIndex = 3;
this.radioButton1.Text = "ぷれぼ/がしゃ/ほるだ/かーど";
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
//
// radioButton3
//
this.radioButton3.AutoSize = true;
this.radioButton3.Checked = true;
this.radioButton3.Location = new System.Drawing.Point(225, 40);
this.radioButton3.Name = "radioButton3";
this.radioButton3.Size = new System.Drawing.Size(66, 16);
this.radioButton3.TabIndex = 5;
this.radioButton3.TabStop = true;
this.radioButton3.Text = "ぼだ変換";
this.radioButton3.UseVisualStyleBackColor = true;
this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(14, 36);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(104, 16);
this.checkBox1.TabIndex = 6;
this.checkBox1.Text = "DATETIME変換";
this.toolTip1.SetToolTip(this.checkBox1, "日付形式変更、日付の形式に合わない場合は出力しない");
this.checkBox1.UseVisualStyleBackColor = true;
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Items.AddRange(new object[] {
"yyyy/MM/dd ddd HH:mm",
"yyyy-MM-dd ddd HH:mm",
"yyyy年MM月dd日ddddHH時",
"yyyy/MM/dd HH:mm",
"yyyyMM-dd HH:mm",
"yyyy年MM月dd日HH時",
"MM/dd/yyyy HH:mm",
"MM-dd-yyyy HH:mm",
"MM/dd HH:mm",
"MM-dd HH:mm",
"MM月dd日HH時",
"yyyyMMddHHmm",
"dd日HH時",
"HH:mm"});
this.comboBox1.Location = new System.Drawing.Point(126, 32);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(140, 20);
this.comboBox1.TabIndex = 8;
this.comboBox1.Text = "yyyy/MM/dd HH:mm";
this.toolTip1.SetToolTip(this.comboBox1, "yyyy=年,MM=月,dd=日,ddd=曜日,HH=0-24時(hはttとセット),mm=分\r\ntt=AMPM午前午後");
//
// comboBox2
//
this.comboBox2.FormattingEnabled = true;
this.comboBox2.Items.AddRange(new object[] {
"ゴールデンキャッスル日速,http://bit.ly/1ILKe2o,,169",
"ゴールデンキャッスル時速,http://bit.ly/1KfGI28,5a7141ef596e4c",
"生っすかサンデー日速,http://bit.ly/1PqusKD,173",
"生っすかサンデー時速,http://bit.ly/1EbTHLh,0fae1ffa3a0229",
"復刻あいどるきゃっする日速,http://bit.ly/1Gp2pq7,171",
"復刻あいどるきゃっする時速,http://bit.ly/1FrlKus,23ab996d1900fd",
"アイドルマスターズカップ10日速,http://bit.ly/1OBWy5c,168",
"アイドルマスターズカップ10時速,http://bit.ly/1HqUoVo,cb3a057f0c7340",
"バスケリーグ日速,http://bit.ly/1JeQUVp,163",
"バスケリーグ時速,http://bit.ly/1FvHZ0G,2f9741706f6740",
"プラチナスターライブFINAL日速,http://bit.ly/1HZpG4p,161",
"プラチナスターライブFINAL時速,http://bit.ly/1x02vG6,a58f2e5afacfb1",
"カーニバル日速,http://bit.ly/18uNlNp,155",
"カーニバル時速,http://bit.ly/1wjSrrf,d931a07bb4066d",
"ファッションー日速,http://bit.ly/1wrhDwd,153",
"ファッションー時速,http://bit.ly/1818JtA,ca848236341918",
"アイドルマスターズカップ9日速,http://bit.ly/1IaBgxB,152",
"アイドルマスターズカップ9時速,http://bit.ly/1uvAeGm,3b3027580311b8",
"甘ふわ♪ショコラハウス日速,http://bit.ly/1KFNme7,149",
"甘ふわ♪ショコラハウス時速,http://bit.ly/1CaJvnd,e9a04ce174c72f",
"鬼だらけ!アイドル節分パニック日速,http://bit.ly/15T4Gzi,148",
"鬼だらけ!アイドル節分パニック時速,http://bit.ly/1Cg5fR3,de526ec0c6a07e",
"プラチナスターライブ4th日速,http://bit.ly/1y3YEpV,145",
"プラチナスターライブ4th時速,http://bit.ly/17NXdlS,cb5fcb4078a80d",
"招福!アイドル干支マラソン日速,http://bit.ly/1vXnK4u,139",
"招福!アイドル干支マラソン時速,http://bit.ly/1AzcEsA,c27fc410bca96a",
"アイドル美食グランプリ日速,http://bit.ly/1H1vkCY\",140",
"アイドル美食グランプリ時速,http://bit.ly/1xT9YGx,848e90d1fb19c0",
"神VS魔!ホーリーナイトラウンド日速,http://bit.ly/1svF5ku,137",
"神VS魔!ホーリーナイトラウンド時速,http://bit.ly/1GKE4vt,11ed9cd36299ef",
"アイドルマスターズカップ8,http://bit.ly/1zGmF4i,136",
"アイドルマスターズカップ8,http://bit.ly/1vxEFyt,4648da81acc7ee",
"祝杯!クリスマスフェスタ日速,http://bit.ly/1rJitfS,143",
"祝杯!クリスマスフェスタ時速,http://bit.ly/1290A4j,843b6d81e5692f",
"プラチナスターライブ3rd日速,goo.gl/5FMdJI,130",
"プラチナスターライブ3rd時速,goo.gl/n2F16w,aece7ddb071bb7",
"アジアンライブツアー日速,goo.gl/9Su660,128",
"アジアンライブツアー時速,goo.gl/9E7Bdo,b121736b4f5c5e",
"アイドル警察24時日速,goo.gl/aAcPDk,127",
"アイドル警察24時時速,goo.gl/HKraJQ,a4d168df711266",
"アイドルマスターズカップ7日速,goo.gl/H5YrDx,125",
"アイドルマスターズカップ7時速,goo.gl/ZNmFqi,e8dd5e565d9ba3",
"昂れ!アイドルファイト日速,goo.gl/b3S0Vh,123",
"昂れ!アイドルファイト時速,goo.gl/KFFSrl,d39508e0e10222",
"決選!学園ミスコンサバイバル日速,goo.gl/kc3tNl,120",
"決選!学園ミスコンサバイバル時速,goo.gl/zXYzYf,aeb97eea4fca95",
"結実!プラチナスターライブ2nd日速,goo.gl/wY0mjb,119",
"結実プラチナスターライブ2nd時速,goo.gl/qpWwcs,cede73ccc09f76",
"夢いっぱい!ゲームフェス2014日速,goo.gl/Y99OHl,116",
"夢いっぱい!ゲームフェス2014時速,goo.gl/MjyNhE,1a858177e24abe",
"旋律!アイドル肝試し病楝日速,goo.gl/0BbSSX,115",
"旋律!アイドル肝試し病楝時速,goo.gl/xGg03H,ae14dc98c4b4b0",
"アイドルマスターズカップ6日速,goo.gl/WOYBs1,113",
"アイドルマスターズカップ6時速,goo.gl/YQ6cnD,0fd652755ff3bf",
"納涼!アイドル夏祭りin港町日速,goo.gl/z9Duup,110",
"納涼!アイドル夏祭りin港町日速,goo.gl/ps67Wc,891c76b8ff6b6b",
"HAPPYPERFOMANCE日速,goo.gl/R8w3t4,109",
"HAPPYPERFOMANCE_PT速度他,goo.gl/MblpHZ,341cbf8816fe05",
"決行!スタープラチナライブ1stアンコール日速,goo.gl/SPOE9p,98",
"決行!スタープラチナライブ1stアンコール時速,goo.gl/lQiW2z,bbb15125b6a309",
"決行!スタープラチナライブ1st日速,goo.gl/nQSxkY,97",
"決行!スタープラチナライブ1st時速,goo.gl/HVIM81,2a57a9b4215a84",
"極限!サバイバルアイランド日速,goo.gl/Df9iWf,106",
"極限!サバイバルアイランド時速,goo.gl/evjqWP,097f4a5918a9aa",
"進撃アイドルウォーズ,goo.gl/t35XvX,105",
"進撃アイドルウォーズ,goo.gl/h29KDq,dff1ef6fedb42a",
"アイドルマスターズカップ5日速,http://goo.gl/XtKflg,103",
"アイドルマスターズカップ5時速,goo.gl/IYHBHx,7441e1a309583e",
"NAMCOアイドルサッカーフェス2014,goo.gl/lWzezv,100",
"NAMCOアイドルサッカーフェス2014,goo.gl/KSmOLU,4568b961182d0d",
"アイドル三国志日速,goo.gl/Oxuvgi,99",
"アイドル三国志時速,goo.gl/s80Ub1,22d127eab8d01d",
"夢いっぱい!メルヘンアイドル物語日速,goo.gl/SmBrh6,95",
"夢いっぱい!メルヘンアイドル物語時速,goo.gl/yFjnBn,ab192984a2f3a8",
"復活アイドルサッカー日速,goo.gl/7UUHO9,93",
"復活アイドルサッカー時速,goo.gl/gqXZL8,1f6f28752dccfa",
"グレートアイドルキャッスル日速,goo.gl/2qhzcs,92",
"グレートアイドルキャッスル時速,goo.gl/Luro9I,415ea79f91b85e",
"春のサイクリングレース日速,goo.gl/b3JFv6,90",
"春のサイクリングレース時速,goo.gl/b3IIOt,3c2845b42761dd",
"アイドルマスターズカップ4日速,goo.gl/byureK,88",
"アイドルマスターズカップ4時速,goo.gl/i9OVtS,499cb6fc86b4ba",
"復活アイドル学園天国日速,goo.gl/z7MIPY,85",
"復活アイドル学園天国時速,goo.gl/AUv4HL,9a4ee1227315c4",
"アイドルモンスター日速,goo.gl/vJnFfD,81",
"アイドルモンスター時速,goo.gl/iD1Bii,6f22c2412485f4",
"アイドルシンフォニー日速,goo.gl/25SkaN,79",
"アイドルシンフォニー時速,goo.gl/aIzpha,859e0d1b4c7f50",
"アイドルヒーローズ日速,goo.gl/1dhW7E,76",
"アイドルヒーローズ時速,goo.gl/5HEiJ1,827f0118d3b14b",
"バレンタインキャラバン日速,goo.gl/8TkAX9,73",
"バレンタインキャラバン時速,goo.gl/u8qqAI,f7bdec81397b2d",
"アイドルマスターズカップ3日速,goo.gl/UbkaAe,70",
"アイドルマスターズカップ3時速,goo.gl/juWx5v,c8edebbbba32de",
"アイドルスペースウォーズ日速,goo.gl/BL1IPi,67",
"アイドルスペースウォーズ時速,goo.gl/GsNZjz,ba7304b8d4acb1",
"アイドル干支レース日速,goo.gl/8sZwuo,63",
"アイドル干支レース時速,goo.gl/mSpLPk,11e68a99b90c7e",
"アイドル紅白歌祭り日速,goo.gl/thjaoM,61",
"アイドル紅白歌祭り時速,goo.gl/YKszpG,0d00394d397303",
"アイドルクリスマスTV日速,goo.gl/p98YFJ,59",
"アイドルクリスマスTV時速,goo.gl/UAKxAo,cb1d9b16d5fb20",
"マスターズカップ2日速,goo.gl/lZGi1t,58",
"マスターズカップ2時速,goo.gl/fIEVmc,1c0274459d1d26",
"アイドル道日速,goo.gl/nqJNSQ,56",
"アイドル道時速,goo.gl/m3BMZi,757af83bc91560",
"アイドルゴルフ日速,goo.gl/IA5p7a,54",
"アイドルゴルフ時速,goo.gl/zr6VQT,0b7a9888766bfb",
"ハロウィンフェスタ日速,goo.gl/bA4KRw,49",
"ハロウィンフェスタ時速,goo.gl/1HQDfI,2f21deeb477751",
"アイドル学園文化祭日速,goo.gl/hcU1mB,47",
"アイドル学園文化祭時速,goo.gl/Yh8K0O,3c59476d9b7844",
"アイドルマスターズカップ日速,goo.gl/LQB32V,45",
"アイドルマスターズカップ時速,goo.gl/v70zRU,d255e5fcf21e6e",
"アイドルパイレーツ日速,goo.gl/X8awcQ,42",
"アイドルパイレーツ時速,goo.gl/XSyriO,4748e0faeedca8",
"アイドルゲームフェス日速,goo.gl/iJluKP,39",
"アイドルゲームフェス時速,goo.gl/ol5gRn,49be23129d6e9c",
"ドキドキ肝試し日速,goo.gl/qSCllN,34",
"ドキドキ肝試し時速,goo.gl/MFfsGr,e2a8b10112d506",
"765プロ野球日速,goo.gl/xop3Je,32",
"765プロ野球時速,goo.gl/hUySnt,4ea450dd09ce8b",
"サマーライブフェス日速,goo.gl/nvTgvp,29",
"サマーライブフェス時速.goo.gl/vKwh34,63092b978b7bdb",
"アイドルユニットトーナメント日速,goo.gl/ztHJF,27",
"アイドルユニットトーナメント時速,goo.gl/S3iDaG,8424951489f790",
"アイドル夏祭り日速,goo.gl/YI2Ga,25",
"アイドル夏祭り時速,goo.gl/lB9SB,07a579904a2c00",
"アイドル水上運動会日速,goo.gl/dSQqo,21",
"アイドル水上運動会時速,goo.gl/Xd2q5,0b9ecf8d63081e",
"アイドルサッカー日速,goo.gl/Tl9hq,17",
"アイドルサッカー時速,goo.gl/Glxji,49c7d6b76ca5e7",
"戦国アイドル日速,goo.gl/32s1m,15",
"戦国アイドル時速,goo.gl/dvjJZ,24eeb7759223c2",
"ライブアリーナ日速,goo.gl/8EhFu,13",
"ライブアリーナ時速,goo.gl/cQ14D,b067e726faf8c7",
"765れーさー日速,goo.gl/T8BDb,11",
"765れーさー時速,goo.gl/weQ2d,e9660ae462e18c",
"アイドルキャッスル日速,goo.gl/PsoS8,9",
"アイドルキャッスル\t時速,goo.gl/yCdtk,eaab04a9d2fa72",
"アイドル学園日速,goo.gl/GIx76,7",
"アイドル学園時速,goo.gl/Jd3ev,c0df695c3ffc42"});
this.comboBox2.Location = new System.Drawing.Point(87, 10);
this.comboBox2.Name = "comboBox2";
this.comboBox2.Size = new System.Drawing.Size(179, 20);
this.comboBox2.TabIndex = 9;
this.toolTip1.SetToolTip(this.comboBox2, "WEBから変換する速度表を選択");
this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
//
// button2
//
this.button2.Location = new System.Drawing.Point(272, 8);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(62, 23);
this.button2.TabIndex = 10;
this.button2.Text = "WEB取得";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// checkBox2
//
this.checkBox2.AutoSize = true;
this.checkBox2.Location = new System.Drawing.Point(275, 36);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new System.Drawing.Size(48, 16);
this.checkBox2.TabIndex = 11;
this.checkBox2.Text = "時差";
this.checkBox2.UseVisualStyleBackColor = true;
//
// checkBox3
//
this.checkBox3.AutoSize = true;
this.checkBox3.Checked = true;
this.checkBox3.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox3.Location = new System.Drawing.Point(14, 58);
this.checkBox3.Name = "checkBox3";
this.checkBox3.Size = new System.Drawing.Size(54, 16);
this.checkBox3.TabIndex = 12;
this.checkBox3.Text = "100位";
this.checkBox3.UseVisualStyleBackColor = true;
//
// checkBox4
//
this.checkBox4.AutoSize = true;
this.checkBox4.Location = new System.Drawing.Point(74, 58);
this.checkBox4.Name = "checkBox4";
this.checkBox4.Size = new System.Drawing.Size(54, 16);
this.checkBox4.TabIndex = 13;
this.checkBox4.Text = "500位";
this.checkBox4.UseVisualStyleBackColor = true;
//
// checkBox5
//
this.checkBox5.AutoSize = true;
this.checkBox5.Checked = true;
this.checkBox5.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox5.Location = new System.Drawing.Point(134, 58);
this.checkBox5.Name = "checkBox5";
this.checkBox5.Size = new System.Drawing.Size(60, 16);
this.checkBox5.TabIndex = 14;
this.checkBox5.Text = "1x00位";
this.checkBox5.UseVisualStyleBackColor = true;
//
// checkBox6
//
this.checkBox6.AutoSize = true;
this.checkBox6.Location = new System.Drawing.Point(193, 58);
this.checkBox6.Name = "checkBox6";
this.checkBox6.Size = new System.Drawing.Size(58, 16);
this.checkBox6.TabIndex = 15;
this.checkBox6.Text = "からむ8";
this.checkBox6.UseVisualStyleBackColor = true;
//
// checkBox7
//
this.checkBox7.AutoSize = true;
this.checkBox7.Location = new System.Drawing.Point(259, 58);
this.checkBox7.Name = "checkBox7";
this.checkBox7.Size = new System.Drawing.Size(64, 16);
this.checkBox7.TabIndex = 16;
this.checkBox7.Text = "からむ10";
this.checkBox7.UseVisualStyleBackColor = true;
//
// comboBox5
//
this.comboBox5.FormattingEnabled = true;
this.comboBox5.Items.AddRange(new object[] {
"",
"(※5分毎)?\\d\\d:[0-5][1-46-9]",
"(※10分毎)?\\d\\d:[0-5][1-9]",
"(※15分毎)?\\d\\d:([25][0-9]|[14][0-46-9]|[03][1-9])",
"(※20分毎)?\\d\\d:([135][0-9]|[024][1-9])",
"(※30分毎)?\\d\\d:([1245][0-9]|[03][1-9])",
"(※1時間毎)?\\d\\d:(0[1-9]|[1-5][0-9])",
"(※24時間毎17時)?((0[0-9]|1[0-689]|2[0-4]):[0-9][0-9]|17:([1-9][0-9]|0[1-9]))",
"(※24時間毎0時)?((0[1-9]|1[0-9]|2[0-4]):[0-9][0-9]|00:([1-9][0-9]|0[1-9]))",
"(※予備毎時)?\\d?\\d:([02-5][0-9])(:00)?",
"(※予備01)?\\d?\\d:(\\d[02-9])(:00)?",
"(※予備02)?\\d?\\d:(\\d[01-3-9])(:00)?",
"(※てんぽ0分)?201\\d\\d{6}\\d[12-9]",
"(※てんぽ1分)?201\\d\\d{6}\\d[02-9]",
"(※てんぽ2分)?201\\d\\d{6}\\d[013-9]"});
this.comboBox5.Location = new System.Drawing.Point(367, 127);
this.comboBox5.Name = "comboBox5";
this.comboBox5.Size = new System.Drawing.Size(83, 20);
this.comboBox5.TabIndex = 34;
this.toolTip1.SetToolTip(this.comboBox5, "マッチした時刻を出力しないようにする");
//
// comboBox4
//
this.comboBox4.FormattingEnabled = true;
this.comboBox4.Items.AddRange(new object[] {
"通常ぼだ変換",
"したらば逆変換",
"RTB変換(BASEYEAR 2015->2016)",
"RTB収集",
"100/500/1200/3000収集※(MOD0=1,DLAY0)",
"中間/最終全収集",
"全PT収集",
"C通常ぼだ変換",
"IMCぷれみあ",
"IMC自相手",
"HTML-ID付き収集",
"絆LV収集",
"RTB変換(BASEYEAR 2014->2015)"});
this.comboBox4.Location = new System.Drawing.Point(367, 102);
this.comboBox4.Name = "comboBox4";
this.comboBox4.Size = new System.Drawing.Size(83, 20);
this.comboBox4.TabIndex = 28;
this.comboBox4.Text = "通常ぼだ変換";
this.toolTip1.SetToolTip(this.comboBox4, "通常、TSV速度計算済み表を変換\r\nしたらば逆変換、特定の速度情報をTSVに戻す\r\nRTB変換,RT速度箇所を時刻ソート+速度計算する\r\nRTB収集,いべとっぷペ" +
"ージからRT速度箇所だけ抜き出す\r\n100~、らんきんぐぺーじから速度箇所だけ抜き出す(したらば逆変換対応,※以降mod=変更可能)\r\n全~、らんきんぐぺーじの" +
"順位名前ptを抜き出す\r\nC通常,TSV速度計算+時刻ソートあり");
this.comboBox4.SelectedIndexChanged += new System.EventHandler(this.comboBox4_SelectedIndexChanged);
//
// textBox4
//
this.textBox4.Location = new System.Drawing.Point(187, 127);
this.textBox4.Name = "textBox4";
this.textBox4.Size = new System.Drawing.Size(100, 19);
this.textBox4.TabIndex = 21;
this.textBox4.Text = "^-?(\\d[,.]?)+/?-?\\d*$";
this.toolTip1.SetToolTip(this.textBox4, "通常モード時の速度箇所でマッチした場合出力");
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.バージョンToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(484, 26);
this.menuStrip1.TabIndex = 18;
this.menuStrip1.Text = "menuStrip1";
//
// バージョンToolStripMenuItem
//
this.バージョンToolStripMenuItem.Name = "バージョンToolStripMenuItem";
this.バージョンToolStripMenuItem.Size = new System.Drawing.Size(80, 22);
this.バージョンToolStripMenuItem.Text = "バージョン";
this.バージョンToolStripMenuItem.Click += new System.EventHandler(this.バージョンToolStripMenuItem_Click);
//
// panel1
//
this.panel1.Controls.Add(this.checkBox12);
this.panel1.Controls.Add(this.checkBox9);
this.panel1.Controls.Add(this.label7);
this.panel1.Controls.Add(this.comboBox6);
this.panel1.Controls.Add(this.checkBox8);
this.panel1.Controls.Add(this.label6);
this.panel1.Controls.Add(this.textBox5);
this.panel1.Controls.Add(this.comboBox5);
this.panel1.Controls.Add(this.label5);
this.panel1.Controls.Add(this.radioButton4);
this.panel1.Controls.Add(this.radioButton2);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.comboBox4);
this.panel1.Controls.Add(this.pictureBox1);
this.panel1.Controls.Add(this.button4);
this.panel1.Controls.Add(this.comboBox3);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.textBox4);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.textBox3);
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.checkBox7);
this.panel1.Controls.Add(this.checkBox6);
this.panel1.Controls.Add(this.comboBox2);
this.panel1.Controls.Add(this.checkBox5);
this.panel1.Controls.Add(this.button2);
this.panel1.Controls.Add(this.checkBox4);
this.panel1.Controls.Add(this.checkBox1);
this.panel1.Controls.Add(this.checkBox3);
this.panel1.Controls.Add(this.comboBox1);
this.panel1.Controls.Add(this.checkBox2);
this.panel1.Location = new System.Drawing.Point(12, 63);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(460, 180);
this.panel1.TabIndex = 19;
this.panel1.Visible = false;
//
// checkBox12
//
this.checkBox12.AutoSize = true;
this.checkBox12.Location = new System.Drawing.Point(407, 152);
this.checkBox12.Name = "checkBox12";
this.checkBox12.Size = new System.Drawing.Size(48, 16);
this.checkBox12.TabIndex = 41;
this.checkBox12.Text = "順位";
this.checkBox12.UseVisualStyleBackColor = true;
//
// checkBox9
//
this.checkBox9.AutoSize = true;
this.checkBox9.Location = new System.Drawing.Point(304, 152);
this.checkBox9.Name = "checkBox9";
this.checkBox9.Size = new System.Drawing.Size(97, 16);
this.checkBox9.TabIndex = 40;
this.checkBox9.Text = "アイドル名+1頁";
this.checkBox9.UseVisualStyleBackColor = true;
this.checkBox9.CheckedChanged += new System.EventHandler(this.checkBox9_CheckedChanged);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(133, 156);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(56, 12);
this.label7.TabIndex = 39;
this.label7.Text = "時刻ソート";
//
// comboBox6
//
this.comboBox6.Enabled = false;
this.comboBox6.FormattingEnabled = true;
this.comboBox6.Items.AddRange(new object[] {
"昇順(古→新)",
"降順(新→古)"});
this.comboBox6.Location = new System.Drawing.Point(193, 152);
this.comboBox6.Name = "comboBox6";
this.comboBox6.Size = new System.Drawing.Size(94, 20);
this.comboBox6.TabIndex = 38;
this.comboBox6.Text = "昇順(古→新)";
//
// checkBox8
//
this.checkBox8.AutoSize = true;
this.checkBox8.Location = new System.Drawing.Point(259, 78);
this.checkBox8.Name = "checkBox8";
this.checkBox8.Size = new System.Drawing.Size(75, 16);
this.checkBox8.TabIndex = 37;
this.checkBox8.Text = "カンマ数字";
this.checkBox8.UseVisualStyleBackColor = true;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(17, 156);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(65, 12);
this.label6.TabIndex = 36;
this.label6.Text = "出力行制限";
//
// textBox5
//
this.textBox5.ContextMenuStrip = this.contextMenuStrip1;
this.textBox5.ImeMode = System.Windows.Forms.ImeMode.Disable;
this.textBox5.Location = new System.Drawing.Point(87, 153);
this.textBox5.MaxLength = 3;
this.textBox5.Name = "textBox5";
this.textBox5.Size = new System.Drawing.Size(40, 19);
this.textBox5.TabIndex = 35;
this.textBox5.Text = "0";
this.textBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox3_KeyPress);
//
// contextMenuStrip1
//
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(302, 130);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(53, 12);
this.label5.TabIndex = 33;
this.label5.Text = "時刻正規";
//
// radioButton4
//
this.radioButton4.AutoSize = true;
this.radioButton4.Location = new System.Drawing.Point(14, 101);
this.radioButton4.Name = "radioButton4";
this.radioButton4.Size = new System.Drawing.Size(126, 16);
this.radioButton4.TabIndex = 31;
this.radioButton4.Text = "見出しパターンを指定";
this.radioButton4.UseVisualStyleBackColor = true;
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Checked = true;
this.radioButton2.Location = new System.Drawing.Point(14, 80);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(222, 16);
this.radioButton2.TabIndex = 30;
this.radioButton2.TabStop = true;
this.radioButton2.Text = "1行目を見出しとして使用/RTB順位抽出";
this.radioButton2.UseVisualStyleBackColor = true;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(302, 105);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(63, 12);
this.label4.TabIndex = 29;
this.label4.Text = "ぱーすもーど";
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(340, 38);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(107, 58);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 27;
this.pictureBox1.TabStop = false;
//
// button4
//
this.button4.Location = new System.Drawing.Point(340, 8);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(75, 23);
this.button4.TabIndex = 25;
this.button4.Text = "ブラウザ";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// comboBox3
//
this.comboBox3.FormattingEnabled = true;
this.comboBox3.ImeMode = System.Windows.Forms.ImeMode.Close;
this.comboBox3.Items.AddRange(new object[] {
"100位/500位/1200位/3000位/10000位",
"100位/500位/1100位/3000位/10000位",
"100位/500位/1000位/3000位/10000位",
"100位/500位/1200位/1500位/3000位",
"1位/100位/2000位//りあるたいむぼだ用",
"1位/100位/1200位/3000位/りあるたいむぼだ用",
"1位/30位/100位/1200位/りあるたいむぼだ用",
"1200位///中間用",
"3000位///中間用",
"30000000/18000000/120000000/0/したらば逆変換用",
"20000000/12000000/60000000/0/したらば逆変換用",
"10000000/6000000/30000000/0/したらば逆変換用",
"5000000/3000000/15000000/0/したらば逆変換用"});
this.comboBox3.Location = new System.Drawing.Point(146, 100);
this.comboBox3.Name = "comboBox3";
this.comboBox3.Size = new System.Drawing.Size(150, 20);
this.comboBox3.TabIndex = 23;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(132, 130);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 22;
this.label3.Text = "速度正規";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(17, 130);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(64, 12);
this.label2.TabIndex = 20;
this.label2.Text = "スキップ行数";
//
// textBox3
//
this.textBox3.ContextMenuStrip = this.contextMenuStrip1;
this.textBox3.ImeMode = System.Windows.Forms.ImeMode.Disable;
this.textBox3.Location = new System.Drawing.Point(87, 127);
this.textBox3.MaxLength = 5;
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(40, 19);
this.textBox3.TabIndex = 19;
this.textBox3.Text = "0";
this.textBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox3_KeyPress);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(69, 12);
this.label1.TabIndex = 18;
this.label1.Text = "データ参照先";
//
// checkBox10
//
this.checkBox10.AutoSize = true;
this.checkBox10.Location = new System.Drawing.Point(174, 41);
this.checkBox10.Name = "checkBox10";
this.checkBox10.Size = new System.Drawing.Size(45, 16);
this.checkBox10.TabIndex = 26;
this.checkBox10.Text = "SLV";
this.checkBox10.UseVisualStyleBackColor = true;
//
// button3
//
this.button3.Location = new System.Drawing.Point(287, 37);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(75, 23);
this.button3.TabIndex = 20;
this.button3.Text = "出力設定";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// button5
//
this.button5.Location = new System.Drawing.Point(260, 353);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(59, 23);
this.button5.TabIndex = 27;
this.button5.Text = "↑";
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// checkBox11
//
this.checkBox11.AutoSize = true;
this.checkBox11.Location = new System.Drawing.Point(335, 357);
this.checkBox11.Name = "checkBox11";
this.checkBox11.Size = new System.Drawing.Size(108, 16);
this.checkBox11.TabIndex = 41;
this.checkBox11.Text = "てきすと追加降順";
this.checkBox11.UseVisualStyleBackColor = true;
//
// button6
//
this.button6.Location = new System.Drawing.Point(368, 37);
this.button6.Name = "button6";
this.button6.Size = new System.Drawing.Size(59, 23);
this.button6.TabIndex = 42;
this.button6.Text = "TMろーる";
this.button6.UseVisualStyleBackColor = true;
this.button6.Click += new System.EventHandler(this.button6_Click);
//
// textBox6
//
this.textBox6.Location = new System.Drawing.Point(335, 382);
this.textBox6.Multiline = true;
this.textBox6.Name = "textBox6";
this.textBox6.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBox6.Size = new System.Drawing.Size(137, 208);
this.textBox6.TabIndex = 43;
//
// output_st
//
this.output_st.Location = new System.Drawing.Point(434, 37);
this.output_st.Name = "output_st";
this.output_st.Size = new System.Drawing.Size(38, 19);
this.output_st.TabIndex = 44;
//
// savetime
//
this.savetime.AutoSize = true;
this.savetime.Location = new System.Drawing.Point(26, 357);
this.savetime.Name = "savetime";
this.savetime.Size = new System.Drawing.Size(72, 16);
this.savetime.TabIndex = 45;
this.savetime.Text = "保存時刻";
this.savetime.UseVisualStyleBackColor = true;
//
// がしゃふぃるたー
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(484, 612);
this.Controls.Add(this.savetime);
this.Controls.Add(this.output_st);
this.Controls.Add(this.textBox6);
this.Controls.Add(this.button6);
this.Controls.Add(this.checkBox11);
this.Controls.Add(this.button5);
this.Controls.Add(this.checkBox10);
this.Controls.Add(this.button3);
this.Controls.Add(this.panel1);
this.Controls.Add(this.button1);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.radioButton1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.menuStrip1);
this.Controls.Add(this.radioButton3);
this.ForeColor = System.Drawing.SystemColors.ControlText;
this.MainMenuStrip = this.menuStrip1;
this.MaximumSize = new System.Drawing.Size(500, 650);
this.MinimumSize = new System.Drawing.Size(500, 650);
this.Name = "がしゃふぃるたー";
this.Text = "みりますすとりんぐつる";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.がしゃふぃるたー_FormClosed);
this.Load += new System.EventHandler(this.がしゃふぃるたー_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.RadioButton radioButton3;
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.ComboBox comboBox2;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.CheckBox checkBox2;
private System.Windows.Forms.CheckBox checkBox3;
private System.Windows.Forms.CheckBox checkBox4;
private System.Windows.Forms.CheckBox checkBox5;
private System.Windows.Forms.CheckBox checkBox6;
private System.Windows.Forms.CheckBox checkBox7;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem バージョンToolStripMenuItem;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBox3;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox textBox4;
private System.Windows.Forms.ComboBox comboBox3;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.CheckBox checkBox10;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.ComboBox comboBox4;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.RadioButton radioButton4;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.ComboBox comboBox5;
private System.Windows.Forms.Button button5;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox textBox5;
private System.Windows.Forms.CheckBox checkBox8;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.ComboBox comboBox6;
private System.Windows.Forms.CheckBox checkBox9;
private System.Windows.Forms.CheckBox checkBox11;
private System.Windows.Forms.CheckBox checkBox12;
private System.Windows.Forms.Button button6;
private System.Windows.Forms.TextBox textBox6;
private System.Windows.Forms.TextBox output_st;
private System.Windows.Forms.CheckBox savetime;
}
}