summaryrefslogtreecommitdiffstats
path: root/win/Handbrake/frmMain.Designer.vb
blob: 979e0c1db66beadf0d78a26e7077c3eaa930336d (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmMain
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container
        Dim Label38 As System.Windows.Forms.Label
        Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmMain))
        Me.frmMainMenu = New System.Windows.Forms.MenuStrip
        Me.FileToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_open = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_save = New System.Windows.Forms.ToolStripMenuItem
        Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator
        Me.mnu_update = New System.Windows.Forms.ToolStripMenuItem
        Me.toolStripSeparator2 = New System.Windows.Forms.ToolStripSeparator
        Me.mnu_exit = New System.Windows.Forms.ToolStripMenuItem
        Me.ToolsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_encode = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_viewDVDdata = New System.Windows.Forms.ToolStripMenuItem
        Me.ToolStripSeparator5 = New System.Windows.Forms.ToolStripSeparator
        Me.mnu_options = New System.Windows.Forms.ToolStripMenuItem
        Me.PresetsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_preset_ipod133 = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_preset_ipod178 = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_preset_ipod235 = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_appleTv = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_presetPS3 = New System.Windows.Forms.ToolStripMenuItem
        Me.ToolStripSeparator4 = New System.Windows.Forms.ToolStripSeparator
        Me.mnu_ProgramDefaultOptions = New System.Windows.Forms.ToolStripMenuItem
        Me.HelpToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.OnlineDocumentationToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_wiki = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_onlineDocs = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_faq = New System.Windows.Forms.ToolStripMenuItem
        Me.WebsiteToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_homepage = New System.Windows.Forms.ToolStripMenuItem
        Me.mnu_forum = New System.Windows.Forms.ToolStripMenuItem
        Me.ToolStripSeparator3 = New System.Windows.Forms.ToolStripSeparator
        Me.mnu_about = New System.Windows.Forms.ToolStripMenuItem
        Me.GroupBox4 = New System.Windows.Forms.GroupBox
        Me.Label56 = New System.Windows.Forms.Label
        Me.lbl_Aspect = New System.Windows.Forms.Label
        Me.Label91 = New System.Windows.Forms.Label
        Me.text_height = New System.Windows.Forms.TextBox
        Me.Label55 = New System.Windows.Forms.Label
        Me.text_width = New System.Windows.Forms.TextBox
        Me.btn_destBrowse = New System.Windows.Forms.Button
        Me.Label3 = New System.Windows.Forms.Label
        Me.drp_videoEncoder = New System.Windows.Forms.ComboBox
        Me.Label47 = New System.Windows.Forms.Label
        Me.text_destination = New System.Windows.Forms.TextBox
        Me.drp_audioCodec = New System.Windows.Forms.ComboBox
        Me.Label12 = New System.Windows.Forms.Label
        Me.GroupBox1 = New System.Windows.Forms.GroupBox
        Me.Label13 = New System.Windows.Forms.Label
        Me.drop_chapterFinish = New System.Windows.Forms.ComboBox
        Me.drop_chapterStart = New System.Windows.Forms.ComboBox
        Me.drp_dvdtitle = New System.Windows.Forms.ComboBox
        Me.RadioDVD = New System.Windows.Forms.RadioButton
        Me.RadioISO = New System.Windows.Forms.RadioButton
        Me.btn_Browse = New System.Windows.Forms.Button
        Me.Label17 = New System.Windows.Forms.Label
        Me.text_source = New System.Windows.Forms.TextBox
        Me.Label9 = New System.Windows.Forms.Label
        Me.Label10 = New System.Windows.Forms.Label
        Me.Version = New System.Windows.Forms.Label
        Me.btn_encode = New System.Windows.Forms.Button
        Me.btn_queue = New System.Windows.Forms.Button
        Me.h264Tab = New System.Windows.Forms.TabPage
        Me.Label43 = New System.Windows.Forms.Label
        Me.label_h264 = New System.Windows.Forms.LinkLabel
        Me.Label95 = New System.Windows.Forms.Label
        Me.btn_h264Clear = New System.Windows.Forms.Button
        Me.Label90 = New System.Windows.Forms.Label
        Me.rtf_h264advanced = New System.Windows.Forms.RichTextBox
        Me.Label92 = New System.Windows.Forms.Label
        Me.TabPage2 = New System.Windows.Forms.TabPage
        Me.Label29 = New System.Windows.Forms.Label
        Me.drp_audioMixDown = New System.Windows.Forms.ComboBox
        Me.drp_audioChannels = New System.Windows.Forms.ComboBox
        Me.drp_audioBitrate = New System.Windows.Forms.ComboBox
        Me.Label14 = New System.Windows.Forms.Label
        Me.Label5 = New System.Windows.Forms.Label
        Me.Label35 = New System.Windows.Forms.Label
        Me.Label16 = New System.Windows.Forms.Label
        Me.Label32 = New System.Windows.Forms.Label
        Me.Label18 = New System.Windows.Forms.Label
        Me.drp_audioSampleRate = New System.Windows.Forms.ComboBox
        Me.TabPage3 = New System.Windows.Forms.TabPage
        Me.Label41 = New System.Windows.Forms.Label
        Me.Label37 = New System.Windows.Forms.Label
        Me.check_largeFile = New System.Windows.Forms.CheckBox
        Me.check_turbo = New System.Windows.Forms.CheckBox
        Me.Label36 = New System.Windows.Forms.Label
        Me.Check_ChapterMarkers = New System.Windows.Forms.CheckBox
        Me.Label28 = New System.Windows.Forms.Label
        Me.Label27 = New System.Windows.Forms.Label
        Me.Label4 = New System.Windows.Forms.Label
        Me.CheckCRF = New System.Windows.Forms.CheckBox
        Me.CheckPixelRatio = New System.Windows.Forms.CheckBox
        Me.Label23 = New System.Windows.Forms.Label
        Me.Label22 = New System.Windows.Forms.Label
        Me.Label2 = New System.Windows.Forms.Label
        Me.check_grayscale = New System.Windows.Forms.CheckBox
        Me.SliderValue = New System.Windows.Forms.Label
        Me.check_DeInterlace = New System.Windows.Forms.CheckBox
        Me.drp_videoFramerate = New System.Windows.Forms.ComboBox
        Me.check_2PassEncode = New System.Windows.Forms.CheckBox
        Me.slider_videoQuality = New System.Windows.Forms.TrackBar
        Me.text_filesize = New System.Windows.Forms.TextBox
        Me.Label46 = New System.Windows.Forms.Label
        Me.Label40 = New System.Windows.Forms.Label
        Me.text_bitrate = New System.Windows.Forms.TextBox
        Me.Label42 = New System.Windows.Forms.Label
        Me.TabPage1 = New System.Windows.Forms.TabPage
        Me.drp_subtitle = New System.Windows.Forms.ComboBox
        Me.Label19 = New System.Windows.Forms.Label
        Me.lbl_RecomendedCrop = New System.Windows.Forms.Label
        Me.Label8 = New System.Windows.Forms.Label
        Me.Label1 = New System.Windows.Forms.Label
        Me.Label53 = New System.Windows.Forms.Label
        Me.Label21 = New System.Windows.Forms.Label
        Me.Label20 = New System.Windows.Forms.Label
        Me.Label52 = New System.Windows.Forms.Label
        Me.Label51 = New System.Windows.Forms.Label
        Me.Label50 = New System.Windows.Forms.Label
        Me.Label15 = New System.Windows.Forms.Label
        Me.text_top = New System.Windows.Forms.TextBox
        Me.text_bottom = New System.Windows.Forms.TextBox
        Me.drp_crop = New System.Windows.Forms.ComboBox
        Me.text_right = New System.Windows.Forms.TextBox
        Me.text_left = New System.Windows.Forms.TextBox
        Me.advancedOptions = New System.Windows.Forms.TabControl
        Me.TabPage6 = New System.Windows.Forms.TabPage
        Me.Label7 = New System.Windows.Forms.Label
        Me.Label39 = New System.Windows.Forms.Label
        Me.btn_ClearQuery = New System.Windows.Forms.Button
        Me.GenerateQuery = New System.Windows.Forms.Button
        Me.QueryEditorText = New System.Windows.Forms.RichTextBox
        Me.Label24 = New System.Windows.Forms.Label
        Me.Label25 = New System.Windows.Forms.Label
        Me.Label26 = New System.Windows.Forms.Label
        Me.Label30 = New System.Windows.Forms.Label
        Me.Label31 = New System.Windows.Forms.Label
        Me.Label33 = New System.Windows.Forms.Label
        Me.Label34 = New System.Windows.Forms.Label
        Me.Label44 = New System.Windows.Forms.Label
        Me.TextBox1 = New System.Windows.Forms.TextBox
        Me.Label45 = New System.Windows.Forms.Label
        Me.Label48 = New System.Windows.Forms.Label
        Me.Label49 = New System.Windows.Forms.Label
        Me.TextBox2 = New System.Windows.Forms.TextBox
        Me.TextBox3 = New System.Windows.Forms.TextBox
        Me.ComboBox1 = New System.Windows.Forms.ComboBox
        Me.TextBox4 = New System.Windows.Forms.TextBox
        Me.TextBox5 = New System.Windows.Forms.TextBox
        Me.Label54 = New System.Windows.Forms.Label
        Me.Label57 = New System.Windows.Forms.Label
        Me.Label58 = New System.Windows.Forms.Label
        Me.Label59 = New System.Windows.Forms.Label
        Me.Label60 = New System.Windows.Forms.Label
        Me.Label61 = New System.Windows.Forms.Label
        Me.Label62 = New System.Windows.Forms.Label
        Me.Label63 = New System.Windows.Forms.Label
        Me.TextBox6 = New System.Windows.Forms.TextBox
        Me.Label64 = New System.Windows.Forms.Label
        Me.Label65 = New System.Windows.Forms.Label
        Me.Label66 = New System.Windows.Forms.Label
        Me.TextBox7 = New System.Windows.Forms.TextBox
        Me.TextBox8 = New System.Windows.Forms.TextBox
        Me.ComboBox2 = New System.Windows.Forms.ComboBox
        Me.TextBox9 = New System.Windows.Forms.TextBox
        Me.TextBox10 = New System.Windows.Forms.TextBox
        Me.Label67 = New System.Windows.Forms.Label
        Me.Label68 = New System.Windows.Forms.Label
        Me.Label69 = New System.Windows.Forms.Label
        Me.Label70 = New System.Windows.Forms.Label
        Me.Label71 = New System.Windows.Forms.Label
        Me.Label72 = New System.Windows.Forms.Label
        Me.Label73 = New System.Windows.Forms.Label
        Me.Label74 = New System.Windows.Forms.Label
        Me.TextBox11 = New System.Windows.Forms.TextBox
        Me.Label75 = New System.Windows.Forms.Label
        Me.Label76 = New System.Windows.Forms.Label
        Me.Label77 = New System.Windows.Forms.Label
        Me.TextBox12 = New System.Windows.Forms.TextBox
        Me.TextBox13 = New System.Windows.Forms.TextBox
        Me.ComboBox3 = New System.Windows.Forms.ComboBox
        Me.TextBox14 = New System.Windows.Forms.TextBox
        Me.TextBox15 = New System.Windows.Forms.TextBox
        Me.Label78 = New System.Windows.Forms.Label
        Me.Label79 = New System.Windows.Forms.Label
        Me.Label80 = New System.Windows.Forms.Label
        Me.Label81 = New System.Windows.Forms.Label
        Me.Label82 = New System.Windows.Forms.Label
        Me.Label83 = New System.Windows.Forms.Label
        Me.Label84 = New System.Windows.Forms.Label
        Me.Label85 = New System.Windows.Forms.Label
        Me.TextBox16 = New System.Windows.Forms.TextBox
        Me.Label86 = New System.Windows.Forms.Label
        Me.Label87 = New System.Windows.Forms.Label
        Me.Label88 = New System.Windows.Forms.Label
        Me.TextBox17 = New System.Windows.Forms.TextBox
        Me.TextBox18 = New System.Windows.Forms.TextBox
        Me.ComboBox4 = New System.Windows.Forms.ComboBox
        Me.TextBox19 = New System.Windows.Forms.TextBox
        Me.TextBox20 = New System.Windows.Forms.TextBox
        Me.File_Open = New System.Windows.Forms.OpenFileDialog
        Me.ISO_Open = New System.Windows.Forms.OpenFileDialog
        Me.DVD_Open = New System.Windows.Forms.FolderBrowserDialog
        Me.DVD_Save = New System.Windows.Forms.SaveFileDialog
        Me.File_Save = New System.Windows.Forms.SaveFileDialog
        Me.lbl_update = New System.Windows.Forms.Label
        Me.ToolTip = New System.Windows.Forms.ToolTip(Me.components)
        Label38 = New System.Windows.Forms.Label
        Me.frmMainMenu.SuspendLayout()
        Me.GroupBox4.SuspendLayout()
        Me.GroupBox1.SuspendLayout()
        Me.h264Tab.SuspendLayout()
        Me.TabPage2.SuspendLayout()
        Me.TabPage3.SuspendLayout()
        CType(Me.slider_videoQuality, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.TabPage1.SuspendLayout()
        Me.advancedOptions.SuspendLayout()
        Me.TabPage6.SuspendLayout()
        Me.SuspendLayout()
        '
        'Label38
        '
        Label38.AutoSize = True
        Label38.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Label38.Location = New System.Drawing.Point(13, 67)
        Label38.Name = "Label38"
        Label38.Size = New System.Drawing.Size(103, 13)
        Label38.TabIndex = 30
        Label38.Text = "Target Size (MB)"
        '
        'frmMainMenu
        '
        Me.frmMainMenu.BackColor = System.Drawing.SystemColors.Control
        Me.frmMainMenu.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.FileToolStripMenuItem, Me.ToolsToolStripMenuItem, Me.PresetsToolStripMenuItem, Me.HelpToolStripMenuItem})
        Me.frmMainMenu.Location = New System.Drawing.Point(0, 0)
        Me.frmMainMenu.Name = "frmMainMenu"
        Me.frmMainMenu.Size = New System.Drawing.Size(675, 24)
        Me.frmMainMenu.TabIndex = 0
        Me.frmMainMenu.Text = "MenuStrip1"
        '
        'FileToolStripMenuItem
        '
        Me.FileToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnu_open, Me.mnu_save, Me.ToolStripSeparator1, Me.mnu_update, Me.toolStripSeparator2, Me.mnu_exit})
        Me.FileToolStripMenuItem.Name = "FileToolStripMenuItem"
        Me.FileToolStripMenuItem.Size = New System.Drawing.Size(35, 20)
        Me.FileToolStripMenuItem.Text = "&File"
        '
        'mnu_open
        '
        Me.mnu_open.Image = CType(resources.GetObject("mnu_open.Image"), System.Drawing.Image)
        Me.mnu_open.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.mnu_open.Name = "mnu_open"
        Me.mnu_open.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.O), System.Windows.Forms.Keys)
        Me.mnu_open.Size = New System.Drawing.Size(184, 22)
        Me.mnu_open.Text = "&Open Profile"
        '
        'mnu_save
        '
        Me.mnu_save.Image = CType(resources.GetObject("mnu_save.Image"), System.Drawing.Image)
        Me.mnu_save.ImageTransparentColor = System.Drawing.Color.Magenta
        Me.mnu_save.Name = "mnu_save"
        Me.mnu_save.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.S), System.Windows.Forms.Keys)
        Me.mnu_save.Size = New System.Drawing.Size(184, 22)
        Me.mnu_save.Text = "&Save Profile"
        '
        'ToolStripSeparator1
        '
        Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
        Me.ToolStripSeparator1.Size = New System.Drawing.Size(181, 6)
        '
        'mnu_update
        '
        Me.mnu_update.Name = "mnu_update"
        Me.mnu_update.Size = New System.Drawing.Size(184, 22)
        Me.mnu_update.Text = "Check for Updates"
        '
        'toolStripSeparator2
        '
        Me.toolStripSeparator2.Name = "toolStripSeparator2"
        Me.toolStripSeparator2.Size = New System.Drawing.Size(181, 6)
        '
        'mnu_exit
        '
        Me.mnu_exit.Name = "mnu_exit"
        Me.mnu_exit.Size = New System.Drawing.Size(184, 22)
        Me.mnu_exit.Text = "E&xit"
        '
        'ToolsToolStripMenuItem
        '
        Me.ToolsToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnu_encode, Me.mnu_viewDVDdata, Me.ToolStripSeparator5, Me.mnu_options})
        Me.ToolsToolStripMenuItem.Name = "ToolsToolStripMenuItem"
        Me.ToolsToolStripMenuItem.Size = New System.Drawing.Size(44, 20)
        Me.ToolsToolStripMenuItem.Text = "&Tools"
        '
        'mnu_encode
        '
        Me.mnu_encode.Name = "mnu_encode"
        Me.mnu_encode.Size = New System.Drawing.Size(155, 22)
        Me.mnu_encode.Text = "Encode Queue"
        '
        'mnu_viewDVDdata
        '
        Me.mnu_viewDVDdata.Name = "mnu_viewDVDdata"
        Me.mnu_viewDVDdata.Size = New System.Drawing.Size(155, 22)
        Me.mnu_viewDVDdata.Text = "View DVD data"
        '
        'ToolStripSeparator5
        '
        Me.ToolStripSeparator5.Name = "ToolStripSeparator5"
        Me.ToolStripSeparator5.Size = New System.Drawing.Size(152, 6)
        '
        'mnu_options
        '
        Me.mnu_options.Name = "mnu_options"
        Me.mnu_options.Size = New System.Drawing.Size(155, 22)
        Me.mnu_options.Text = "Options"
        '
        'PresetsToolStripMenuItem
        '
        Me.PresetsToolStripMenuItem.BackColor = System.Drawing.SystemColors.Control
        Me.PresetsToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnu_preset_ipod133, Me.mnu_preset_ipod178, Me.mnu_preset_ipod235, Me.mnu_appleTv, Me.mnu_presetPS3, Me.ToolStripSeparator4, Me.mnu_ProgramDefaultOptions})
        Me.PresetsToolStripMenuItem.Name = "PresetsToolStripMenuItem"
        Me.PresetsToolStripMenuItem.Size = New System.Drawing.Size(55, 20)
        Me.PresetsToolStripMenuItem.Text = "&Presets"
        '
        'mnu_preset_ipod133
        '
        Me.mnu_preset_ipod133.Name = "mnu_preset_ipod133"
        Me.mnu_preset_ipod133.Size = New System.Drawing.Size(276, 22)
        Me.mnu_preset_ipod133.Text = "iPod (1.33)"
        '
        'mnu_preset_ipod178
        '
        Me.mnu_preset_ipod178.Name = "mnu_preset_ipod178"
        Me.mnu_preset_ipod178.Size = New System.Drawing.Size(276, 22)
        Me.mnu_preset_ipod178.Text = "iPod (1.78)"
        '
        'mnu_preset_ipod235
        '
        Me.mnu_preset_ipod235.Name = "mnu_preset_ipod235"
        Me.mnu_preset_ipod235.Size = New System.Drawing.Size(276, 22)
        Me.mnu_preset_ipod235.Text = "iPod (2.35)"
        '
        'mnu_appleTv
        '
        Me.mnu_appleTv.Name = "mnu_appleTv"
        Me.mnu_appleTv.Size = New System.Drawing.Size(276, 22)
        Me.mnu_appleTv.Text = "Apple TV"
        '
        'mnu_presetPS3
        '
        Me.mnu_presetPS3.Name = "mnu_presetPS3"
        Me.mnu_presetPS3.Size = New System.Drawing.Size(276, 22)
        Me.mnu_presetPS3.Text = "PS3"
        '
        'ToolStripSeparator4
        '
        Me.ToolStripSeparator4.Name = "ToolStripSeparator4"
        Me.ToolStripSeparator4.Size = New System.Drawing.Size(273, 6)
        '
        'mnu_ProgramDefaultOptions
        '
        Me.mnu_ProgramDefaultOptions.Name = "mnu_ProgramDefaultOptions"
        Me.mnu_ProgramDefaultOptions.Size = New System.Drawing.Size(276, 22)
        Me.mnu_ProgramDefaultOptions.Text = "Set current options as program defaults"
        '
        'HelpToolStripMenuItem
        '
        Me.HelpToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.OnlineDocumentationToolStripMenuItem, Me.WebsiteToolStripMenuItem, Me.ToolStripSeparator3, Me.mnu_about})
        Me.HelpToolStripMenuItem.Name = "HelpToolStripMenuItem"
        Me.HelpToolStripMenuItem.Size = New System.Drawing.Size(40, 20)
        Me.HelpToolStripMenuItem.Text = "&Help"
        '
        'OnlineDocumentationToolStripMenuItem
        '
        Me.OnlineDocumentationToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnu_wiki, Me.mnu_onlineDocs, Me.mnu_faq})
        Me.OnlineDocumentationToolStripMenuItem.Name = "OnlineDocumentationToolStripMenuItem"
        Me.OnlineDocumentationToolStripMenuItem.Size = New System.Drawing.Size(190, 22)
        Me.OnlineDocumentationToolStripMenuItem.Text = "Online Documentation"
        '
        'mnu_wiki
        '
        Me.mnu_wiki.Name = "mnu_wiki"
        Me.mnu_wiki.Size = New System.Drawing.Size(157, 22)
        Me.mnu_wiki.Text = "Wiki"
        '
        'mnu_onlineDocs
        '
        Me.mnu_onlineDocs.Name = "mnu_onlineDocs"
        Me.mnu_onlineDocs.Size = New System.Drawing.Size(157, 22)
        Me.mnu_onlineDocs.Text = "Documentation"
        '
        'mnu_faq
        '
        Me.mnu_faq.Name = "mnu_faq"
        Me.mnu_faq.Size = New System.Drawing.Size(157, 22)
        Me.mnu_faq.Text = "FAQ"
        '
        'WebsiteToolStripMenuItem
        '
        Me.WebsiteToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnu_homepage, Me.mnu_forum})
        Me.WebsiteToolStripMenuItem.Name = "WebsiteToolStripMenuItem"
        Me.WebsiteToolStripMenuItem.Size = New System.Drawing.Size(190, 22)
        Me.WebsiteToolStripMenuItem.Text = "Website"
        '
        'mnu_homepage
        '
        Me.mnu_homepage.Name = "mnu_homepage"
        Me.mnu_homepage.Size = New System.Drawing.Size(136, 22)
        Me.mnu_homepage.Text = "Homepage"
        '
        'mnu_forum
        '
        Me.mnu_forum.Name = "mnu_forum"
        Me.mnu_forum.Size = New System.Drawing.Size(136, 22)
        Me.mnu_forum.Text = "Forum"
        '
        'ToolStripSeparator3
        '
        Me.ToolStripSeparator3.Name = "ToolStripSeparator3"
        Me.ToolStripSeparator3.Size = New System.Drawing.Size(187, 6)
        '
        'mnu_about
        '
        Me.mnu_about.Name = "mnu_about"
        Me.mnu_about.Size = New System.Drawing.Size(190, 22)
        Me.mnu_about.Text = "About..."
        '
        'GroupBox4
        '
        Me.GroupBox4.BackColor = System.Drawing.SystemColors.Control
        Me.GroupBox4.Controls.Add(Me.Label56)
        Me.GroupBox4.Controls.Add(Me.lbl_Aspect)
        Me.GroupBox4.Controls.Add(Me.Label91)
        Me.GroupBox4.Controls.Add(Me.text_height)
        Me.GroupBox4.Controls.Add(Me.Label55)
        Me.GroupBox4.Controls.Add(Me.text_width)
        Me.GroupBox4.Controls.Add(Me.btn_destBrowse)
        Me.GroupBox4.Controls.Add(Me.Label3)
        Me.GroupBox4.Controls.Add(Me.drp_videoEncoder)
        Me.GroupBox4.Controls.Add(Me.Label47)
        Me.GroupBox4.Controls.Add(Me.text_destination)
        Me.GroupBox4.Controls.Add(Me.drp_audioCodec)
        Me.GroupBox4.Controls.Add(Me.Label12)
        Me.GroupBox4.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.GroupBox4.ForeColor = System.Drawing.Color.Black
        Me.GroupBox4.Location = New System.Drawing.Point(15, 157)
        Me.GroupBox4.Name = "GroupBox4"
        Me.GroupBox4.Size = New System.Drawing.Size(647, 126)
        Me.GroupBox4.TabIndex = 406
        Me.GroupBox4.TabStop = False
        Me.GroupBox4.Text = "Destination"
        '
        'Label56
        '
        Me.Label56.AutoSize = True
        Me.Label56.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label56.ForeColor = System.Drawing.Color.Black
        Me.Label56.Location = New System.Drawing.Point(170, 90)
        Me.Label56.Name = "Label56"
        Me.Label56.Size = New System.Drawing.Size(15, 13)
        Me.Label56.TabIndex = 38
        Me.Label56.Text = "x"
        '
        'lbl_Aspect
        '
        Me.lbl_Aspect.AutoSize = True
        Me.lbl_Aspect.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.lbl_Aspect.Location = New System.Drawing.Point(369, 91)
        Me.lbl_Aspect.Name = "lbl_Aspect"
        Me.lbl_Aspect.Size = New System.Drawing.Size(72, 12)
        Me.lbl_Aspect.TabIndex = 41
        Me.lbl_Aspect.Text = "Select a Title"
        '
        'Label91
        '
        Me.Label91.AutoSize = True
        Me.Label91.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label91.Location = New System.Drawing.Point(265, 91)
        Me.Label91.Name = "Label91"
        Me.Label91.Size = New System.Drawing.Size(87, 13)
        Me.Label91.TabIndex = 40
        Me.Label91.Text = "Aspect Ratio: "
        '
        'text_height
        '
        Me.text_height.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_height.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_height.ForeColor = System.Drawing.SystemColors.InfoText
        Me.text_height.Location = New System.Drawing.Point(191, 87)
        Me.text_height.Name = "text_height"
        Me.text_height.Size = New System.Drawing.Size(64, 21)
        Me.text_height.TabIndex = 8
        '
        'Label55
        '
        Me.Label55.AutoSize = True
        Me.Label55.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label55.ForeColor = System.Drawing.Color.Black
        Me.Label55.Location = New System.Drawing.Point(12, 91)
        Me.Label55.Name = "Label55"
        Me.Label55.Size = New System.Drawing.Size(85, 13)
        Me.Label55.TabIndex = 29
        Me.Label55.Text = "Width/Height:"
        '
        'text_width
        '
        Me.text_width.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_width.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_width.Location = New System.Drawing.Point(99, 87)
        Me.text_width.Name = "text_width"
        Me.text_width.Size = New System.Drawing.Size(64, 21)
        Me.text_width.TabIndex = 7
        '
        'btn_destBrowse
        '
        Me.btn_destBrowse.FlatAppearance.BorderColor = System.Drawing.Color.Black
        Me.btn_destBrowse.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.btn_destBrowse.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.btn_destBrowse.ForeColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(0, Byte), Integer))
        Me.btn_destBrowse.Location = New System.Drawing.Point(370, 21)
        Me.btn_destBrowse.Name = "btn_destBrowse"
        Me.btn_destBrowse.Size = New System.Drawing.Size(83, 22)
        Me.btn_destBrowse.TabIndex = 4
        Me.btn_destBrowse.Text = "Browse"
        Me.btn_destBrowse.UseVisualStyleBackColor = True
        '
        'Label3
        '
        Me.Label3.AutoSize = True
        Me.Label3.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label3.ForeColor = System.Drawing.Color.Black
        Me.Label3.Location = New System.Drawing.Point(12, 25)
        Me.Label3.Name = "Label3"
        Me.Label3.Size = New System.Drawing.Size(80, 13)
        Me.Label3.TabIndex = 3
        Me.Label3.Text = "Destination: "
        '
        'drp_videoEncoder
        '
        Me.drp_videoEncoder.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_videoEncoder.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_videoEncoder.FormattingEnabled = True
        Me.drp_videoEncoder.Items.AddRange(New Object() {"Mpeg 4", "Xvid", "H.264", "H.264 (iPod)", "H.264 Baseline 1.3"})
        Me.drp_videoEncoder.Location = New System.Drawing.Point(99, 54)
        Me.drp_videoEncoder.Name = "drp_videoEncoder"
        Me.drp_videoEncoder.Size = New System.Drawing.Size(156, 21)
        Me.drp_videoEncoder.TabIndex = 5
        Me.drp_videoEncoder.Text = "H.264"
        '
        'Label47
        '
        Me.Label47.AutoSize = True
        Me.Label47.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label47.ForeColor = System.Drawing.Color.Black
        Me.Label47.Location = New System.Drawing.Point(12, 57)
        Me.Label47.Name = "Label47"
        Me.Label47.Size = New System.Drawing.Size(62, 13)
        Me.Label47.TabIndex = 12
        Me.Label47.Text = "Encoder: "
        '
        'text_destination
        '
        Me.text_destination.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_destination.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_destination.Location = New System.Drawing.Point(99, 21)
        Me.text_destination.Name = "text_destination"
        Me.text_destination.Size = New System.Drawing.Size(262, 21)
        Me.text_destination.TabIndex = 4
        Me.ToolTip.SetToolTip(Me.text_destination, "Where you wish to save your output file.")
        '
        'drp_audioCodec
        '
        Me.drp_audioCodec.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_audioCodec.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_audioCodec.FormattingEnabled = True
        Me.drp_audioCodec.Items.AddRange(New Object() {"AAC", "MP3", "Vorbis", "AC3"})
        Me.drp_audioCodec.Location = New System.Drawing.Point(371, 53)
        Me.drp_audioCodec.Name = "drp_audioCodec"
        Me.drp_audioCodec.Size = New System.Drawing.Size(111, 21)
        Me.drp_audioCodec.TabIndex = 6
        Me.drp_audioCodec.Text = "AAC"
        '
        'Label12
        '
        Me.Label12.AutoSize = True
        Me.Label12.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label12.ForeColor = System.Drawing.Color.Black
        Me.Label12.Location = New System.Drawing.Point(265, 57)
        Me.Label12.Name = "Label12"
        Me.Label12.Size = New System.Drawing.Size(94, 13)
        Me.Label12.TabIndex = 20
        Me.Label12.Text = "Audio Encoder:"
        '
        'GroupBox1
        '
        Me.GroupBox1.BackColor = System.Drawing.SystemColors.Control
        Me.GroupBox1.Controls.Add(Me.Label13)
        Me.GroupBox1.Controls.Add(Me.drop_chapterFinish)
        Me.GroupBox1.Controls.Add(Me.drop_chapterStart)
        Me.GroupBox1.Controls.Add(Me.drp_dvdtitle)
        Me.GroupBox1.Controls.Add(Me.RadioDVD)
        Me.GroupBox1.Controls.Add(Me.RadioISO)
        Me.GroupBox1.Controls.Add(Me.btn_Browse)
        Me.GroupBox1.Controls.Add(Me.Label17)
        Me.GroupBox1.Controls.Add(Me.text_source)
        Me.GroupBox1.Controls.Add(Me.Label9)
        Me.GroupBox1.Controls.Add(Me.Label10)
        Me.GroupBox1.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.GroupBox1.ForeColor = System.Drawing.Color.Black
        Me.GroupBox1.Location = New System.Drawing.Point(15, 35)
        Me.GroupBox1.Name = "GroupBox1"
        Me.GroupBox1.Size = New System.Drawing.Size(647, 116)
        Me.GroupBox1.TabIndex = 407
        Me.GroupBox1.TabStop = False
        Me.GroupBox1.Text = "Source"
        '
        'Label13
        '
        Me.Label13.AutoSize = True
        Me.Label13.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label13.Location = New System.Drawing.Point(178, 85)
        Me.Label13.Name = "Label13"
        Me.Label13.Size = New System.Drawing.Size(21, 13)
        Me.Label13.TabIndex = 42
        Me.Label13.Text = "To"
        '
        'drop_chapterFinish
        '
        Me.drop_chapterFinish.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drop_chapterFinish.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drop_chapterFinish.FormattingEnabled = True
        Me.drop_chapterFinish.Location = New System.Drawing.Point(212, 81)
        Me.drop_chapterFinish.Name = "drop_chapterFinish"
        Me.drop_chapterFinish.Size = New System.Drawing.Size(69, 21)
        Me.drop_chapterFinish.TabIndex = 41
        Me.drop_chapterFinish.Text = "Auto"
        Me.ToolTip.SetToolTip(Me.drop_chapterFinish, "Encode chapters to this number")
        '
        'drop_chapterStart
        '
        Me.drop_chapterStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drop_chapterStart.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drop_chapterStart.FormattingEnabled = True
        Me.drop_chapterStart.Location = New System.Drawing.Point(99, 81)
        Me.drop_chapterStart.Name = "drop_chapterStart"
        Me.drop_chapterStart.Size = New System.Drawing.Size(69, 21)
        Me.drop_chapterStart.TabIndex = 40
        Me.drop_chapterStart.Text = "Auto"
        Me.ToolTip.SetToolTip(Me.drop_chapterStart, "Encode chatpers from this number.")
        '
        'drp_dvdtitle
        '
        Me.drp_dvdtitle.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_dvdtitle.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_dvdtitle.FormattingEnabled = True
        Me.drp_dvdtitle.Items.AddRange(New Object() {"Automatic"})
        Me.drp_dvdtitle.Location = New System.Drawing.Point(99, 50)
        Me.drp_dvdtitle.Name = "drp_dvdtitle"
        Me.drp_dvdtitle.Size = New System.Drawing.Size(119, 21)
        Me.drp_dvdtitle.TabIndex = 39
        Me.drp_dvdtitle.Text = "Automatic"
        Me.ToolTip.SetToolTip(Me.drp_dvdtitle, "The title number you wish to encode.")
        '
        'RadioDVD
        '
        Me.RadioDVD.AutoSize = True
        Me.RadioDVD.Checked = True
        Me.RadioDVD.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.RadioDVD.Location = New System.Drawing.Point(358, 18)
        Me.RadioDVD.Name = "RadioDVD"
        Me.RadioDVD.Size = New System.Drawing.Size(51, 17)
        Me.RadioDVD.TabIndex = 20
        Me.RadioDVD.TabStop = True
        Me.RadioDVD.Text = "DVD"
        Me.RadioDVD.UseVisualStyleBackColor = True
        '
        'RadioISO
        '
        Me.RadioISO.AutoSize = True
        Me.RadioISO.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.RadioISO.Location = New System.Drawing.Point(358, 34)
        Me.RadioISO.Name = "RadioISO"
        Me.RadioISO.Size = New System.Drawing.Size(44, 17)
        Me.RadioISO.TabIndex = 19
        Me.RadioISO.Text = "File"
        Me.ToolTip.SetToolTip(Me.RadioISO, "ISO, TS, MPG")
        Me.RadioISO.UseVisualStyleBackColor = True
        '
        'btn_Browse
        '
        Me.btn_Browse.FlatAppearance.BorderColor = System.Drawing.Color.Black
        Me.btn_Browse.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.btn_Browse.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.btn_Browse.ForeColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(0, Byte), Integer))
        Me.btn_Browse.Location = New System.Drawing.Point(415, 22)
        Me.btn_Browse.Name = "btn_Browse"
        Me.btn_Browse.Size = New System.Drawing.Size(78, 22)
        Me.btn_Browse.TabIndex = 2
        Me.btn_Browse.Text = "Browse"
        Me.btn_Browse.UseVisualStyleBackColor = True
        '
        'Label17
        '
        Me.Label17.AutoSize = True
        Me.Label17.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label17.ForeColor = System.Drawing.Color.Black
        Me.Label17.Location = New System.Drawing.Point(12, 25)
        Me.Label17.Name = "Label17"
        Me.Label17.Size = New System.Drawing.Size(52, 13)
        Me.Label17.TabIndex = 6
        Me.Label17.Text = "Source:"
        '
        'text_source
        '
        Me.text_source.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_source.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_source.Location = New System.Drawing.Point(99, 22)
        Me.text_source.Name = "text_source"
        Me.text_source.Size = New System.Drawing.Size(253, 21)
        Me.text_source.TabIndex = 1
        Me.text_source.Text = "Click ""Browse"" to continue"
        Me.ToolTip.SetToolTip(Me.text_source, "The input source location.")
        '
        'Label9
        '
        Me.Label9.AutoSize = True
        Me.Label9.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label9.ForeColor = System.Drawing.Color.Black
        Me.Label9.Location = New System.Drawing.Point(12, 84)
        Me.Label9.Name = "Label9"
        Me.Label9.Size = New System.Drawing.Size(64, 13)
        Me.Label9.TabIndex = 12
        Me.Label9.Text = "Chapters:"
        '
        'Label10
        '
        Me.Label10.AutoSize = True
        Me.Label10.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label10.ForeColor = System.Drawing.Color.Black
        Me.Label10.Location = New System.Drawing.Point(12, 56)
        Me.Label10.Name = "Label10"
        Me.Label10.Size = New System.Drawing.Size(36, 13)
        Me.Label10.TabIndex = 11
        Me.Label10.Text = "Title:"
        '
        'Version
        '
        Me.Version.BackColor = System.Drawing.Color.Transparent
        Me.Version.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Version.Location = New System.Drawing.Point(16, 595)
        Me.Version.Name = "Version"
        Me.Version.Size = New System.Drawing.Size(141, 20)
        Me.Version.TabIndex = 411
        Me.Version.Text = "Version 2.3"
        '
        'btn_encode
        '
        Me.btn_encode.BackColor = System.Drawing.SystemColors.Control
        Me.btn_encode.FlatAppearance.BorderColor = System.Drawing.Color.Black
        Me.btn_encode.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.btn_encode.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.btn_encode.ForeColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(0, Byte), Integer))
        Me.btn_encode.Location = New System.Drawing.Point(538, 590)
        Me.btn_encode.Name = "btn_encode"
        Me.btn_encode.Size = New System.Drawing.Size(124, 22)
        Me.btn_encode.TabIndex = 19
        Me.btn_encode.TabStop = False
        Me.btn_encode.Text = "Encode Video"
        Me.btn_encode.UseVisualStyleBackColor = False
        '
        'btn_queue
        '
        Me.btn_queue.BackColor = System.Drawing.SystemColors.Control
        Me.btn_queue.FlatAppearance.BorderColor = System.Drawing.Color.Black
        Me.btn_queue.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.btn_queue.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.btn_queue.ForeColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(0, Byte), Integer))
        Me.btn_queue.Location = New System.Drawing.Point(407, 590)
        Me.btn_queue.Name = "btn_queue"
        Me.btn_queue.Size = New System.Drawing.Size(124, 22)
        Me.btn_queue.TabIndex = 412
        Me.btn_queue.TabStop = False
        Me.btn_queue.Text = "Add to Queue"
        Me.btn_queue.UseVisualStyleBackColor = False
        '
        'h264Tab
        '
        Me.h264Tab.BackColor = System.Drawing.SystemColors.Control
        Me.h264Tab.Controls.Add(Me.Label43)
        Me.h264Tab.Controls.Add(Me.label_h264)
        Me.h264Tab.Controls.Add(Me.Label95)
        Me.h264Tab.Controls.Add(Me.btn_h264Clear)
        Me.h264Tab.Controls.Add(Me.Label90)
        Me.h264Tab.Controls.Add(Me.rtf_h264advanced)
        Me.h264Tab.Controls.Add(Me.Label92)
        Me.h264Tab.Location = New System.Drawing.Point(4, 22)
        Me.h264Tab.Name = "h264Tab"
        Me.h264Tab.Padding = New System.Windows.Forms.Padding(3)
        Me.h264Tab.Size = New System.Drawing.Size(639, 268)
        Me.h264Tab.TabIndex = 5
        Me.h264Tab.Text = "H.264"
        '
        'Label43
        '
        Me.Label43.AutoSize = True
        Me.Label43.Location = New System.Drawing.Point(78, 224)
        Me.Label43.Name = "Label43"
        Me.Label43.Size = New System.Drawing.Size(158, 13)
        Me.Label43.TabIndex = 48
        Me.Label43.Text = "for help using this feature."
        '
        'label_h264
        '
        Me.label_h264.AutoSize = True
        Me.label_h264.Location = New System.Drawing.Point(13, 224)
        Me.label_h264.Name = "label_h264"
        Me.label_h264.Size = New System.Drawing.Size(66, 13)
        Me.label_h264.TabIndex = 47
        Me.label_h264.TabStop = True
        Me.label_h264.Text = "Click Here"
        '
        'Label95
        '
        Me.Label95.AutoSize = True
        Me.Label95.Location = New System.Drawing.Point(13, 205)
        Me.Label95.Name = "Label95"
        Me.Label95.Size = New System.Drawing.Size(387, 13)
        Me.Label95.TabIndex = 46
        Me.Label95.Text = "Note: Incorrect usage of this feature will cause the encoder to fail!"
        '
        'btn_h264Clear
        '
        Me.btn_h264Clear.FlatAppearance.BorderColor = System.Drawing.Color.Black
        Me.btn_h264Clear.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.btn_h264Clear.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.btn_h264Clear.ForeColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(0, Byte), Integer))
        Me.btn_h264Clear.Location = New System.Drawing.Point(542, 50)
        Me.btn_h264Clear.Name = "btn_h264Clear"
        Me.btn_h264Clear.Size = New System.Drawing.Size(79, 23)
        Me.btn_h264Clear.TabIndex = 45
        Me.btn_h264Clear.Text = "Clear"
        Me.btn_h264Clear.UseVisualStyleBackColor = True
        '
        'Label90
        '
        Me.Label90.AutoSize = True
        Me.Label90.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label90.Location = New System.Drawing.Point(13, 13)
        Me.Label90.Name = "Label90"
        Me.Label90.Size = New System.Drawing.Size(165, 13)
        Me.Label90.TabIndex = 42
        Me.Label90.Text = "Advanced H.264 Options"
        '
        'rtf_h264advanced
        '
        Me.rtf_h264advanced.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.rtf_h264advanced.Location = New System.Drawing.Point(16, 79)
        Me.rtf_h264advanced.Name = "rtf_h264advanced"
        Me.rtf_h264advanced.Size = New System.Drawing.Size(605, 123)
        Me.rtf_h264advanced.TabIndex = 41
        Me.rtf_h264advanced.Text = ""
        '
        'Label92
        '
        Me.Label92.AutoSize = True
        Me.Label92.Location = New System.Drawing.Point(13, 41)
        Me.Label92.Name = "Label92"
        Me.Label92.Size = New System.Drawing.Size(370, 26)
        Me.Label92.TabIndex = 40
        Me.Label92.Text = "Specify advanced x264 options in the same style as mencoder:" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "option1=value1:opti" & _
            "on2=value2"
        '
        'TabPage2
        '
        Me.TabPage2.BackColor = System.Drawing.SystemColors.Control
        Me.TabPage2.Controls.Add(Me.Label29)
        Me.TabPage2.Controls.Add(Me.drp_audioMixDown)
        Me.TabPage2.Controls.Add(Me.drp_audioChannels)
        Me.TabPage2.Controls.Add(Me.drp_audioBitrate)
        Me.TabPage2.Controls.Add(Me.Label14)
        Me.TabPage2.Controls.Add(Me.Label5)
        Me.TabPage2.Controls.Add(Me.Label35)
        Me.TabPage2.Controls.Add(Me.Label16)
        Me.TabPage2.Controls.Add(Me.Label32)
        Me.TabPage2.Controls.Add(Me.Label18)
        Me.TabPage2.Controls.Add(Me.drp_audioSampleRate)
        Me.TabPage2.Location = New System.Drawing.Point(4, 22)
        Me.TabPage2.Name = "TabPage2"
        Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
        Me.TabPage2.Size = New System.Drawing.Size(639, 268)
        Me.TabPage2.TabIndex = 3
        Me.TabPage2.Text = "Audio Settings"
        '
        'Label29
        '
        Me.Label29.AutoSize = True
        Me.Label29.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label29.Location = New System.Drawing.Point(155, 151)
        Me.Label29.Name = "Label29"
        Me.Label29.Size = New System.Drawing.Size(189, 24)
        Me.Label29.TabIndex = 42
        Me.Label29.Text = "Please note: Some options require a " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "5.1 Audio Channel to be selected."
        '
        'drp_audioMixDown
        '
        Me.drp_audioMixDown.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_audioMixDown.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_audioMixDown.FormattingEnabled = True
        Me.drp_audioMixDown.Location = New System.Drawing.Point(157, 127)
        Me.drp_audioMixDown.Name = "drp_audioMixDown"
        Me.drp_audioMixDown.Size = New System.Drawing.Size(173, 21)
        Me.drp_audioMixDown.TabIndex = 50
        Me.drp_audioMixDown.Text = "Automatic"
        '
        'drp_audioChannels
        '
        Me.drp_audioChannels.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_audioChannels.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_audioChannels.FormattingEnabled = True
        Me.drp_audioChannels.Location = New System.Drawing.Point(157, 97)
        Me.drp_audioChannels.Name = "drp_audioChannels"
        Me.drp_audioChannels.Size = New System.Drawing.Size(173, 21)
        Me.drp_audioChannels.TabIndex = 49
        Me.drp_audioChannels.Text = "Automatic"
        '
        'drp_audioBitrate
        '
        Me.drp_audioBitrate.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_audioBitrate.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_audioBitrate.FormattingEnabled = True
        Me.drp_audioBitrate.Location = New System.Drawing.Point(157, 37)
        Me.drp_audioBitrate.Name = "drp_audioBitrate"
        Me.drp_audioBitrate.Size = New System.Drawing.Size(101, 21)
        Me.drp_audioBitrate.TabIndex = 40
        Me.drp_audioBitrate.Text = "128"
        '
        'Label14
        '
        Me.Label14.AutoSize = True
        Me.Label14.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label14.Location = New System.Drawing.Point(13, 130)
        Me.Label14.Name = "Label14"
        Me.Label14.Size = New System.Drawing.Size(99, 13)
        Me.Label14.TabIndex = 39
        Me.Label14.Text = "Audio MixDown:"
        '
        'Label5
        '
        Me.Label5.AutoSize = True
        Me.Label5.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label5.Location = New System.Drawing.Point(13, 13)
        Me.Label5.Name = "Label5"
        Me.Label5.Size = New System.Drawing.Size(101, 13)
        Me.Label5.TabIndex = 37
        Me.Label5.Text = "Audio Settings"
        '
        'Label35
        '
        Me.Label35.AutoSize = True
        Me.Label35.Location = New System.Drawing.Point(239, 103)
        Me.Label35.Name = "Label35"
        Me.Label35.Size = New System.Drawing.Size(0, 13)
        Me.Label35.TabIndex = 30
        '
        'Label16
        '
        Me.Label16.AutoSize = True
        Me.Label16.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label16.Location = New System.Drawing.Point(13, 40)
        Me.Label16.Name = "Label16"
        Me.Label16.Size = New System.Drawing.Size(91, 13)
        Me.Label16.TabIndex = 20
        Me.Label16.Text = "Bitrate (kbps):"
        '
        'Label32
        '
        Me.Label32.AutoSize = True
        Me.Label32.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label32.Location = New System.Drawing.Point(13, 100)
        Me.Label32.Name = "Label32"
        Me.Label32.Size = New System.Drawing.Size(80, 13)
        Me.Label32.TabIndex = 29
        Me.Label32.Text = "Audio Track:"
        '
        'Label18
        '
        Me.Label18.AutoSize = True
        Me.Label18.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label18.Location = New System.Drawing.Point(13, 70)
        Me.Label18.Name = "Label18"
        Me.Label18.Size = New System.Drawing.Size(120, 13)
        Me.Label18.TabIndex = 23
        Me.Label18.Text = "Sample Rate (kHz):"
        '
        'drp_audioSampleRate
        '
        Me.drp_audioSampleRate.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_audioSampleRate.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_audioSampleRate.FormattingEnabled = True
        Me.drp_audioSampleRate.Items.AddRange(New Object() {"48", "44.1", "32", "24", "22.05"})
        Me.drp_audioSampleRate.Location = New System.Drawing.Point(157, 67)
        Me.drp_audioSampleRate.Name = "drp_audioSampleRate"
        Me.drp_audioSampleRate.Size = New System.Drawing.Size(101, 21)
        Me.drp_audioSampleRate.TabIndex = 23
        Me.drp_audioSampleRate.Text = "44.1"
        '
        'TabPage3
        '
        Me.TabPage3.BackColor = System.Drawing.SystemColors.Control
        Me.TabPage3.Controls.Add(Me.Label41)
        Me.TabPage3.Controls.Add(Me.Label37)
        Me.TabPage3.Controls.Add(Me.check_largeFile)
        Me.TabPage3.Controls.Add(Me.check_turbo)
        Me.TabPage3.Controls.Add(Me.Label36)
        Me.TabPage3.Controls.Add(Me.Check_ChapterMarkers)
        Me.TabPage3.Controls.Add(Me.Label28)
        Me.TabPage3.Controls.Add(Me.Label27)
        Me.TabPage3.Controls.Add(Me.Label4)
        Me.TabPage3.Controls.Add(Me.CheckCRF)
        Me.TabPage3.Controls.Add(Me.CheckPixelRatio)
        Me.TabPage3.Controls.Add(Me.Label23)
        Me.TabPage3.Controls.Add(Me.Label22)
        Me.TabPage3.Controls.Add(Me.Label2)
        Me.TabPage3.Controls.Add(Me.check_grayscale)
        Me.TabPage3.Controls.Add(Me.SliderValue)
        Me.TabPage3.Controls.Add(Me.check_DeInterlace)
        Me.TabPage3.Controls.Add(Me.drp_videoFramerate)
        Me.TabPage3.Controls.Add(Me.check_2PassEncode)
        Me.TabPage3.Controls.Add(Me.slider_videoQuality)
        Me.TabPage3.Controls.Add(Me.text_filesize)
        Me.TabPage3.Controls.Add(Label38)
        Me.TabPage3.Controls.Add(Me.Label46)
        Me.TabPage3.Controls.Add(Me.Label40)
        Me.TabPage3.Controls.Add(Me.text_bitrate)
        Me.TabPage3.Controls.Add(Me.Label42)
        Me.TabPage3.Location = New System.Drawing.Point(4, 22)
        Me.TabPage3.Name = "TabPage3"
        Me.TabPage3.Padding = New System.Windows.Forms.Padding(3)
        Me.TabPage3.Size = New System.Drawing.Size(639, 268)
        Me.TabPage3.TabIndex = 2
        Me.TabPage3.Text = "Video Settings"
        '
        'Label41
        '
        Me.Label41.AutoSize = True
        Me.Label41.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label41.Location = New System.Drawing.Point(494, 63)
        Me.Label41.Name = "Label41"
        Me.Label41.Size = New System.Drawing.Size(121, 12)
        Me.Label41.TabIndex = 53
        Me.Label41.Text = "(H.264 encoder's only)"
        '
        'Label37
        '
        Me.Label37.AutoSize = True
        Me.Label37.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label37.Location = New System.Drawing.Point(382, 194)
        Me.Label37.Name = "Label37"
        Me.Label37.Size = New System.Drawing.Size(228, 12)
        Me.Label37.TabIndex = 52
        Me.Label37.Text = " Note: Breaks iPod, @TV, PS3 compatibility."
        '
        'check_largeFile
        '
        Me.check_largeFile.AutoSize = True
        Me.check_largeFile.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.check_largeFile.Location = New System.Drawing.Point(367, 176)
        Me.check_largeFile.Name = "check_largeFile"
        Me.check_largeFile.Size = New System.Drawing.Size(172, 17)
        Me.check_largeFile.TabIndex = 51
        Me.check_largeFile.Text = "Larger mp4 Files (> 4GB)"
        Me.check_largeFile.UseVisualStyleBackColor = True
        '
        'check_turbo
        '
        Me.check_turbo.AutoSize = True
        Me.check_turbo.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.check_turbo.Location = New System.Drawing.Point(387, 61)
        Me.check_turbo.Name = "check_turbo"
        Me.check_turbo.Size = New System.Drawing.Size(110, 17)
        Me.check_turbo.TabIndex = 50
        Me.check_turbo.Text = "Turbo 1st Pass"
        Me.check_turbo.UseVisualStyleBackColor = True
        '
        'Label36
        '
        Me.Label36.AutoSize = True
        Me.Label36.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label36.Location = New System.Drawing.Point(486, 155)
        Me.Label36.Name = "Label36"
        Me.Label36.Size = New System.Drawing.Size(109, 12)
        Me.Label36.TabIndex = 49
        Me.Label36.Text = "(m4v container only)"
        '
        'Check_ChapterMarkers
        '
        Me.Check_ChapterMarkers.AutoSize = True
        Me.Check_ChapterMarkers.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Check_ChapterMarkers.Location = New System.Drawing.Point(368, 153)
        Me.Check_ChapterMarkers.Name = "Check_ChapterMarkers"
        Me.Check_ChapterMarkers.Size = New System.Drawing.Size(122, 17)
        Me.Check_ChapterMarkers.TabIndex = 48
        Me.Check_ChapterMarkers.Text = "Chapter Markers"
        Me.Check_ChapterMarkers.UseVisualStyleBackColor = True
        '
        'Label28
        '
        Me.Label28.AutoSize = True
        Me.Label28.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label28.Location = New System.Drawing.Point(108, 237)
        Me.Label28.Name = "Label28"
        Me.Label28.Size = New System.Drawing.Size(121, 12)
        Me.Label28.TabIndex = 47
        Me.Label28.Text = "(H.264 encoder's only)"
        '
        'Label27
        '
        Me.Label27.AutoSize = True
        Me.Label27.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label27.Location = New System.Drawing.Point(108, 219)
        Me.Label27.Name = "Label27"
        Me.Label27.Size = New System.Drawing.Size(205, 12)
        Me.Label27.TabIndex = 46
        Me.Label27.Text = "(To be used with ""Video Quality"" Slider)"
        '
        'Label4
        '
        Me.Label4.AutoSize = True
        Me.Label4.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label4.Location = New System.Drawing.Point(13, 193)
        Me.Label4.Name = "Label4"
        Me.Label4.Size = New System.Drawing.Size(147, 13)
        Me.Label4.TabIndex = 45
        Me.Label4.Text = "Constant Rate Factor "
        '
        'CheckCRF
        '
        Me.CheckCRF.AutoSize = True
        Me.CheckCRF.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.CheckCRF.Location = New System.Drawing.Point(16, 217)
        Me.CheckCRF.Name = "CheckCRF"
        Me.CheckCRF.Size = New System.Drawing.Size(91, 17)
        Me.CheckCRF.TabIndex = 44
        Me.CheckCRF.Text = "Enable CRF"
        Me.CheckCRF.UseVisualStyleBackColor = True
        '
        'CheckPixelRatio
        '
        Me.CheckPixelRatio.AutoSize = True
        Me.CheckPixelRatio.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.CheckPixelRatio.Location = New System.Drawing.Point(368, 130)
        Me.CheckPixelRatio.Name = "CheckPixelRatio"
        Me.CheckPixelRatio.Size = New System.Drawing.Size(121, 17)
        Me.CheckPixelRatio.TabIndex = 40
        Me.CheckPixelRatio.Text = "Anamorphic PAR"
        Me.CheckPixelRatio.UseVisualStyleBackColor = True
        '
        'Label23
        '
        Me.Label23.AutoSize = True
        Me.Label23.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label23.Location = New System.Drawing.Point(13, 134)
        Me.Label23.Name = "Label23"
        Me.Label23.Size = New System.Drawing.Size(100, 13)
        Me.Label23.TabIndex = 39
        Me.Label23.Text = "Video Settings"
        '
        'Label22
        '
        Me.Label22.AutoSize = True
        Me.Label22.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label22.Location = New System.Drawing.Point(365, 13)
        Me.Label22.Name = "Label22"
        Me.Label22.Size = New System.Drawing.Size(175, 13)
        Me.Label22.TabIndex = 38
        Me.Label22.Text = "Advanced Output Settings"
        '
        'Label2
        '
        Me.Label2.AutoSize = True
        Me.Label2.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label2.Location = New System.Drawing.Point(13, 13)
        Me.Label2.Name = "Label2"
        Me.Label2.Size = New System.Drawing.Size(110, 13)
        Me.Label2.TabIndex = 37
        Me.Label2.Text = "Quality Settings"
        '
        'check_grayscale
        '
        Me.check_grayscale.AutoSize = True
        Me.check_grayscale.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.check_grayscale.Location = New System.Drawing.Point(368, 107)
        Me.check_grayscale.Name = "check_grayscale"
        Me.check_grayscale.Size = New System.Drawing.Size(138, 17)
        Me.check_grayscale.TabIndex = 20
        Me.check_grayscale.Text = "Grayscale Encoding"
        Me.check_grayscale.UseVisualStyleBackColor = True
        '
        'SliderValue
        '
        Me.SliderValue.AutoSize = True
        Me.SliderValue.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.SliderValue.Location = New System.Drawing.Point(303, 96)
        Me.SliderValue.Name = "SliderValue"
        Me.SliderValue.Size = New System.Drawing.Size(23, 12)
        Me.SliderValue.TabIndex = 32
        Me.SliderValue.Text = "0%"
        '
        'check_DeInterlace
        '
        Me.check_DeInterlace.AutoSize = True
        Me.check_DeInterlace.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.check_DeInterlace.Location = New System.Drawing.Point(368, 84)
        Me.check_DeInterlace.Name = "check_DeInterlace"
        Me.check_DeInterlace.Size = New System.Drawing.Size(98, 17)
        Me.check_DeInterlace.TabIndex = 19
        Me.check_DeInterlace.Text = "De-Interlace"
        Me.check_DeInterlace.UseVisualStyleBackColor = True
        '
        'drp_videoFramerate
        '
        Me.drp_videoFramerate.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_videoFramerate.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_videoFramerate.FormattingEnabled = True
        Me.drp_videoFramerate.Items.AddRange(New Object() {"Automatic", "5", "10", "12", "15", "23.976", "24", "25", "29.97"})
        Me.drp_videoFramerate.Location = New System.Drawing.Point(135, 153)
        Me.drp_videoFramerate.Name = "drp_videoFramerate"
        Me.drp_videoFramerate.Size = New System.Drawing.Size(112, 21)
        Me.drp_videoFramerate.TabIndex = 21
        Me.drp_videoFramerate.Text = "Automatic"
        '
        'check_2PassEncode
        '
        Me.check_2PassEncode.AutoSize = True
        Me.check_2PassEncode.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.check_2PassEncode.Location = New System.Drawing.Point(368, 38)
        Me.check_2PassEncode.Name = "check_2PassEncode"
        Me.check_2PassEncode.Size = New System.Drawing.Size(119, 17)
        Me.check_2PassEncode.TabIndex = 18
        Me.check_2PassEncode.Text = "2-Pass Encoding"
        Me.check_2PassEncode.UseVisualStyleBackColor = True
        '
        'slider_videoQuality
        '
        Me.slider_videoQuality.Location = New System.Drawing.Point(129, 90)
        Me.slider_videoQuality.Maximum = 100
        Me.slider_videoQuality.Name = "slider_videoQuality"
        Me.slider_videoQuality.Size = New System.Drawing.Size(167, 42)
        Me.slider_videoQuality.TabIndex = 6
        Me.slider_videoQuality.TickFrequency = 17
        '
        'text_filesize
        '
        Me.text_filesize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_filesize.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_filesize.Location = New System.Drawing.Point(140, 63)
        Me.text_filesize.Name = "text_filesize"
        Me.text_filesize.Size = New System.Drawing.Size(156, 21)
        Me.text_filesize.TabIndex = 16
        '
        'Label46
        '
        Me.Label46.AutoSize = True
        Me.Label46.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label46.Location = New System.Drawing.Point(13, 158)
        Me.Label46.Name = "Label46"
        Me.Label46.Size = New System.Drawing.Size(107, 13)
        Me.Label46.TabIndex = 21
        Me.Label46.Text = "Video Framerate:"
        '
        'Label40
        '
        Me.Label40.AutoSize = True
        Me.Label40.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label40.Location = New System.Drawing.Point(13, 96)
        Me.Label40.Name = "Label40"
        Me.Label40.Size = New System.Drawing.Size(107, 13)
        Me.Label40.TabIndex = 27
        Me.Label40.Text = "Constant Quality:"
        '
        'text_bitrate
        '
        Me.text_bitrate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_bitrate.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_bitrate.Location = New System.Drawing.Point(140, 36)
        Me.text_bitrate.Name = "text_bitrate"
        Me.text_bitrate.Size = New System.Drawing.Size(156, 21)
        Me.text_bitrate.TabIndex = 15
        '
        'Label42
        '
        Me.Label42.AutoSize = True
        Me.Label42.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label42.Location = New System.Drawing.Point(13, 38)
        Me.Label42.Name = "Label42"
        Me.Label42.Size = New System.Drawing.Size(117, 13)
        Me.Label42.TabIndex = 18
        Me.Label42.Text = "Avg Bitrate (kbps):"
        '
        'TabPage1
        '
        Me.TabPage1.BackColor = System.Drawing.SystemColors.Control
        Me.TabPage1.Controls.Add(Me.drp_subtitle)
        Me.TabPage1.Controls.Add(Me.Label19)
        Me.TabPage1.Controls.Add(Me.lbl_RecomendedCrop)
        Me.TabPage1.Controls.Add(Me.Label8)
        Me.TabPage1.Controls.Add(Me.Label1)
        Me.TabPage1.Controls.Add(Me.Label53)
        Me.TabPage1.Controls.Add(Me.Label21)
        Me.TabPage1.Controls.Add(Me.Label20)
        Me.TabPage1.Controls.Add(Me.Label52)
        Me.TabPage1.Controls.Add(Me.Label51)
        Me.TabPage1.Controls.Add(Me.Label50)
        Me.TabPage1.Controls.Add(Me.Label15)
        Me.TabPage1.Controls.Add(Me.text_top)
        Me.TabPage1.Controls.Add(Me.text_bottom)
        Me.TabPage1.Controls.Add(Me.drp_crop)
        Me.TabPage1.Controls.Add(Me.text_right)
        Me.TabPage1.Controls.Add(Me.text_left)
        Me.TabPage1.Location = New System.Drawing.Point(4, 22)
        Me.TabPage1.Name = "TabPage1"
        Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
        Me.TabPage1.Size = New System.Drawing.Size(639, 268)
        Me.TabPage1.TabIndex = 0
        Me.TabPage1.Text = "Picture Settings"
        '
        'drp_subtitle
        '
        Me.drp_subtitle.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_subtitle.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_subtitle.FormattingEnabled = True
        Me.drp_subtitle.Location = New System.Drawing.Point(381, 36)
        Me.drp_subtitle.Name = "drp_subtitle"
        Me.drp_subtitle.Size = New System.Drawing.Size(213, 21)
        Me.drp_subtitle.TabIndex = 42
        Me.drp_subtitle.Text = "None"
        Me.ToolTip.SetToolTip(Me.drp_subtitle, "Select the subtitle language you require from this dropdown.")
        '
        'Label19
        '
        Me.Label19.AutoSize = True
        Me.Label19.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label19.Location = New System.Drawing.Point(311, 13)
        Me.Label19.Name = "Label19"
        Me.Label19.Size = New System.Drawing.Size(64, 13)
        Me.Label19.TabIndex = 39
        Me.Label19.Text = "Subtitles"
        '
        'lbl_RecomendedCrop
        '
        Me.lbl_RecomendedCrop.AutoSize = True
        Me.lbl_RecomendedCrop.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.lbl_RecomendedCrop.Location = New System.Drawing.Point(119, 72)
        Me.lbl_RecomendedCrop.Name = "lbl_RecomendedCrop"
        Me.lbl_RecomendedCrop.Size = New System.Drawing.Size(72, 12)
        Me.lbl_RecomendedCrop.TabIndex = 38
        Me.lbl_RecomendedCrop.Text = "Select a Title"
        '
        'Label8
        '
        Me.Label8.AutoSize = True
        Me.Label8.Location = New System.Drawing.Point(13, 71)
        Me.Label8.Name = "Label8"
        Me.Label8.Size = New System.Drawing.Size(70, 13)
        Me.Label8.TabIndex = 37
        Me.Label8.Text = "Auto Crop:"
        '
        'Label1
        '
        Me.Label1.AutoSize = True
        Me.Label1.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label1.Location = New System.Drawing.Point(13, 13)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(65, 13)
        Me.Label1.TabIndex = 36
        Me.Label1.Text = "Cropping"
        '
        'Label53
        '
        Me.Label53.AutoSize = True
        Me.Label53.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label53.Location = New System.Drawing.Point(134, 196)
        Me.Label53.Name = "Label53"
        Me.Label53.Size = New System.Drawing.Size(48, 13)
        Me.Label53.TabIndex = 32
        Me.Label53.Text = "Bottom"
        '
        'Label21
        '
        Me.Label21.AutoSize = True
        Me.Label21.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label21.Location = New System.Drawing.Point(378, 63)
        Me.Label21.Name = "Label21"
        Me.Label21.Size = New System.Drawing.Size(224, 26)
        Me.Label21.TabIndex = 34
        Me.Label21.Text = "Please note that subtitles will be hard " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "coded into the video." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
        '
        'Label20
        '
        Me.Label20.AutoSize = True
        Me.Label20.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label20.Location = New System.Drawing.Point(314, 39)
        Me.Label20.Name = "Label20"
        Me.Label20.Size = New System.Drawing.Size(61, 13)
        Me.Label20.TabIndex = 33
        Me.Label20.Text = "Subtitles:"
        '
        'Label52
        '
        Me.Label52.AutoSize = True
        Me.Label52.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label52.Location = New System.Drawing.Point(138, 105)
        Me.Label52.Name = "Label52"
        Me.Label52.Size = New System.Drawing.Size(28, 13)
        Me.Label52.TabIndex = 31
        Me.Label52.Text = "Top"
        '
        'Label51
        '
        Me.Label51.AutoSize = True
        Me.Label51.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label51.Location = New System.Drawing.Point(243, 148)
        Me.Label51.Name = "Label51"
        Me.Label51.Size = New System.Drawing.Size(36, 13)
        Me.Label51.TabIndex = 30
        Me.Label51.Text = "Right"
        '
        'Label50
        '
        Me.Label50.AutoSize = True
        Me.Label50.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label50.Location = New System.Drawing.Point(13, 41)
        Me.Label50.Name = "Label50"
        Me.Label50.Size = New System.Drawing.Size(88, 13)
        Me.Label50.TabIndex = 17
        Me.Label50.Text = "Select Option:"
        '
        'Label15
        '
        Me.Label15.AutoSize = True
        Me.Label15.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label15.Location = New System.Drawing.Point(39, 148)
        Me.Label15.Name = "Label15"
        Me.Label15.Size = New System.Drawing.Size(28, 13)
        Me.Label15.TabIndex = 29
        Me.Label15.Text = "Left"
        '
        'text_top
        '
        Me.text_top.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_top.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_top.Location = New System.Drawing.Point(131, 120)
        Me.text_top.Name = "text_top"
        Me.text_top.Size = New System.Drawing.Size(51, 21)
        Me.text_top.TabIndex = 10
        Me.text_top.Text = "0"
        '
        'text_bottom
        '
        Me.text_bottom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_bottom.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_bottom.Location = New System.Drawing.Point(131, 172)
        Me.text_bottom.Name = "text_bottom"
        Me.text_bottom.Size = New System.Drawing.Size(51, 21)
        Me.text_bottom.TabIndex = 12
        Me.text_bottom.Text = "0"
        '
        'drp_crop
        '
        Me.drp_crop.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.drp_crop.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.drp_crop.FormattingEnabled = True
        Me.drp_crop.Items.AddRange(New Object() {"Auto Crop", "No Crop", "Manual"})
        Me.drp_crop.Location = New System.Drawing.Point(121, 36)
        Me.drp_crop.Name = "drp_crop"
        Me.drp_crop.Size = New System.Drawing.Size(123, 21)
        Me.drp_crop.TabIndex = 9
        Me.drp_crop.Text = "No Crop"
        '
        'text_right
        '
        Me.text_right.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_right.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_right.Location = New System.Drawing.Point(190, 145)
        Me.text_right.Name = "text_right"
        Me.text_right.Size = New System.Drawing.Size(51, 21)
        Me.text_right.TabIndex = 13
        Me.text_right.Text = "0"
        '
        'text_left
        '
        Me.text_left.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.text_left.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.text_left.Location = New System.Drawing.Point(72, 145)
        Me.text_left.Name = "text_left"
        Me.text_left.Size = New System.Drawing.Size(51, 21)
        Me.text_left.TabIndex = 11
        Me.text_left.Text = "0"
        '
        'advancedOptions
        '
        Me.advancedOptions.Controls.Add(Me.TabPage1)
        Me.advancedOptions.Controls.Add(Me.TabPage3)
        Me.advancedOptions.Controls.Add(Me.TabPage2)
        Me.advancedOptions.Controls.Add(Me.h264Tab)
        Me.advancedOptions.Controls.Add(Me.TabPage6)
        Me.advancedOptions.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.advancedOptions.Location = New System.Drawing.Point(15, 291)
        Me.advancedOptions.Name = "advancedOptions"
        Me.advancedOptions.SelectedIndex = 0
        Me.advancedOptions.Size = New System.Drawing.Size(647, 294)
        Me.advancedOptions.TabIndex = 410
        Me.advancedOptions.TabStop = False
        '
        'TabPage6
        '
        Me.TabPage6.BackColor = System.Drawing.SystemColors.Control
        Me.TabPage6.Controls.Add(Me.Label7)
        Me.TabPage6.Controls.Add(Me.Label39)
        Me.TabPage6.Controls.Add(Me.btn_ClearQuery)
        Me.TabPage6.Controls.Add(Me.GenerateQuery)
        Me.TabPage6.Controls.Add(Me.QueryEditorText)
        Me.TabPage6.Location = New System.Drawing.Point(4, 22)
        Me.TabPage6.Name = "TabPage6"
        Me.TabPage6.Padding = New System.Windows.Forms.Padding(3)
        Me.TabPage6.Size = New System.Drawing.Size(639, 268)
        Me.TabPage6.TabIndex = 6
        Me.TabPage6.Text = "Query Editor"
        '
        'Label7
        '
        Me.Label7.AutoSize = True
        Me.Label7.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label7.Location = New System.Drawing.Point(13, 13)
        Me.Label7.Name = "Label7"
        Me.Label7.Size = New System.Drawing.Size(89, 13)
        Me.Label7.TabIndex = 42
        Me.Label7.Text = "Query Editor"
        '
        'Label39
        '
        Me.Label39.AutoSize = True
        Me.Label39.Location = New System.Drawing.Point(13, 34)
        Me.Label39.Name = "Label39"
        Me.Label39.Size = New System.Drawing.Size(403, 39)
        Me.Label39.TabIndex = 40
        Me.Label39.Text = "Here you can alter the query generated by the program." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Click the ""Generate Query" & _
            " Now"" button to continue." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Remember to re-generate the query each time you chang" & _
            "e a setting!"
        '
        'btn_ClearQuery
        '
        Me.btn_ClearQuery.FlatAppearance.BorderColor = System.Drawing.Color.Black
        Me.btn_ClearQuery.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.btn_ClearQuery.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.btn_ClearQuery.ForeColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(0, Byte), Integer))
        Me.btn_ClearQuery.Location = New System.Drawing.Point(542, 84)
        Me.btn_ClearQuery.Name = "btn_ClearQuery"
        Me.btn_ClearQuery.Size = New System.Drawing.Size(79, 23)
        Me.btn_ClearQuery.TabIndex = 39
        Me.btn_ClearQuery.Text = "Clear"
        Me.btn_ClearQuery.UseVisualStyleBackColor = True
        '
        'GenerateQuery
        '
        Me.GenerateQuery.FlatAppearance.BorderColor = System.Drawing.Color.Black
        Me.GenerateQuery.FlatStyle = System.Windows.Forms.FlatStyle.Flat
        Me.GenerateQuery.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.GenerateQuery.ForeColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(0, Byte), Integer))
        Me.GenerateQuery.Location = New System.Drawing.Point(16, 84)
        Me.GenerateQuery.Name = "GenerateQuery"
        Me.GenerateQuery.Size = New System.Drawing.Size(176, 23)
        Me.GenerateQuery.TabIndex = 38
        Me.GenerateQuery.Text = "Generate Query Now"
        Me.GenerateQuery.UseVisualStyleBackColor = True
        '
        'QueryEditorText
        '
        Me.QueryEditorText.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.QueryEditorText.Location = New System.Drawing.Point(16, 114)
        Me.QueryEditorText.Name = "QueryEditorText"
        Me.QueryEditorText.Size = New System.Drawing.Size(605, 127)
        Me.QueryEditorText.TabIndex = 41
        Me.QueryEditorText.Text = ""
        '
        'Label24
        '
        Me.Label24.AutoSize = True
        Me.Label24.Location = New System.Drawing.Point(118, 71)
        Me.Label24.Name = "Label24"
        Me.Label24.Size = New System.Drawing.Size(175, 13)
        Me.Label24.TabIndex = 38
        Me.Label24.Text = "Click ""Read DVD"" and select a title"
        '
        'Label25
        '
        Me.Label25.AutoSize = True
        Me.Label25.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label25.Location = New System.Drawing.Point(439, 13)
        Me.Label25.Name = "Label25"
        Me.Label25.Size = New System.Drawing.Size(64, 13)
        Me.Label25.TabIndex = 39
        Me.Label25.Text = "Subtitles"
        '
        'Label26
        '
        Me.Label26.AutoSize = True
        Me.Label26.Location = New System.Drawing.Point(13, 71)
        Me.Label26.Name = "Label26"
        Me.Label26.Size = New System.Drawing.Size(85, 13)
        Me.Label26.TabIndex = 37
        Me.Label26.Text = "Recommended: "
        '
        'Label30
        '
        Me.Label30.AutoSize = True
        Me.Label30.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label30.Location = New System.Drawing.Point(13, 13)
        Me.Label30.Name = "Label30"
        Me.Label30.Size = New System.Drawing.Size(65, 13)
        Me.Label30.TabIndex = 36
        Me.Label30.Text = "Cropping"
        '
        'Label31
        '
        Me.Label31.AutoSize = True
        Me.Label31.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label31.Location = New System.Drawing.Point(134, 196)
        Me.Label31.Name = "Label31"
        Me.Label31.Size = New System.Drawing.Size(48, 13)
        Me.Label31.TabIndex = 32
        Me.Label31.Text = "Bottom"
        '
        'Label33
        '
        Me.Label33.AutoSize = True
        Me.Label33.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label33.Location = New System.Drawing.Point(511, 71)
        Me.Label33.Name = "Label33"
        Me.Label33.Size = New System.Drawing.Size(172, 26)
        Me.Label33.TabIndex = 34
        Me.Label33.Text = "Please note that subtitles will" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "be hard coded into the video"
        '
        'Label34
        '
        Me.Label34.AutoSize = True
        Me.Label34.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label34.Location = New System.Drawing.Point(439, 45)
        Me.Label34.Name = "Label34"
        Me.Label34.Size = New System.Drawing.Size(61, 13)
        Me.Label34.TabIndex = 33
        Me.Label34.Text = "Subtitles:"
        '
        'Label44
        '
        Me.Label44.AutoSize = True
        Me.Label44.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label44.Location = New System.Drawing.Point(138, 105)
        Me.Label44.Name = "Label44"
        Me.Label44.Size = New System.Drawing.Size(28, 13)
        Me.Label44.TabIndex = 31
        Me.Label44.Text = "Top"
        '
        'TextBox1
        '
        Me.TextBox1.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox1.Location = New System.Drawing.Point(515, 42)
        Me.TextBox1.Name = "TextBox1"
        Me.TextBox1.Size = New System.Drawing.Size(163, 21)
        Me.TextBox1.TabIndex = 22
        '
        'Label45
        '
        Me.Label45.AutoSize = True
        Me.Label45.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label45.Location = New System.Drawing.Point(243, 148)
        Me.Label45.Name = "Label45"
        Me.Label45.Size = New System.Drawing.Size(36, 13)
        Me.Label45.TabIndex = 30
        Me.Label45.Text = "Right"
        '
        'Label48
        '
        Me.Label48.AutoSize = True
        Me.Label48.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label48.Location = New System.Drawing.Point(13, 39)
        Me.Label48.Name = "Label48"
        Me.Label48.Size = New System.Drawing.Size(88, 13)
        Me.Label48.TabIndex = 17
        Me.Label48.Text = "Select Option:"
        '
        'Label49
        '
        Me.Label49.AutoSize = True
        Me.Label49.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label49.Location = New System.Drawing.Point(39, 148)
        Me.Label49.Name = "Label49"
        Me.Label49.Size = New System.Drawing.Size(28, 13)
        Me.Label49.TabIndex = 29
        Me.Label49.Text = "Left"
        '
        'TextBox2
        '
        Me.TextBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox2.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox2.Location = New System.Drawing.Point(131, 120)
        Me.TextBox2.Name = "TextBox2"
        Me.TextBox2.Size = New System.Drawing.Size(51, 21)
        Me.TextBox2.TabIndex = 10
        Me.TextBox2.Text = "0"
        '
        'TextBox3
        '
        Me.TextBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox3.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox3.Location = New System.Drawing.Point(131, 172)
        Me.TextBox3.Name = "TextBox3"
        Me.TextBox3.Size = New System.Drawing.Size(51, 21)
        Me.TextBox3.TabIndex = 12
        Me.TextBox3.Text = "0"
        '
        'ComboBox1
        '
        Me.ComboBox1.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.ComboBox1.FormattingEnabled = True
        Me.ComboBox1.Items.AddRange(New Object() {"Auto Crop", "No Crop", "Manual"})
        Me.ComboBox1.Location = New System.Drawing.Point(121, 36)
        Me.ComboBox1.Name = "ComboBox1"
        Me.ComboBox1.Size = New System.Drawing.Size(123, 21)
        Me.ComboBox1.TabIndex = 16
        Me.ComboBox1.Text = "Manual"
        '
        'TextBox4
        '
        Me.TextBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox4.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox4.Location = New System.Drawing.Point(190, 145)
        Me.TextBox4.Name = "TextBox4"
        Me.TextBox4.Size = New System.Drawing.Size(51, 21)
        Me.TextBox4.TabIndex = 13
        Me.TextBox4.Text = "0"
        '
        'TextBox5
        '
        Me.TextBox5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox5.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox5.Location = New System.Drawing.Point(72, 145)
        Me.TextBox5.Name = "TextBox5"
        Me.TextBox5.Size = New System.Drawing.Size(51, 21)
        Me.TextBox5.TabIndex = 11
        Me.TextBox5.Text = "0"
        '
        'Label54
        '
        Me.Label54.AutoSize = True
        Me.Label54.Location = New System.Drawing.Point(118, 71)
        Me.Label54.Name = "Label54"
        Me.Label54.Size = New System.Drawing.Size(175, 13)
        Me.Label54.TabIndex = 38
        Me.Label54.Text = "Click ""Read DVD"" and select a title"
        '
        'Label57
        '
        Me.Label57.AutoSize = True
        Me.Label57.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label57.Location = New System.Drawing.Point(439, 13)
        Me.Label57.Name = "Label57"
        Me.Label57.Size = New System.Drawing.Size(64, 13)
        Me.Label57.TabIndex = 39
        Me.Label57.Text = "Subtitles"
        '
        'Label58
        '
        Me.Label58.AutoSize = True
        Me.Label58.Location = New System.Drawing.Point(13, 71)
        Me.Label58.Name = "Label58"
        Me.Label58.Size = New System.Drawing.Size(85, 13)
        Me.Label58.TabIndex = 37
        Me.Label58.Text = "Recommended: "
        '
        'Label59
        '
        Me.Label59.AutoSize = True
        Me.Label59.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label59.Location = New System.Drawing.Point(13, 13)
        Me.Label59.Name = "Label59"
        Me.Label59.Size = New System.Drawing.Size(65, 13)
        Me.Label59.TabIndex = 36
        Me.Label59.Text = "Cropping"
        '
        'Label60
        '
        Me.Label60.AutoSize = True
        Me.Label60.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label60.Location = New System.Drawing.Point(134, 196)
        Me.Label60.Name = "Label60"
        Me.Label60.Size = New System.Drawing.Size(48, 13)
        Me.Label60.TabIndex = 32
        Me.Label60.Text = "Bottom"
        '
        'Label61
        '
        Me.Label61.AutoSize = True
        Me.Label61.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label61.Location = New System.Drawing.Point(511, 71)
        Me.Label61.Name = "Label61"
        Me.Label61.Size = New System.Drawing.Size(172, 26)
        Me.Label61.TabIndex = 34
        Me.Label61.Text = "Please note that subtitles will" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "be hard coded into the video"
        '
        'Label62
        '
        Me.Label62.AutoSize = True
        Me.Label62.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label62.Location = New System.Drawing.Point(439, 45)
        Me.Label62.Name = "Label62"
        Me.Label62.Size = New System.Drawing.Size(61, 13)
        Me.Label62.TabIndex = 33
        Me.Label62.Text = "Subtitles:"
        '
        'Label63
        '
        Me.Label63.AutoSize = True
        Me.Label63.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label63.Location = New System.Drawing.Point(138, 105)
        Me.Label63.Name = "Label63"
        Me.Label63.Size = New System.Drawing.Size(28, 13)
        Me.Label63.TabIndex = 31
        Me.Label63.Text = "Top"
        '
        'TextBox6
        '
        Me.TextBox6.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox6.Location = New System.Drawing.Point(515, 42)
        Me.TextBox6.Name = "TextBox6"
        Me.TextBox6.Size = New System.Drawing.Size(163, 21)
        Me.TextBox6.TabIndex = 22
        '
        'Label64
        '
        Me.Label64.AutoSize = True
        Me.Label64.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label64.Location = New System.Drawing.Point(243, 148)
        Me.Label64.Name = "Label64"
        Me.Label64.Size = New System.Drawing.Size(36, 13)
        Me.Label64.TabIndex = 30
        Me.Label64.Text = "Right"
        '
        'Label65
        '
        Me.Label65.AutoSize = True
        Me.Label65.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label65.Location = New System.Drawing.Point(13, 39)
        Me.Label65.Name = "Label65"
        Me.Label65.Size = New System.Drawing.Size(88, 13)
        Me.Label65.TabIndex = 17
        Me.Label65.Text = "Select Option:"
        '
        'Label66
        '
        Me.Label66.AutoSize = True
        Me.Label66.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label66.Location = New System.Drawing.Point(39, 148)
        Me.Label66.Name = "Label66"
        Me.Label66.Size = New System.Drawing.Size(28, 13)
        Me.Label66.TabIndex = 29
        Me.Label66.Text = "Left"
        '
        'TextBox7
        '
        Me.TextBox7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox7.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox7.Location = New System.Drawing.Point(131, 120)
        Me.TextBox7.Name = "TextBox7"
        Me.TextBox7.Size = New System.Drawing.Size(51, 21)
        Me.TextBox7.TabIndex = 10
        Me.TextBox7.Text = "0"
        '
        'TextBox8
        '
        Me.TextBox8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox8.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox8.Location = New System.Drawing.Point(131, 172)
        Me.TextBox8.Name = "TextBox8"
        Me.TextBox8.Size = New System.Drawing.Size(51, 21)
        Me.TextBox8.TabIndex = 12
        Me.TextBox8.Text = "0"
        '
        'ComboBox2
        '
        Me.ComboBox2.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.ComboBox2.FormattingEnabled = True
        Me.ComboBox2.Items.AddRange(New Object() {"Auto Crop", "No Crop", "Manual"})
        Me.ComboBox2.Location = New System.Drawing.Point(121, 36)
        Me.ComboBox2.Name = "ComboBox2"
        Me.ComboBox2.Size = New System.Drawing.Size(123, 21)
        Me.ComboBox2.TabIndex = 16
        Me.ComboBox2.Text = "Manual"
        '
        'TextBox9
        '
        Me.TextBox9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox9.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox9.Location = New System.Drawing.Point(190, 145)
        Me.TextBox9.Name = "TextBox9"
        Me.TextBox9.Size = New System.Drawing.Size(51, 21)
        Me.TextBox9.TabIndex = 13
        Me.TextBox9.Text = "0"
        '
        'TextBox10
        '
        Me.TextBox10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox10.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox10.Location = New System.Drawing.Point(72, 145)
        Me.TextBox10.Name = "TextBox10"
        Me.TextBox10.Size = New System.Drawing.Size(51, 21)
        Me.TextBox10.TabIndex = 11
        Me.TextBox10.Text = "0"
        '
        'Label67
        '
        Me.Label67.AutoSize = True
        Me.Label67.Location = New System.Drawing.Point(118, 71)
        Me.Label67.Name = "Label67"
        Me.Label67.Size = New System.Drawing.Size(175, 13)
        Me.Label67.TabIndex = 38
        Me.Label67.Text = "Click ""Read DVD"" and select a title"
        '
        'Label68
        '
        Me.Label68.AutoSize = True
        Me.Label68.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label68.Location = New System.Drawing.Point(439, 13)
        Me.Label68.Name = "Label68"
        Me.Label68.Size = New System.Drawing.Size(64, 13)
        Me.Label68.TabIndex = 39
        Me.Label68.Text = "Subtitles"
        '
        'Label69
        '
        Me.Label69.AutoSize = True
        Me.Label69.Location = New System.Drawing.Point(13, 71)
        Me.Label69.Name = "Label69"
        Me.Label69.Size = New System.Drawing.Size(85, 13)
        Me.Label69.TabIndex = 37
        Me.Label69.Text = "Recommended: "
        '
        'Label70
        '
        Me.Label70.AutoSize = True
        Me.Label70.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label70.Location = New System.Drawing.Point(13, 13)
        Me.Label70.Name = "Label70"
        Me.Label70.Size = New System.Drawing.Size(65, 13)
        Me.Label70.TabIndex = 36
        Me.Label70.Text = "Cropping"
        '
        'Label71
        '
        Me.Label71.AutoSize = True
        Me.Label71.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label71.Location = New System.Drawing.Point(134, 196)
        Me.Label71.Name = "Label71"
        Me.Label71.Size = New System.Drawing.Size(48, 13)
        Me.Label71.TabIndex = 32
        Me.Label71.Text = "Bottom"
        '
        'Label72
        '
        Me.Label72.AutoSize = True
        Me.Label72.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label72.Location = New System.Drawing.Point(511, 71)
        Me.Label72.Name = "Label72"
        Me.Label72.Size = New System.Drawing.Size(172, 26)
        Me.Label72.TabIndex = 34
        Me.Label72.Text = "Please note that subtitles will" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "be hard coded into the video"
        '
        'Label73
        '
        Me.Label73.AutoSize = True
        Me.Label73.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label73.Location = New System.Drawing.Point(439, 45)
        Me.Label73.Name = "Label73"
        Me.Label73.Size = New System.Drawing.Size(61, 13)
        Me.Label73.TabIndex = 33
        Me.Label73.Text = "Subtitles:"
        '
        'Label74
        '
        Me.Label74.AutoSize = True
        Me.Label74.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label74.Location = New System.Drawing.Point(138, 105)
        Me.Label74.Name = "Label74"
        Me.Label74.Size = New System.Drawing.Size(28, 13)
        Me.Label74.TabIndex = 31
        Me.Label74.Text = "Top"
        '
        'TextBox11
        '
        Me.TextBox11.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox11.Location = New System.Drawing.Point(515, 42)
        Me.TextBox11.Name = "TextBox11"
        Me.TextBox11.Size = New System.Drawing.Size(163, 21)
        Me.TextBox11.TabIndex = 22
        '
        'Label75
        '
        Me.Label75.AutoSize = True
        Me.Label75.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label75.Location = New System.Drawing.Point(243, 148)
        Me.Label75.Name = "Label75"
        Me.Label75.Size = New System.Drawing.Size(36, 13)
        Me.Label75.TabIndex = 30
        Me.Label75.Text = "Right"
        '
        'Label76
        '
        Me.Label76.AutoSize = True
        Me.Label76.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label76.Location = New System.Drawing.Point(13, 39)
        Me.Label76.Name = "Label76"
        Me.Label76.Size = New System.Drawing.Size(88, 13)
        Me.Label76.TabIndex = 17
        Me.Label76.Text = "Select Option:"
        '
        'Label77
        '
        Me.Label77.AutoSize = True
        Me.Label77.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label77.Location = New System.Drawing.Point(39, 148)
        Me.Label77.Name = "Label77"
        Me.Label77.Size = New System.Drawing.Size(28, 13)
        Me.Label77.TabIndex = 29
        Me.Label77.Text = "Left"
        '
        'TextBox12
        '
        Me.TextBox12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox12.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox12.Location = New System.Drawing.Point(131, 120)
        Me.TextBox12.Name = "TextBox12"
        Me.TextBox12.Size = New System.Drawing.Size(51, 21)
        Me.TextBox12.TabIndex = 10
        Me.TextBox12.Text = "0"
        '
        'TextBox13
        '
        Me.TextBox13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox13.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox13.Location = New System.Drawing.Point(131, 172)
        Me.TextBox13.Name = "TextBox13"
        Me.TextBox13.Size = New System.Drawing.Size(51, 21)
        Me.TextBox13.TabIndex = 12
        Me.TextBox13.Text = "0"
        '
        'ComboBox3
        '
        Me.ComboBox3.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.ComboBox3.FormattingEnabled = True
        Me.ComboBox3.Items.AddRange(New Object() {"Auto Crop", "No Crop", "Manual"})
        Me.ComboBox3.Location = New System.Drawing.Point(121, 36)
        Me.ComboBox3.Name = "ComboBox3"
        Me.ComboBox3.Size = New System.Drawing.Size(123, 21)
        Me.ComboBox3.TabIndex = 16
        Me.ComboBox3.Text = "Manual"
        '
        'TextBox14
        '
        Me.TextBox14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox14.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox14.Location = New System.Drawing.Point(190, 145)
        Me.TextBox14.Name = "TextBox14"
        Me.TextBox14.Size = New System.Drawing.Size(51, 21)
        Me.TextBox14.TabIndex = 13
        Me.TextBox14.Text = "0"
        '
        'TextBox15
        '
        Me.TextBox15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox15.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox15.Location = New System.Drawing.Point(72, 145)
        Me.TextBox15.Name = "TextBox15"
        Me.TextBox15.Size = New System.Drawing.Size(51, 21)
        Me.TextBox15.TabIndex = 11
        Me.TextBox15.Text = "0"
        '
        'Label78
        '
        Me.Label78.AutoSize = True
        Me.Label78.Location = New System.Drawing.Point(118, 71)
        Me.Label78.Name = "Label78"
        Me.Label78.Size = New System.Drawing.Size(175, 13)
        Me.Label78.TabIndex = 38
        Me.Label78.Text = "Click ""Read DVD"" and select a title"
        '
        'Label79
        '
        Me.Label79.AutoSize = True
        Me.Label79.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label79.Location = New System.Drawing.Point(439, 13)
        Me.Label79.Name = "Label79"
        Me.Label79.Size = New System.Drawing.Size(64, 13)
        Me.Label79.TabIndex = 39
        Me.Label79.Text = "Subtitles"
        '
        'Label80
        '
        Me.Label80.AutoSize = True
        Me.Label80.Location = New System.Drawing.Point(13, 71)
        Me.Label80.Name = "Label80"
        Me.Label80.Size = New System.Drawing.Size(85, 13)
        Me.Label80.TabIndex = 37
        Me.Label80.Text = "Recommended: "
        '
        'Label81
        '
        Me.Label81.AutoSize = True
        Me.Label81.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label81.Location = New System.Drawing.Point(13, 13)
        Me.Label81.Name = "Label81"
        Me.Label81.Size = New System.Drawing.Size(65, 13)
        Me.Label81.TabIndex = 36
        Me.Label81.Text = "Cropping"
        '
        'Label82
        '
        Me.Label82.AutoSize = True
        Me.Label82.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label82.Location = New System.Drawing.Point(134, 196)
        Me.Label82.Name = "Label82"
        Me.Label82.Size = New System.Drawing.Size(48, 13)
        Me.Label82.TabIndex = 32
        Me.Label82.Text = "Bottom"
        '
        'Label83
        '
        Me.Label83.AutoSize = True
        Me.Label83.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label83.Location = New System.Drawing.Point(511, 71)
        Me.Label83.Name = "Label83"
        Me.Label83.Size = New System.Drawing.Size(172, 26)
        Me.Label83.TabIndex = 34
        Me.Label83.Text = "Please note that subtitles will" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "be hard coded into the video"
        '
        'Label84
        '
        Me.Label84.AutoSize = True
        Me.Label84.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label84.Location = New System.Drawing.Point(439, 45)
        Me.Label84.Name = "Label84"
        Me.Label84.Size = New System.Drawing.Size(61, 13)
        Me.Label84.TabIndex = 33
        Me.Label84.Text = "Subtitles:"
        '
        'Label85
        '
        Me.Label85.AutoSize = True
        Me.Label85.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label85.Location = New System.Drawing.Point(138, 105)
        Me.Label85.Name = "Label85"
        Me.Label85.Size = New System.Drawing.Size(28, 13)
        Me.Label85.TabIndex = 31
        Me.Label85.Text = "Top"
        '
        'TextBox16
        '
        Me.TextBox16.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox16.Location = New System.Drawing.Point(515, 42)
        Me.TextBox16.Name = "TextBox16"
        Me.TextBox16.Size = New System.Drawing.Size(163, 21)
        Me.TextBox16.TabIndex = 22
        '
        'Label86
        '
        Me.Label86.AutoSize = True
        Me.Label86.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label86.Location = New System.Drawing.Point(243, 148)
        Me.Label86.Name = "Label86"
        Me.Label86.Size = New System.Drawing.Size(36, 13)
        Me.Label86.TabIndex = 30
        Me.Label86.Text = "Right"
        '
        'Label87
        '
        Me.Label87.AutoSize = True
        Me.Label87.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label87.Location = New System.Drawing.Point(13, 39)
        Me.Label87.Name = "Label87"
        Me.Label87.Size = New System.Drawing.Size(88, 13)
        Me.Label87.TabIndex = 17
        Me.Label87.Text = "Select Option:"
        '
        'Label88
        '
        Me.Label88.AutoSize = True
        Me.Label88.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Label88.Location = New System.Drawing.Point(39, 148)
        Me.Label88.Name = "Label88"
        Me.Label88.Size = New System.Drawing.Size(28, 13)
        Me.Label88.TabIndex = 29
        Me.Label88.Text = "Left"
        '
        'TextBox17
        '
        Me.TextBox17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox17.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox17.Location = New System.Drawing.Point(131, 120)
        Me.TextBox17.Name = "TextBox17"
        Me.TextBox17.Size = New System.Drawing.Size(51, 21)
        Me.TextBox17.TabIndex = 10
        Me.TextBox17.Text = "0"
        '
        'TextBox18
        '
        Me.TextBox18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox18.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox18.Location = New System.Drawing.Point(131, 172)
        Me.TextBox18.Name = "TextBox18"
        Me.TextBox18.Size = New System.Drawing.Size(51, 21)
        Me.TextBox18.TabIndex = 12
        Me.TextBox18.Text = "0"
        '
        'ComboBox4
        '
        Me.ComboBox4.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.ComboBox4.FormattingEnabled = True
        Me.ComboBox4.Items.AddRange(New Object() {"Auto Crop", "No Crop", "Manual"})
        Me.ComboBox4.Location = New System.Drawing.Point(121, 36)
        Me.ComboBox4.Name = "ComboBox4"
        Me.ComboBox4.Size = New System.Drawing.Size(123, 21)
        Me.ComboBox4.TabIndex = 16
        Me.ComboBox4.Text = "Manual"
        '
        'TextBox19
        '
        Me.TextBox19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox19.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox19.Location = New System.Drawing.Point(190, 145)
        Me.TextBox19.Name = "TextBox19"
        Me.TextBox19.Size = New System.Drawing.Size(51, 21)
        Me.TextBox19.TabIndex = 13
        Me.TextBox19.Text = "0"
        '
        'TextBox20
        '
        Me.TextBox20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
        Me.TextBox20.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.TextBox20.Location = New System.Drawing.Point(72, 145)
        Me.TextBox20.Name = "TextBox20"
        Me.TextBox20.Size = New System.Drawing.Size(51, 21)
        Me.TextBox20.TabIndex = 11
        Me.TextBox20.Text = "0"
        '
        'File_Open
        '
        Me.File_Open.DefaultExt = "hb"
        Me.File_Open.Filter = "hb|*.hb"
        '
        'ISO_Open
        '
        Me.ISO_Open.DefaultExt = "iso"
        Me.ISO_Open.Filter = "iso|*.iso |mpg|*.mpg |mpeg|*.mpeg |ts|*.ts |VOB|*.VOB"
        '
        'DVD_Save
        '
        Me.DVD_Save.DefaultExt = "mp4"
        Me.DVD_Save.Filter = "mp4|*.mp4 |m4v|*.m4v |avi|*.avi |ogm|*.ogm"
        '
        'File_Save
        '
        Me.File_Save.DefaultExt = "hb"
        Me.File_Save.Filter = "hb|*.hb"
        '
        'lbl_update
        '
        Me.lbl_update.AutoSize = True
        Me.lbl_update.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.lbl_update.ForeColor = System.Drawing.Color.Black
        Me.lbl_update.Location = New System.Drawing.Point(89, 595)
        Me.lbl_update.Name = "lbl_update"
        Me.lbl_update.Size = New System.Drawing.Size(193, 13)
        Me.lbl_update.TabIndex = 413
        Me.lbl_update.Text = "- A New Version is available!"
        Me.lbl_update.Visible = False
        '
        'frmMain
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(675, 621)
        Me.Controls.Add(Me.lbl_update)
        Me.Controls.Add(Me.btn_queue)
        Me.Controls.Add(Me.btn_encode)
        Me.Controls.Add(Me.Version)
        Me.Controls.Add(Me.advancedOptions)
        Me.Controls.Add(Me.GroupBox4)
        Me.Controls.Add(Me.GroupBox1)
        Me.Controls.Add(Me.frmMainMenu)
        Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
        Me.MainMenuStrip = Me.frmMainMenu
        Me.MaximumSize = New System.Drawing.Size(878, 750)
        Me.MinimumSize = New System.Drawing.Size(683, 648)
        Me.Name = "frmMain"
        Me.Text = "Handbrake"
        Me.frmMainMenu.ResumeLayout(False)
        Me.frmMainMenu.PerformLayout()
        Me.GroupBox4.ResumeLayout(False)
        Me.GroupBox4.PerformLayout()
        Me.GroupBox1.ResumeLayout(False)
        Me.GroupBox1.PerformLayout()
        Me.h264Tab.ResumeLayout(False)
        Me.h264Tab.PerformLayout()
        Me.TabPage2.ResumeLayout(False)
        Me.TabPage2.PerformLayout()
        Me.TabPage3.ResumeLayout(False)
        Me.TabPage3.PerformLayout()
        CType(Me.slider_videoQuality, System.ComponentModel.ISupportInitialize).EndInit()
        Me.TabPage1.ResumeLayout(False)
        Me.TabPage1.PerformLayout()
        Me.advancedOptions.ResumeLayout(False)
        Me.TabPage6.ResumeLayout(False)
        Me.TabPage6.PerformLayout()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents frmMainMenu As System.Windows.Forms.MenuStrip
    Friend WithEvents FileToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_open As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_save As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents toolStripSeparator2 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents mnu_exit As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents ToolsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents HelpToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_about As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents GroupBox4 As System.Windows.Forms.GroupBox
    Friend WithEvents Label56 As System.Windows.Forms.Label
    Friend WithEvents text_height As System.Windows.Forms.TextBox
    Friend WithEvents Label55 As System.Windows.Forms.Label
    Friend WithEvents text_width As System.Windows.Forms.TextBox
    Friend WithEvents btn_destBrowse As System.Windows.Forms.Button
    Friend WithEvents Label3 As System.Windows.Forms.Label
    Friend WithEvents drp_videoEncoder As System.Windows.Forms.ComboBox
    Friend WithEvents Label47 As System.Windows.Forms.Label
    Friend WithEvents text_destination As System.Windows.Forms.TextBox
    Friend WithEvents drp_audioCodec As System.Windows.Forms.ComboBox
    Friend WithEvents Label12 As System.Windows.Forms.Label
    Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
    Friend WithEvents Label17 As System.Windows.Forms.Label
    Friend WithEvents text_source As System.Windows.Forms.TextBox
    Friend WithEvents Label9 As System.Windows.Forms.Label
    Friend WithEvents Label10 As System.Windows.Forms.Label
    Friend WithEvents Version As System.Windows.Forms.Label
    Friend WithEvents btn_encode As System.Windows.Forms.Button
    Friend WithEvents btn_queue As System.Windows.Forms.Button
    Friend WithEvents h264Tab As System.Windows.Forms.TabPage
    Friend WithEvents TabPage2 As System.Windows.Forms.TabPage
    Friend WithEvents Label35 As System.Windows.Forms.Label
    Friend WithEvents Label32 As System.Windows.Forms.Label
    Friend WithEvents drp_audioSampleRate As System.Windows.Forms.ComboBox
    Friend WithEvents Label18 As System.Windows.Forms.Label
    Friend WithEvents Label16 As System.Windows.Forms.Label
    Friend WithEvents TabPage3 As System.Windows.Forms.TabPage
    Friend WithEvents SliderValue As System.Windows.Forms.Label
    Friend WithEvents slider_videoQuality As System.Windows.Forms.TrackBar
    Friend WithEvents text_filesize As System.Windows.Forms.TextBox
    Friend WithEvents Label40 As System.Windows.Forms.Label
    Friend WithEvents text_bitrate As System.Windows.Forms.TextBox
    Friend WithEvents Label42 As System.Windows.Forms.Label
    Friend WithEvents check_grayscale As System.Windows.Forms.CheckBox
    Friend WithEvents check_DeInterlace As System.Windows.Forms.CheckBox
    Friend WithEvents check_2PassEncode As System.Windows.Forms.CheckBox
    Friend WithEvents drp_videoFramerate As System.Windows.Forms.ComboBox
    Friend WithEvents Label46 As System.Windows.Forms.Label
    Friend WithEvents TabPage1 As System.Windows.Forms.TabPage
    Friend WithEvents Label21 As System.Windows.Forms.Label
    Friend WithEvents Label20 As System.Windows.Forms.Label
    Friend WithEvents Label53 As System.Windows.Forms.Label
    Friend WithEvents Label52 As System.Windows.Forms.Label
    Friend WithEvents Label51 As System.Windows.Forms.Label
    Friend WithEvents Label15 As System.Windows.Forms.Label
    Friend WithEvents Label50 As System.Windows.Forms.Label
    Friend WithEvents drp_crop As System.Windows.Forms.ComboBox
    Friend WithEvents text_left As System.Windows.Forms.TextBox
    Friend WithEvents text_right As System.Windows.Forms.TextBox
    Friend WithEvents text_bottom As System.Windows.Forms.TextBox
    Friend WithEvents text_top As System.Windows.Forms.TextBox
    Friend WithEvents advancedOptions As System.Windows.Forms.TabControl
    Friend WithEvents RadioDVD As System.Windows.Forms.RadioButton
    Friend WithEvents RadioISO As System.Windows.Forms.RadioButton
    Friend WithEvents Label5 As System.Windows.Forms.Label
    Friend WithEvents Label2 As System.Windows.Forms.Label
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents Label19 As System.Windows.Forms.Label
    Friend WithEvents lbl_RecomendedCrop As System.Windows.Forms.Label
    Friend WithEvents Label8 As System.Windows.Forms.Label
    Friend WithEvents Label23 As System.Windows.Forms.Label
    Friend WithEvents Label22 As System.Windows.Forms.Label
    Friend WithEvents Label24 As System.Windows.Forms.Label
    Friend WithEvents Label25 As System.Windows.Forms.Label
    Friend WithEvents Label26 As System.Windows.Forms.Label
    Friend WithEvents Label30 As System.Windows.Forms.Label
    Friend WithEvents Label31 As System.Windows.Forms.Label
    Friend WithEvents Label33 As System.Windows.Forms.Label
    Friend WithEvents Label34 As System.Windows.Forms.Label
    Friend WithEvents Label44 As System.Windows.Forms.Label
    Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
    Friend WithEvents Label45 As System.Windows.Forms.Label
    Friend WithEvents Label48 As System.Windows.Forms.Label
    Friend WithEvents Label49 As System.Windows.Forms.Label
    Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
    Friend WithEvents TextBox3 As System.Windows.Forms.TextBox
    Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox
    Friend WithEvents TextBox4 As System.Windows.Forms.TextBox
    Friend WithEvents TextBox5 As System.Windows.Forms.TextBox
    Friend WithEvents Label54 As System.Windows.Forms.Label
    Friend WithEvents Label57 As System.Windows.Forms.Label
    Friend WithEvents Label58 As System.Windows.Forms.Label
    Friend WithEvents Label59 As System.Windows.Forms.Label
    Friend WithEvents Label60 As System.Windows.Forms.Label
    Friend WithEvents Label61 As System.Windows.Forms.Label
    Friend WithEvents Label62 As System.Windows.Forms.Label
    Friend WithEvents Label63 As System.Windows.Forms.Label
    Friend WithEvents TextBox6 As System.Windows.Forms.TextBox
    Friend WithEvents Label64 As System.Windows.Forms.Label
    Friend WithEvents Label65 As System.Windows.Forms.Label
    Friend WithEvents Label66 As System.Windows.Forms.Label
    Friend WithEvents TextBox7 As System.Windows.Forms.TextBox
    Friend WithEvents TextBox8 As System.Windows.Forms.TextBox
    Friend WithEvents ComboBox2 As System.Windows.Forms.ComboBox
    Friend WithEvents TextBox9 As System.Windows.Forms.TextBox
    Friend WithEvents TextBox10 As System.Windows.Forms.TextBox
    Friend WithEvents Label67 As System.Windows.Forms.Label
    Friend WithEvents Label68 As System.Windows.Forms.Label
    Friend WithEvents Label69 As System.Windows.Forms.Label
    Friend WithEvents Label70 As System.Windows.Forms.Label
    Friend WithEvents Label71 As System.Windows.Forms.Label
    Friend WithEvents Label72 As System.Windows.Forms.Label
    Friend WithEvents Label73 As System.Windows.Forms.Label
    Friend WithEvents Label74 As System.Windows.Forms.Label
    Friend WithEvents TextBox11 As System.Windows.Forms.TextBox
    Friend WithEvents Label75 As System.Windows.Forms.Label
    Friend WithEvents Label76 As System.Windows.Forms.Label
    Friend WithEvents Label77 As System.Windows.Forms.Label
    Friend WithEvents TextBox12 As System.Windows.Forms.TextBox
    Friend WithEvents TextBox13 As System.Windows.Forms.TextBox
    Friend WithEvents ComboBox3 As System.Windows.Forms.ComboBox
    Friend WithEvents TextBox14 As System.Windows.Forms.TextBox
    Friend WithEvents TextBox15 As System.Windows.Forms.TextBox
    Friend WithEvents Label78 As System.Windows.Forms.Label
    Friend WithEvents Label79 As System.Windows.Forms.Label
    Friend WithEvents Label80 As System.Windows.Forms.Label
    Friend WithEvents Label81 As System.Windows.Forms.Label
    Friend WithEvents Label82 As System.Windows.Forms.Label
    Friend WithEvents Label83 As System.Windows.Forms.Label
    Friend WithEvents Label84 As System.Windows.Forms.Label
    Friend WithEvents Label85 As System.Windows.Forms.Label
    Friend WithEvents TextBox16 As System.Windows.Forms.TextBox
    Friend WithEvents Label86 As System.Windows.Forms.Label
    Friend WithEvents Label87 As System.Windows.Forms.Label
    Friend WithEvents Label88 As System.Windows.Forms.Label
    Friend WithEvents TextBox17 As System.Windows.Forms.TextBox
    Friend WithEvents TextBox18 As System.Windows.Forms.TextBox
    Friend WithEvents ComboBox4 As System.Windows.Forms.ComboBox
    Friend WithEvents TextBox19 As System.Windows.Forms.TextBox
    Friend WithEvents TextBox20 As System.Windows.Forms.TextBox
    Friend WithEvents lbl_Aspect As System.Windows.Forms.Label
    Friend WithEvents Label91 As System.Windows.Forms.Label
    Friend WithEvents btn_Browse As System.Windows.Forms.Button
    Friend WithEvents File_Open As System.Windows.Forms.OpenFileDialog
    Friend WithEvents ISO_Open As System.Windows.Forms.OpenFileDialog
    Friend WithEvents DVD_Open As System.Windows.Forms.FolderBrowserDialog
    Friend WithEvents File_Save As System.Windows.Forms.SaveFileDialog
    Friend WithEvents ToolStripSeparator1 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents mnu_update As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents CheckPixelRatio As System.Windows.Forms.CheckBox
    Friend WithEvents Label14 As System.Windows.Forms.Label
    Friend WithEvents TabPage6 As System.Windows.Forms.TabPage
    Friend WithEvents Label7 As System.Windows.Forms.Label
    Friend WithEvents Label39 As System.Windows.Forms.Label
    Friend WithEvents btn_ClearQuery As System.Windows.Forms.Button
    Friend WithEvents GenerateQuery As System.Windows.Forms.Button
    Friend WithEvents QueryEditorText As System.Windows.Forms.RichTextBox
    Friend WithEvents Label90 As System.Windows.Forms.Label
    Friend WithEvents rtf_h264advanced As System.Windows.Forms.RichTextBox
    Friend WithEvents Label92 As System.Windows.Forms.Label
    Friend WithEvents btn_h264Clear As System.Windows.Forms.Button
    Friend WithEvents Label95 As System.Windows.Forms.Label
    Friend WithEvents lbl_update As System.Windows.Forms.Label
    Private WithEvents DVD_Save As System.Windows.Forms.SaveFileDialog
    Friend WithEvents ToolStripSeparator3 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents PresetsToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_preset_ipod133 As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_preset_ipod178 As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_preset_ipod235 As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_options As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents ToolStripSeparator4 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents mnu_ProgramDefaultOptions As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents drp_audioBitrate As System.Windows.Forms.ComboBox
    Friend WithEvents drp_dvdtitle As System.Windows.Forms.ComboBox
    Friend WithEvents ToolStripSeparator5 As System.Windows.Forms.ToolStripSeparator
    Friend WithEvents mnu_viewDVDdata As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents Label4 As System.Windows.Forms.Label
    Friend WithEvents CheckCRF As System.Windows.Forms.CheckBox
    Friend WithEvents Label27 As System.Windows.Forms.Label
    Friend WithEvents Label28 As System.Windows.Forms.Label
    Friend WithEvents Label43 As System.Windows.Forms.Label
    Friend WithEvents label_h264 As System.Windows.Forms.LinkLabel
    Friend WithEvents drp_subtitle As System.Windows.Forms.ComboBox
    Friend WithEvents drp_audioChannels As System.Windows.Forms.ComboBox
    Friend WithEvents Label36 As System.Windows.Forms.Label
    Friend WithEvents Check_ChapterMarkers As System.Windows.Forms.CheckBox
    Friend WithEvents drp_audioMixDown As System.Windows.Forms.ComboBox
    Friend WithEvents Label29 As System.Windows.Forms.Label
    Friend WithEvents OnlineDocumentationToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_wiki As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_onlineDocs As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents WebsiteToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_homepage As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_forum As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_appleTv As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_presetPS3 As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents mnu_faq As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents drop_chapterFinish As System.Windows.Forms.ComboBox
    Friend WithEvents drop_chapterStart As System.Windows.Forms.ComboBox
    Friend WithEvents Label13 As System.Windows.Forms.Label
    Friend WithEvents check_turbo As System.Windows.Forms.CheckBox
    Friend WithEvents check_largeFile As System.Windows.Forms.CheckBox
    Friend WithEvents Label37 As System.Windows.Forms.Label
    Friend WithEvents Label41 As System.Windows.Forms.Label
    Friend WithEvents mnu_encode As System.Windows.Forms.ToolStripMenuItem
    Friend WithEvents ToolTip As System.Windows.Forms.ToolTip

End Class