File: mysql_common_ui.xml

package info (click to toggle)
myodbc 5.1.10-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,984 kB
  • ctags: 2,099
  • sloc: ansic: 33,649; cpp: 1,360; xml: 1,261; sh: 353; makefile: 264; perl: 43
file content (1416 lines) | stat: -rw-r--r-- 97,028 bytes parent folder | download | duplicates (2)
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
<!-- *****************************************************************************************
  Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.

  The MySQL Connector/ODBC is licensed under the terms of the GPLv2
  <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
  MySQL Connectors. There are special exceptions to the terms and
  conditions of the GPLv2 as it is applied to this software, see the
  FLOSS License Exception
  <http://www.mysql.com/about/legal/licensing/foss-exception.html>.
  
  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published
  by the Free Software Foundation; version 2 of the License.
  
  This program is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  for more details.
  
  You should have received a copy of the GNU General Public License along
  with this program; if not, write to the Free Software Foundation, Inc.,
  51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
-->

<Include>
  <Property Id="InstallPath2" Value="dummy" />
  <UI>
    <DialogRef Id="LicenseAgreementDlg" />
    
    <Property Id="ErrorDialog">SetupErrorDialog</Property>
    <Property Id="DefaultUIFont">Tahoma8</Property>

    <!-- *****************************************************************************************
      Setup Error Dialog
    -->

    <!-- The four required dialog boxes -->
    <Dialog Id="SetupErrorDialog" Y="10" Width="270" Height="110" Title="[ProductName] Installer Information"
      ErrorDialog="yes">
      <Control Id="ErrorText" Type="Text" X="50" Y="15" Width="200" Height="50" TabSkip="no">
        <Text>&lt;error text goes here&gt;&lt;error text goes here&gt;&lt;error text goes here&gt;&lt;error text goes here&gt;&lt;error text goes here&gt;&lt;error text goes here&gt;&lt;error text goes here&gt;&lt;error text goes here&gt;&lt;error text goes here&gt;&lt;error text goes here&gt;&lt;error text goes here&gt;</Text>
      </Control>
      <Control Id="Y" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&amp;Yes">
        <Publish Event="EndDialog" Value="ErrorYes">1</Publish>
      </Control>
      <Control Id="N" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&amp;No">
        <Publish Event="EndDialog" Value="ErrorNo">1</Publish>
      </Control>
      <Control Id="A" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&amp;Abort">
        <Publish Event="EndDialog" Value="ErrorAbort">1</Publish>
      </Control>
      <Control Id="C" Type="PushButton" X="192" Y="80" Width="66" Height="17" Cancel="yes" TabSkip="yes"
        Text="&amp;Cancel">
        <Publish Event="EndDialog" Value="ErrorCancel">1</Publish>
      </Control>
      <Control Id="I" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&amp;Ignore">
        <Publish Event="EndDialog" Value="ErrorIgnore">1</Publish>
      </Control>
      <Control Id="O" Type="PushButton" X="192" Y="80" Width="66" Height="17" Default="yes" TabSkip="yes"
        Text="&amp;OK">
        <Publish Event="EndDialog" Value="ErrorOk">1</Publish>
      </Control>
      <Control Id="R" Type="PushButton" X="192" Y="80" Width="66" Height="17" TabSkip="yes" Text="&amp;Retry">
        <Publish Event="EndDialog" Value="ErrorRetry">1</Publish>
      </Control>
      <Control Id="WarningIcon" Type="Icon" X="15" Y="15" Width="24" Height="24" FixedSize="yes"
        IconSize="32" Text="NewBinary4" />
    </Dialog>

    <!-- *****************************************************************************************
      Setup Complete Successfully
    -->
    <!--
      This dialog includes the option to launch the ConfigureServer CustomAction
    -->

    <Dialog Id="SetupCompleteSuccessDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="OK" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Cancel="yes"
              Text="&amp;Finish">
<!--          
<Publish Event="DoAction" Value="ConfigureServer">ConfigureServer And NOT Installed And ACTION="INSTALL" And $ServerInstanceConfig=3</Publish>
-->
        <Publish Event="EndDialog" Value="Exit">1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Disabled="yes"
        Text="Cancel" />
      <Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" TabSkip="no" Text="AdminBackground" />
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes"
        Text="&lt; &amp;Back" />

      <Control Id="TextLine3" Type="Text" X="135" Y="55" Width="228" Height="45" Hidden="yes" Transparent="yes">
        <Text>The Setup Wizard has successfully uninstalled [ProductName]. Click Finish to exit the wizard.</Text>
        <Condition Action="show">ProgressType2="uninstalled"</Condition>
      </Control>
      <Control Id="UpdateTextLine1" Type="Text" X="135" Y="30" Width="228" Height="45" Hidden="yes" Transparent="yes">
        <Text>Setup has finished installing [ProductName]. Click Finish to exit the wizard.</Text>
        <Condition Action="show">NOT Installed And ACTION="INSTALL"</Condition>
      </Control>
<!--          
      <Control Id="InstallServiceCBox" Type="CheckBox" X="135" Y="88" Width="11" Height="11" 
        Property="ConfigureServer" Integer="yes" Hidden="yes">
        <Condition Action="show">NOT Installed And ACTION="INSTALL" And $ServerInstanceConfig=3</Condition>
      </Control>
      <Control Id="InstallServiceLbl" Type="Text" X="148" Y="88" Width="208" Height="11" Hidden="yes" Transparent="yes">
        <Text>{&amp;TahomaBold8}Configure the MySQL Server now</Text>
        <Condition Action="show">NOT Installed And ACTION="INSTALL" And $ServerInstanceConfig=3</Condition>
      </Control>
      <Control Id="InstallServiceDescLbl" Type="Text" X="148" Y="100" Width="208" Height="48" Hidden="yes" Transparent="yes">
        <Text>Use this option to generate an optimized MySQL config file, setup a Windows service running on a dedicated port and to set the password for the root account.</Text>
        <Condition Action="show">NOT Installed And ACTION="INSTALL" And $ServerInstanceConfig=3</Condition>
      </Control>
-->
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
        <Text>{&amp;TahomaBold10}Wizard Completed</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      User Exit Dialog
    -->

    <Dialog Id="SetupInterruptedDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      
      <Control Id="Finish" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Cancel="yes" Text="&amp;Finish">
        <Publish Event="EndDialog" Value="Exit">1</Publish>
        <Condition Action="default">NOT UpdateStarted</Condition>
      </Control>
      
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Disabled="yes"
        TabSkip="yes" Text="Cancel">
        <Publish Property="Suspend" Value="1">1</Publish>
        <Publish Event="EndDialog" Value="Exit">1</Publish>
        <Condition Action="disable">NOT UpdateStarted</Condition>
        <Condition Action="enable">UpdateStarted</Condition>
      </Control>
      
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes"
        TabSkip="yes" Text="&lt; &amp;Back">
        <Publish Property="Suspend" Value="{}">1</Publish>
        <Publish Event="EndDialog" Value="Exit">1</Publish>
        <Condition Action="disable">NOT UpdateStarted</Condition>
        <Condition Action="enable">UpdateStarted</Condition>
        <Condition Action="default">UpdateStarted</Condition>
      </Control>
      <Control Id="FinishText1" Type="Text" X="135" Y="80" Width="228" Height="50" Transparent="yes">
        <Text>Your system has not been modified. To install this program at a later time, please run the installation again.</Text>
        <Condition Action="hide">UpdateStarted</Condition>
        <Condition Action="show">NOT UpdateStarted</Condition>
      </Control>
      <Control Id="FinishText2" Type="Text" X="135" Y="135" Width="228" Height="25" Transparent="yes">
        <Text>Click Finish to exit the wizard.</Text>
        <Condition Action="hide">UpdateStarted</Condition>
        <Condition Action="show">NOT UpdateStarted</Condition>
      </Control>
      <Control Id="RestContText1" Type="Text" X="135" Y="80" Width="228" Height="50" Transparent="yes">
        <Text>You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation.</Text>
        <Condition Action="hide">NOT UpdateStarted</Condition>
        <Condition Action="show">UpdateStarted</Condition>
      </Control>
      <Control Id="RestContText2" Type="Text" X="135" Y="135" Width="228" Height="25" Transparent="yes">
        <Text>Click Restore or Continue Later to exit the wizard.</Text>
        <Condition Action="hide">NOT UpdateStarted</Condition>
        <Condition Action="show">UpdateStarted</Condition>
      </Control>
      <Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="25" Transparent="yes">
        <Text>The wizard was interrupted before [ProductName] could be completely installed.</Text>
      </Control>
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
      <Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
        <Text>{&amp;TahomaBold10}Wizard Completed</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      Setup Complete Error Dialog
    -->

    <Dialog Id="SetupCompleteErrorDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
      <Control Id="Finish" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Cancel="yes" Text="&amp;Finish">
        <Publish Event="EndDialog" Value="Exit">1</Publish>
        <Condition Action="default">NOT UpdateStarted</Condition>
      </Control>
    
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Disabled="yes"
        Text="Cancel">
        <Publish Property="Suspend" Value="1">1</Publish>
        <Publish Event="EndDialog" Value="Return">1</Publish>
        <Condition Action="disable">NOT UpdateStarted</Condition>
        <Condition Action="enable">UpdateStarted</Condition>
      </Control>
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes"
        Text="&lt; &amp;Back">
        <Publish Property="Suspend" Value="{}">1</Publish>
        <Publish Event="EndDialog" Value="Return">1</Publish>
        <Condition Action="disable">NOT UpdateStarted</Condition>
        <Condition Action="enable">UpdateStarted</Condition>
        <Condition Action="default">UpdateStarted</Condition>
      </Control>
      <Control Id="FinishText1" Type="Text" X="135" Y="80" Width="228" Height="50" Transparent="yes">
        <Text>Your system has not been modified. To complete installation at another time, please run setup again.</Text>
        <Condition Action="hide">UpdateStarted</Condition>
        <Condition Action="show">NOT UpdateStarted</Condition>
      </Control>
      <Control Id="FinishText2" Type="Text" X="135" Y="135" Width="228" Height="25" Transparent="yes">
        <Text>Click Finish to exit the wizard.</Text>
        <Condition Action="hide">UpdateStarted</Condition>
        <Condition Action="show">NOT UpdateStarted</Condition>
      </Control>
      <Control Id="RestContText1" Type="Text" X="135" Y="80" Width="228" Height="50" Transparent="yes">
        <Text>You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation.</Text>
        <Condition Action="hide">NOT UpdateStarted</Condition>
        <Condition Action="show">UpdateStarted</Condition>
      </Control>
      <Control Id="RestContText2" Type="Text" X="135" Y="135" Width="228" Height="25" Transparent="yes">
        <Text>Click Restore or Continue Later to exit the wizard.</Text>
        <Condition Action="hide">NOT UpdateStarted</Condition>
        <Condition Action="show">UpdateStarted</Condition>
      </Control>
      <Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="25" Transparent="yes">
        <Text>The wizard was interrupted before [ProductName] could be completely installed.</Text>
      </Control>
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
      <Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
        <Text>{&amp;TahomaBold10}[ProductName] Setup Wizard ended prematurely</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      Cancel Dialog
    -->
    <!-- called when the user presses cancel -->

    <Dialog Id="CancelSetupDialog" Width="260" Height="85" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      
      <Control Id="No" Type="PushButton" X="135" Y="57" Width="66" Height="17" Default="yes" Cancel="yes"
        Text="&amp;No">
        <Publish Event="EndDialog" Value="Return">1</Publish>
      </Control>
      
      <Control Id="Yes" Type="PushButton" X="62" Y="57" Width="66" Height="17" Text="&amp;Yes">
        <Publish Event="EndDialog" Value="Exit">1</Publish>
      </Control>
      
      <Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30">
        <Text>Are you sure you want to cancel [ProductName] installation?</Text>
      </Control>
      
      <Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" FixedSize="yes" IconSize="32"
        Text="NewBinary4" />
        
    </Dialog>  

    <!-- *****************************************************************************************
      Install Welcome Dialog
    -->

    <Dialog Id="InstallWelcomeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Next &gt;">
        <!-- No longer making this differentiation as requested by David Madsen -->
        <!--
        <?if $(var.LICENSE_TYPE) = "commercial"?>
          <Publish Event="NewDialog" Value="LicenseAgreementDialog">1</Publish> 
        <?else?>
          <Publish Event="NewDialog" Value="SetupTypeDialog">1</Publish>
        <?endif?>
        -->
        <Publish Event="NewDialog" Value="LicenseAgreementDlg">1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes"
        Text="&lt; &amp;Back">
      </Control>
      <!--Control Id="Copyright" Type="Text" X="135" Y="144" Width="228" Height="73" Transparent="yes"
        TabSkip="no">
        <Text>WARNING: This program is protected by copyright law.</Text>
      </Control-->
      <Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="45" Transparent="yes">
        <Text>The Setup Wizard will install [ProductName] release [ProductVersion] on your computer. To continue, click Next.</Text>
      </Control>
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
      <Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
        <Text>{&amp;TahomaBold10}Welcome to the Setup Wizard for [ProductName]</Text>
      </Control>
      <Control Id="PrevVersion" Type="Text" X="135" Y="124" Width="228" Height="73" Transparent="yes"
        TabSkip="no" Hidden="yes">
        <Text>Setup has detected a previous version of [ProductName]. It will be removed during this installation.</Text>
        <Condition Action="show">PREVIOUSVERSIONINSTALLED</Condition>
      </Control>      
    </Dialog>

    <!-- *****************************************************************************************
      Maintenance Welcome Dialog
    -->
    
    <Dialog Id="MaintenanceWelcomeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Next &gt;">
        <Publish Event="NewDialog" Value="MaintenanceTypeDialog">1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes"
        Text="&lt; &amp;Back" />
      <Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="50" Transparent="yes">
        <Text>The Setup Wizard will allow you to modify, repair, or remove [ProductName]. To continue, click Next.</Text>
      </Control>
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
      <Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
        <Text>{&amp;TahomaBold10}Welcome to the Setup Wizard for [ProductName]</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      Admin Welcome Dialog
    -->

    <Dialog Id="AdminWelcomeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Next &gt;">
        <Publish Event="NewDialog" Value="AdminNetworkLocationDialog">1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes"
        Text="&lt; &amp;Back" />
      <Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="45" Transparent="yes">
        <Text>This Wizard will create a server image of [ProductName] at a specified network location. To continue, click Next.</Text>
      </Control>
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
      <Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
        <Text>{&amp;TahomaBold10}Welcome to the Setup Wizard for [ProductName]</Text>
      </Control>
    </Dialog>
    
    <!-- *****************************************************************************************
      Setup Initialization Dialog
    -->
    <!--
      normally you won't see this dialog because it is only shown while loading and
      the load-time of the administrator is very short.. 
    -->
    <Dialog Id="SetupInitializationDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      Modeless="yes">
      
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes"
        Cancel="yes" Text="Cancel">
         <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish> 
      </Control>
      
      <Control Id="ActionText" Type="Text" X="135" Y="109" Width="220" Height="36" Transparent="yes">
        <Subscribe Event="ActionText" Attribute="Text" />
      </Control>
      
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes"
        TabSkip="yes" Text="&lt; &amp;Back" />
      
      <Control Id="TextLine2" Type="Text" X="135" Y="55" Width="228" Height="30" Transparent="yes">
        <Text>[ProductName] Setup is preparing the Setup Wizard which will guide you through the program setup process.  Please wait...</Text>
      </Control>
      
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Disabled="yes"
        TabSkip="yes" Text="&amp;Next &gt;" />
      
      <Control Id="ActionData" Type="Text" X="135" Y="125" Width="228" Height="12" Transparent="yes">
        <Subscribe Event="ActionData" Attribute="Text" />
      </Control>
      
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="374" Height="0" />
      
      <Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
      
      <Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
        <Text>{&amp;TahomaBold10}Welcome to the Setup Wizard for [ProductName]</Text>
      </Control>      
    </Dialog>

    <!-- *****************************************************************************************
      Setup Progress Dialog
    -->
    
    <Dialog Id="SetupProgressDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      Modeless="yes">
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes"
        Cancel="yes" Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes"
        Text="&lt; &amp;Back" />
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Disabled="yes"
        Text="&amp;Next &gt;" />
      <Control Id="ActionText" Type="Text" X="59" Y="100" Width="275" Height="12">
        <Subscribe Event="ActionText" Attribute="Text" />
      </Control>
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Hidden="yes" Transparent="yes">
        <Text>The program features you selected are being installed.</Text>
        <Condition Action="show">ProgressType2="installed"</Condition>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes">
        <Text>{&amp;MSSansBold8}Installing [ProductName]</Text>
        <Condition Action="show">ProgressType1="Installing"</Condition>
      </Control>
      <Control Id="DlgText" Type="Text" X="59" Y="51" Width="275" Height="30" Hidden="yes" Transparent="yes">
        <Text>Please wait while the Setup Wizard installs [ProductName]. This may take several minutes.</Text>
        <Condition Action="show">ProgressType3="installs"</Condition>
      </Control>
      <Control Id="DlgTitle2" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes">
        <Text>{&amp;MSSansBold8}Uninstalling [ProductName]</Text>
        <Condition Action="show">ProgressType1="Uninstalling"</Condition>
      </Control>
      <Control Id="DlgText2" Type="Text" X="59" Y="51" Width="275" Height="30" Hidden="yes" Transparent="yes">
        <Text>Please wait while the Setup Wizard uninstalls [ProductName]. This may take several minutes.</Text>
        <Condition Action="show">ProgressType3="uninstalls"</Condition>
      </Control>
      <Control Id="DlgDesc2" Type="Text" X="21" Y="23" Width="292" Height="25" Hidden="yes" Transparent="yes">
        <Text>The program features you selected are being uninstalled.</Text>
        <Condition Action="show">ProgressType2="uninstalled"</Condition>
      </Control>
      <Control Id="ActionProgress95" Type="ProgressBar" X="59" Y="113" Width="275" Height="12"
        ProgressBlocks="yes" Text="Progress done">
        <Subscribe Event="InstallFiles" Attribute="Progress" />
        <Subscribe Event="MoveFiles" Attribute="Progress" />
        <Subscribe Event="RemoveFiles" Attribute="Progress" />
        <Subscribe Event="RemoveRegistryValues" Attribute="Progress" />
        <Subscribe Event="WriteIniValues" Attribute="Progress" />
        <Subscribe Event="WriteRegistryValues" Attribute="Progress" />
        <Subscribe Event="UnmoveFiles" Attribute="Progress" />
        <Subscribe Event="AdminInstallFinalize" Attribute="Progress" />
        <Subscribe Event="SetProgress" Attribute="Progress" />
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="LbSec" Type="Text" X="172" Y="139" Width="32" Height="12" Hidden="yes" Text="(Hidden for now)Sec." />
      <Control Id="LbStatus" Type="Text" X="59" Y="85" Width="70" Height="12" Text="Status:" />
      <Control Id="SetupIcon" Type="Icon" X="21" Y="51" Width="24" Height="24" FixedSize="yes"
        IconSize="32" Text="NewBinary9" />
      <Control Id="ShowTime" Type="Text" X="155" Y="139" Width="17" Height="12" Hidden="yes" Text="(Hidden for now)" />
      <Control Id="TextTime" Type="Text" X="59" Y="139" Width="96" Height="12" Hidden="yes">
        <Text>)Hidden for now)Estimated time remaining:</Text>
      </Control>
    </Dialog>
    
    <!-- *****************************************************************************************
      Resume Setup Dialog
    -->

    <Dialog Id="SetupResumeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Next &gt;">
        <Publish Event="NewDialog" Value="OutOfSpaceDialog">OutOfNoRbDiskSpace = 1</Publish>
        <Publish Event="EndDialog" Value="Return">OutOfNoRbDiskSpace &lt;&gt; 1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Disabled="yes"
        Text="&lt; &amp;Back" />
      <Control Id="PreselectedText" Type="Text" X="135" Y="55" Width="228" Height="45" Transparent="yes">
        <Text>The Setup Wizard will complete the installation of [ProductName] on your computer. To continue, click Next.</Text>
        <Condition Action="hide">RESUME</Condition>
        <Condition Action="show">NOT RESUME</Condition>
      </Control>
      <Control Id="ResumeText" Type="Text" X="135" Y="46" Width="228" Height="45" Transparent="yes">
        <Text>The Setup Wizard will complete the suspended installation of [ProductName] on your computer. To continue, click Next.</Text>
        <Condition Action="hide">NOT RESUME</Condition>
        <Condition Action="show">RESUME</Condition>
      </Control>
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="Image" Type="Bitmap" X="0" Y="0" Width="374" Height="234" Text="AdminBackground" />
      <Control Id="TextLine1" Type="Text" X="135" Y="8" Width="225" Height="45" Transparent="yes">
        <Text>{&amp;TahomaBold10}Resuming the Setup Wizard for [ProductName]</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      Setup Type Dialog
    -->

    <Dialog Id="SetupTypeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes">
      <Control Id="RadioGroup" Type="RadioButtonGroup" X="22" Y="62" Width="264" Height="166" Property="SetupType"
        FixedSize="yes" />
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="&lt; &amp;Back">
          <!-- No longer making this differentiation as requested by David Madsen -->
          <!--
          <?if $(var.LICENSE_TYPE) = "commercial"?>
            <Publish Event="NewDialog" Value="LicenseAgreementDialog">NOT Installed</Publish>
          <?else?>
            <Publish Event="NewDialog" Value="InstallWelcomeDialog">NOT Installed</Publish>
          <?endif?>        
          -->
          <Publish Event="NewDialog" Value="LicenseAgreementDlg">NOT Installed</Publish>
      </Control>
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Next &gt;">
        <Publish Event="NewDialog" Value="CustomSetupDialog">SetupType = "Custom"</Publish>
        <Publish Event="NewDialog" Value="ReadyToInstallDialog">SetupType &lt;&gt; "Custom"</Publish>
        <Publish Property="SelectedSetupType" Value="Typical">SetupType = "Typical"</Publish>
        <Publish Property="SelectedSetupType" Value="Complete">SetupType = "Complete"</Publish>
        <Publish Property="SelectedSetupType" Value="Custom">SetupType = "Custom"</Publish>
        <Publish Event="SetInstallLevel" Value="1">SetupType="Typical"</Publish>
        <Publish Event="SetInstallLevel" Value="10">SetupType="Complete"</Publish>
	<Publish Event="SetInstallLevel" Value="1">SetupType="Custom"</Publish>
	<Publish Property="TargetPath1" Value="[INSTALLDIR] -> [Connector_ODBC] -> [TARGETDIR]">1</Publish>
      </Control>
      
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Choose the setup type that best suits your needs.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Setup Type</Text>
      </Control>
      <Control Id="DlgText" Type="Text" X="22" Y="49" Width="326" Height="13">
        <Text>Please select a setup type.</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      
      <Control Id="CompText" Type="Text" X="79" Y="137" Width="246" Height="31">
        <Text>All program features will be installed. (Requires the most disk space.)</Text>
      </Control>
      <Control Id="CompleteIco" Type="Icon" X="33" Y="134" Width="36" Height="36" FixedSize="yes"
        IconSize="48" Text="SetupTypeComp" />
      <Control Id="CustText" Type="Text" X="79" Y="195" Width="246" Height="30">
        <Text>Choose which program features you want installed and where they will be installed. Recommended for advanced users.</Text>
      </Control>
      <Control Id="CustomIco" Type="Icon" X="33" Y="192" Width="36" Height="36" FixedSize="yes"
        IconSize="48" Text="SetupTypeCust" />        
      <Control Id="TypicalText" Type="Text" X="79" Y="82" Width="246" Height="31">
          <Text>Common program features will be installed. Recommended for general use.</Text>
      </Control>
      <Control Id="TypicalIcon" Type="Icon" X="33" Y="79" Width="36" Height="36" FixedSize="yes" 
        IconSize="48" Text="SetupTypeTyp" />        
    </Dialog>
    
     <!-- *****************************************************************************************
      Custom Setup Dialog
    -->
    
    <Dialog Id="CustomSetupDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard" NoMinimize="yes"
        TrackDiskSpace="yes">
      <Control Id="Tree" Type="SelectionTree" X="8" Y="70" Width="220" Height="118" Property="_BrowseProperty"
        Sunken="yes" TabSkip="no">
	<!--Condition Action="SetPath2_32">MsiSelectionTreeSelectedFeature="ODBC_32" AND MsiSelectionTreeSelectedAction=2</Condition-->
      </Control>
      <Control Id="ChangeFolder" Type="PushButton" X="301" Y="203" Width="66" Height="17" Text="&amp;Change...">
        <Publish Event="SelectionBrowse" Value="InstallChangeFolderDialog">1</Publish>
        <Condition Action="hide">Installed</Condition>
      </Control>
      <Control Id="Help" Type="PushButton" X="22" Y="243" Width="66" Height="17" Text="&amp;Help">
        <Publish Event="SpawnDialog" Value="CustomSetupTips">1</Publish>
      </Control>
      <!--
      <Control Id="Space" Type="PushButton" X="93" Y="243" Width="66" Height="17" Text="&amp;Space">
        <Publish Event="SelectionBrowse" Value="DiskSpaceRequirements">1</Publish>
        <Condition Action="hide">Installed</Condition>
      </Control>
      -->
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="&lt; &amp;Back">
        <Publish Event="NewDialog" Value="SetupTypeDialog">NOT Installed</Publish>
        <Publish Event="NewDialog" Value="MaintenanceTypeDialog">Installed</Publish>
      </Control>
      
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Next &gt;" Disabled="no">
        <Publish Event="NewDialog" Value="OutOfSpaceDialog">OutOfNoRbDiskSpace = 1</Publish>
        <!-- in maintenance mode this dialog is called without the setuptypedialog -->
	<Publish Property="SetupType" Value="Custom">1</Publish>
        <!-- for 32bit only installer we don't need those properties here. All required is set in setup type dialog -->
        <Publish Event="NewDialog" Value="ReadyToInstallDialog">
        <![CDATA[&ODBC> 0 AND &ODBC <> !ODBC]]>
        </Publish>
      </Control>
      
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="Size" Type="Text" X="241" Y="133" Width="120" Height="50" Text="Feature size">
        <Subscribe Event="SelectionSize" Attribute="Text" />
      </Control>
      <Control Id="DlgDesc" Type="Text" X="17" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Select the program features you want installed.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="9" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Custom Setup</Text>
      </Control>
      <Control Id="DlgText" Type="Text" X="9" Y="51" Width="360" Height="10">
        <Text>Click on an icon in the list below to change how a feature is installed.</Text>
      </Control>
      <Control Id="InstallLabel" Type="Text" X="8" Y="190" Width="360" Height="10" Text="Install to:">
        <Condition Action="hide">Installed</Condition>
      </Control>
      <Control Id="ItemDescription" Type="Text" X="241" Y="80" Width="120" Height="50">
        <Text>Multiline description of the currently selected item</Text>
        <Subscribe Event="SelectionDescription" Attribute="Text" />
      </Control>
      <Control Id="Location" Type="Text" X="8" Y="203" Width="291" Height="20">
        <Text>&lt;selected feature path&gt;</Text>
        <Subscribe Event="SelectionPath" Attribute="Text" />
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="374" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="374" Height="0" />
      <Control Id="FeatureGroup" Type="GroupBox" X="235" Y="67" Width="131" Height="120" Text="Feature Description" />
    </Dialog>

    <!-- *****************************************************************************************
      License Agreement Dialog
    -->

    <Dialog Id="LicenseAgreementDlg" Width="374" Height="266" Title="[ProductName] - License Agreement" Hidden="yes"
      NoMinimize="yes">
      <Control Id="Agree" Type="RadioButtonGroup" X="8" Y="190" Width="330" Height="40" Property="AgreeToLicense" />
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="&lt; &amp;Back">
        <Publish Event="NewDialog" Value="InstallWelcomeDialog">1</Publish>
      </Control>
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Next &gt;">
        <Publish Event="NewDialog" Value="SetupTypeDialog">AgreeToLicense = "Yes"</Publish>
        <Condition Action="disable">AgreeToLicense &lt;&gt; "Yes"</Condition>
        <Condition Action="enable">AgreeToLicense = "Yes"</Condition>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Please read the following license agreement carefully.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}License Agreement</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      
      <Control Id="Memo" Type="ScrollableText" X="8" Y="55" Width="358" Height="130" Sunken="yes">
    <?if $(var.license) = "commercial"?>  
        <Text SourceFile="resources/commercial_license.rtf" />
    <?else ?>
        <Text SourceFile="resources/License.rtf" />
    <?endif?>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      Ready To Install Dialog
    -->

    <Dialog Id="ReadyToInstallDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes" TrackDiskSpace="yes">
      <Control Id="InstallNow" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Install">
        <Publish Event="NewDialog" Value="OutOfSpaceDialog">OutOfNoRbDiskSpace = 1</Publish>
        <Publish Event="EndDialog" Value="Return">OutOfNoRbDiskSpace &lt;&gt; 1</Publish>
        <Publish Property="ProgressType1" Value="Installing">1</Publish>
        <Publish Property="ProgressType2" Value="installed">1</Publish>
        <Publish Property="ProgressType3" Value="installs">1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="&lt; &amp;Back">
        <Publish Event="NewDialog" Value="SetupTypeDialog">SetupType &lt;&gt; "Custom"</Publish>
        <Publish Event="NewDialog" Value="CustomSetupDialog">SetupType = "Custom"</Publish>
      </Control>
      <Control Id="GroupBox1" Type="Text" X="19" Y="92" Width="330" Height="133" Disabled="yes"
        Sunken="yes" Transparent="yes" TabSkip="no" />
      <Control Id="SetupTypeText1" Type="Text" X="23" Y="97" Width="306" Height="13" TabSkip="no"
        Text="Setup Type:" />
      <Control Id="SetupTypeText2" Type="Text" X="37" Y="114" Width="306" Height="14" TabSkip="no"
        Text="[SelectedSetupType]" />
      <Control Id="TargetFolderText1" Type="Text" X="24" Y="136" Width="306" Height="11" TabSkip="no"
        Text="Destination Folder:" />
      <Control Id="TargetFolderText2" Type="Text" X="37" Y="151" Width="306" Height="13" TabSkip="no"
	      Text="[INSTALLDIR]" />                          
      <Control Id="CurrentSettingsText" Type="Text" X="19" Y="80" Width="81" Height="10" TabSkip="no"
        Text="Current Settings:" />
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>The wizard is ready to begin installation.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes">
        <Text>{&amp;MSSansBold8}Ready to Modify the Program</Text>
        <Condition Action="show">ProgressType0="Modify"</Condition>
      </Control>
      <Control Id="DlgTitle2" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes">
        <Text>{&amp;MSSansBold8}Ready to Repair the Program</Text>
        <Condition Action="show">ProgressType0="Repair"</Condition>
      </Control>
      <Control Id="DlgTitle3" Type="Text" X="13" Y="6" Width="292" Height="25" Hidden="yes" Transparent="yes">
        <Text>{&amp;MSSansBold8}Ready to Install the Program</Text>
        <Condition Action="show">ProgressType0="install"</Condition>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="372" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="372" Height="0" />
      <Control Id="DlgText1" Type="Text" X="21" Y="54" Width="330" Height="24">
        <Text>If you want to review or change any of your installation settings, click Back. Click Cancel to exit the wizard.</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      Admin Network Location Dialog
    -->

    <Dialog Id="AdminNetworkLocationDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="InstallNow" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Install">
        <Publish Event="SetTargetPath" Value="TARGETDIR">1</Publish>
        <Publish Event="NewDialog" Value="OutOfSpaceDialog">OutOfNoRbDiskSpace = 1</Publish>
        <Publish Event="EndDialog" Value="Return">OutOfNoRbDiskSpace &lt;&gt; 1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="SetupPathEdit" Type="PathEdit" X="21" Y="102" Width="330" Height="17" Property="TARGETDIR" />
      <Control Id="Browse" Type="PushButton" X="286" Y="124" Width="66" Height="17" Text="&amp;Change...">
        <Publish Event="SpawnDialog" Value="AdminChangeFolderDialog">1</Publish>
      </Control>
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="&lt; &amp;Back">
        <Publish Event="NewDialog" Value="AdminWelcomeDialog">1</Publish>
      </Control>
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Specify a network location for the server image of the product.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Network Location</Text>
      </Control>
      <Control Id="DlgText" Type="Text" X="21" Y="51" Width="326" Height="40">
        <Text>Enter the network location or click Change to browse to a location.  Click Install to create a server image of [ProductName] at the specified network location or click Cancel to exit the wizard.</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="LBBrowse" Type="Text" X="21" Y="90" Width="100" Height="10" Text="&amp;Network location:" />
    </Dialog>
    
    <!-- *****************************************************************************************
      Admin Change Folder Dialog
    -->
    
    <!-- could be merged with InstallChangeFolder -->
    <Dialog Id="AdminChangeFolderDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="Tail" Type="PathEdit" X="21" Y="207" Width="332" Height="17" Property="TARGETDIR" />
      <Control Id="OK" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="OK">
        <Publish Event="EndDialog" Value="Return">1</Publish>
        <Publish Event="SetTargetPath" Value="TARGETDIR">1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="Reset" Value="0">1</Publish>
        <Publish Event="EndDialog" Value="Return">1</Publish>
      </Control>
      <Control Id="ComboText" Type="Text" X="21" Y="50" Width="99" Height="14" TabSkip="no" Text="&amp;Look in:" />
      <Control Id="Combo" Type="DirectoryCombo" X="21" Y="64" Width="277" Height="80" Property="TARGETDIR"
        Removable="yes" Fixed="yes" Remote="yes" />
      <Control Id="Up" Type="PushButton" X="310" Y="66" Width="19" Height="19" ToolTip="Up one level"
        Icon="yes" FixedSize="yes" IconSize="16" Text="NewBinary3">
        <Publish Event="DirectoryListUp" Value="0">1</Publish>
      </Control>
      <Control Id="NewFolder" Type="PushButton" X="335" Y="66" Width="19" Height="19" ToolTip="Create new folder"
        Icon="yes" FixedSize="yes" IconSize="16" Text="NewBinary2">
        <Publish Event="DirectoryListNew" Value="0">1</Publish>
      </Control>
      <Control Id="List" Type="DirectoryList" X="21" Y="90" Width="332" Height="97" Property="TARGETDIR"
        Sunken="yes" TabSkip="no" />
      <Control Id="TailText" Type="Text" X="21" Y="193" Width="99" Height="13" TabSkip="no" Text="&amp;Folder name:" />
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Browse to the destination folder.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Change Current Destination Folder</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
    </Dialog>

    <!-- *****************************************************************************************
      Out Of Space Dialog
    -->

    <Dialog Id="OutOfSpaceDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="Resume" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes"
        Cancel="yes" Text="OK">
        <Publish Event="NewDialog" Value="CustomSetupDialog">ACTION &lt;&gt; "ADMIN"</Publish>
        <Publish Event="NewDialog" Value="AdminNetworkLocationDialog">ACTION = "ADMIN"</Publish>
      </Control>
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Disk space required for the installation exceeds available disk space.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Out of Disk Space</Text>
      </Control>
      <Control Id="DlgText" Type="Text" X="21" Y="51" Width="326" Height="43">
        <Text>The highlighted volumes do not have enough disk space available for the currently selected features. You can remove files from the highlighted volumes, choose to install less features onto local drives, or select different destination drives.</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="378" Width="326" Height="0" />
      <Control Id="List" Type="VolumeCostList" X="21" Y="95" Width="332" Height="120" Sunken="yes"
        Fixed="yes" Remote="yes">
        <Text>{120}{70}{70}{70}{70}</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      Custom Setup Dialog
    -->

    <Dialog Id="CustomSetupTips" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="OK" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes" Cancel="yes"
        Text="OK">
        <Publish Event="EndDialog" Value="Return">1</Publish>
      </Control>
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Custom Setup allows you to selectively install program features.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Custom Setup Tips</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <!--
      <Control Id="DontInstall" Type="Icon" X="21" Y="155" Width="24" Height="24" FixedSize="yes"
              IconSize="32" Text="NewBinary15" />
      -->
      <Control Id="DontInstallText" Type="Text" X="60" Y="155" Width="300" Height="20">
        <Text>Will not be installed.</Text>
      </Control>
      <Control Id="FirstInstallText" Type="Text" X="60" Y="180" Width="300" Height="20">
        <Text>Will be installed on first use. (Available only if the feature supports this option.)</Text>
      </Control>
      <Control Id="Install" Type="Icon" X="21" Y="105" Width="24" Height="24" FixedSize="yes" IconSize="32"
        Text="NewBinary14" />
      <Control Id="InstallFirstUse" Type="Icon" X="21" Y="180" Width="24" Height="24" FixedSize="yes"
        IconSize="32" Text="NewBinary16" />
      <Control Id="InstallPartial" Type="Icon" X="21" Y="130" Width="24" Height="24" FixedSize="yes"
        IconSize="32" Text="NewBinary17" />
      <Control Id="InstallStateMenu" Type="Icon" X="21" Y="52" Width="24" Height="24" FixedSize="yes"
        IconSize="32" Text="NewBinary18" />
      <Control Id="InstallStateText" Type="Text" X="21" Y="85" Width="300" Height="10">
        <Text>This install state means the feature...</Text>
      </Control>
      <Control Id="InstallText" Type="Text" X="60" Y="105" Width="300" Height="20">
        <Text>Will be completely installed to the local hard drive.</Text>
      </Control>
      <Control Id="MenuText" Type="Text" X="50" Y="52" Width="300" Height="36">
        <Text>The icon next to the feature name indicates the install state of the feature. Click the icon to drop down the install state menu for each feature.</Text>
      </Control>
      <Control Id="NetworkInstall" Type="Icon" X="21" Y="205" Width="24" Height="24" FixedSize="yes"
        IconSize="32" Text="NewBinary13" />
      <Control Id="NetworkInstallText" Type="Text" X="60" Y="205" Width="300" Height="20">
        <Text>Will be installed to run from the network. (Available only if the feature supports this option.)</Text>
      </Control>
      <Control Id="PartialText" Type="Text" X="60" Y="130" Width="300" Height="20">
        <Text>Will have some subfeatures installed to the local hard drive. (Available only if the feature has subfeatures.)</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      Maintenance Type Dialog
    -->

    <Dialog Id="MaintenanceTypeDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="RadioGroup" Type="RadioButtonGroup" X="21" Y="55" Width="290" Height="170" Property="_IsMaintenance" />
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="&lt; &amp;Back">
        <Publish Event="NewDialog" Value="MaintenanceWelcomeDialog">1</Publish>
      </Control>
      <Control Id="Next" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Next &gt;">
        <Publish Property="ProgressType0" Value="Repair">_IsMaintenance = "Reinstall"</Publish>
        <Publish Property="ProgressType0" Value="Modify">_IsMaintenance = "Change"</Publish>
        <Publish Property="ProgressType1" Value="Modifying">_IsMaintenance = "Change"</Publish>
        <Publish Property="ProgressType1" Value="Repairing">_IsMaintenance = "Reinstall"</Publish>
        <Publish Property="ProgressType2" Value="repairs">_IsMaintenance = "Reinstall"</Publish>
        <Publish Property="ProgressType2" Value="modified">_IsMaintenance = "Change"</Publish>
        <Publish Property="ProgressType3" Value="modifies">_IsMaintenance = "Change"</Publish>
        <Publish Property="ProgressType3" Value="repairs">_IsMaintenance = "Reinstall"</Publish>
        <Publish Event="ReinstallMode" Value="[ReinstallModeText]">_IsMaintenance = "Reinstall"</Publish>
        <Publish Event="Reinstall" Value="ALL">_IsMaintenance = "Reinstall"</Publish>
        <Publish Event="NewDialog" Value="ReadyToRemove">_IsMaintenance = "Remove"</Publish>
        <Publish Event="NewDialog" Value="CustomSetupDialog">_IsMaintenance = "Change"</Publish>
        <Publish Event="NewDialog" Value="ReadyToInstallDialog">_IsMaintenance = "Reinstall"</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Modify, repair, or remove the program.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Program Maintenance</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="Ico1" Type="Icon" X="35" Y="75" Width="24" Height="24" FixedSize="yes" IconSize="32"
        Text="NewBinary6" />
      <Control Id="Ico2" Type="Icon" X="35" Y="135" Width="24" Height="24" FixedSize="yes" IconSize="32"
        Text="NewBinary7" />
      <Control Id="Ico3" Type="Icon" X="35" Y="195" Width="24" Height="24" FixedSize="yes" IconSize="32"
        Text="NewBinary8" />
      <Control Id="Text1" Type="Text" X="80" Y="72" Width="260" Height="35">
        <Text>Change which program features are installed. This option displays the Custom Selection dialog in which you can change the way features are installed.</Text>
      </Control>
      <Control Id="Text2" Type="Text" X="80" Y="135" Width="260" Height="35">
        <Text>Repair installation errors in the program. This option fixes missing or corrupt files, shortcuts, and registry entries.</Text>
      </Control>
      <Control Id="Text3" Type="Text" X="80" Y="192" Width="260" Height="35">
        <Text>Remove [ProductName] from your computer.</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      Install Change Folder Dialog
    -->

    <Dialog Id="InstallChangeFolderDialog" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="Tail" Type="PathEdit" X="21" Y="207" Width="332" Height="17" Property="_BrowseProperty"
        Sunken="yes" Indirect="yes" />
      <Control Id="OK" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes" Text="OK">
        <Publish Event="SetTargetPath" Value="[_BrowseProperty]">1</Publish>
        <Publish Event="EndDialog" Value="Return">1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="Reset" Value="0">1</Publish>
        <Publish Event="EndDialog" Value="Return">1</Publish>
      </Control>
      <Control Id="ComboText" Type="Text" X="21" Y="50" Width="99" Height="14" TabSkip="no" Text="&amp;Look in:" />
      <Control Id="Combo" Type="DirectoryCombo" X="21" Y="64" Width="277" Height="80" Property="_BrowseProperty"
        Indirect="yes" Removable="yes" Fixed="yes" Remote="yes" CDROM="yes" RAMDisk="yes" Floppy="yes" />
      <Control Id="Up" Type="PushButton" X="310" Y="66" Width="19" Height="19" ToolTip="Up One Level"
        Icon="yes" FixedSize="yes" IconSize="16" Text="NewBinary3">
        <Publish Event="DirectoryListUp" Value="0">1</Publish>
      </Control>
      <Control Id="NewFolder" Type="PushButton" X="335" Y="66" Width="19" Height="19" ToolTip="Create New Folder"
        Icon="yes" FixedSize="yes" IconSize="16" Text="NewBinary2">
        <Publish Event="DirectoryListNew" Value="0">1</Publish>
      </Control>
      <Control Id="List" Type="DirectoryList" X="21" Y="90" Width="332" Height="97" Property="_BrowseProperty"
        Sunken="yes" Indirect="yes" TabSkip="no" />
        
      <Control Id="TailText" Type="Text" X="21" Y="193" Width="99" Height="13" TabSkip="no" Text="&amp;Folder name:" />
      
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Browse to the destination folder.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Change Current Destination Folder</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
    </Dialog>
    
    <!-- *****************************************************************************************
      Disk Space Requirements Dialog
    -->

    <Dialog Id="DiskSpaceRequirements" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="OK" Type="PushButton" X="301" Y="243" Width="66" Height="17" Default="yes" Cancel="yes"
        Text="OK">
        <Publish Event="EndDialog" Value="Return">1</Publish>
      </Control>
      <Control Id="DlgDesc" Type="Text" X="17" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>The disk space required for the installation of the selected features.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="9" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Disk Space Requirements</Text>
      </Control>
      <Control Id="DlgText" Type="Text" X="10" Y="185" Width="358" Height="41">
        <Text>The highlighted volumes do not have enough disk space available for the currently selected features. You can remove files from the highlighted volumes, choose to install less features onto local drives, or select different destination drives.</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="List" Type="VolumeCostList" X="8" Y="55" Width="358" Height="125" Sunken="yes"
        Fixed="yes" Remote="yes">
        <Text>{120}{70}{70}{70}{70}</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      File In Use Dialog
    -->

    <!-- FilesInUse is a reserved name. Don't change it. -->
    <Dialog Id="FilesInUse" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes" KeepModeless="yes">
      <Control Id="Retry" Type="PushButton" X="164" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Retry">
        <Publish Event="EndDialog" Value="Retry">1</Publish>
      </Control>
      <Control Id="Ignore" Type="PushButton" X="230" Y="243" Width="66" Height="17" Text="&amp;Ignore">
        <Publish Event="EndDialog" Value="Ignore">1</Publish>
      </Control>
      <Control Id="Exit" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="&amp;Exit">
        <Publish Event="EndDialog" Value="Exit">1</Publish>
      </Control>
      <Control Id="List" Type="ListBox" X="21" Y="87" Width="331" Height="135" Property="FileInUseProcess"
        Sunken="no" />
      <Control Id="Desc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>Some files that need to be updated are currently in use.</Text>
      </Control>
      <Control Id="Title" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Files in Use</Text>
      </Control>
      <Control Id="Text" Type="Text" X="21" Y="51" Width="348" Height="29">
        <Text>The following applications are using files that need to be updated by this setup. Close these applications and click Retry to continue.</Text>
      </Control>
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
    </Dialog>


    <!-- *****************************************************************************************
      Ready To Remove Dialog
    -->
    
    <Dialog Id="ReadyToRemove" Width="374" Height="266" Title="[ProductName] - Setup Wizard"
      NoMinimize="yes">
      <Control Id="RemoveNow" Type="PushButton" X="230" Y="243" Width="66" Height="17" Default="yes"
        Text="&amp;Remove">
        <Publish Property="ProgressType1" Value="Uninstalling">1</Publish>
        <Publish Property="ProgressType2" Value="uninstalled">1</Publish>
        <Publish Property="ProgressType3" Value="uninstalls">1</Publish>
        <Publish Event="Remove" Value="ALL">1</Publish>
        <Publish Event="NewDialog" Value="OutOfSpaceDialog">OutOfNoRbDiskSpace = 1</Publish>
        <Publish Event="EndDialog" Value="Return">OutOfNoRbDiskSpace &lt;&gt; 1</Publish>
      </Control>
      <Control Id="Cancel" Type="PushButton" X="301" Y="243" Width="66" Height="17" Cancel="yes"
        Text="Cancel">
        <Publish Event="SpawnDialog" Value="CancelSetupDialog">1</Publish>
      </Control>
      <Control Id="Back" Type="PushButton" X="164" Y="243" Width="66" Height="17" Text="&lt; &amp;Back">
        <Publish Event="NewDialog" Value="MaintenanceTypeDialog">1</Publish>
      </Control>
      <Control Id="DlgDesc" Type="Text" X="21" Y="23" Width="292" Height="25" Transparent="yes">
        <Text>You have chosen to remove the program from your system.</Text>
      </Control>
      <Control Id="DlgTitle" Type="Text" X="13" Y="6" Width="292" Height="25" Transparent="yes">
        <Text>{&amp;MSSansBold8}Remove the Program</Text>
      </Control>
      <Control Id="DlgText" Type="Text" X="21" Y="51" Width="326" Height="24">
        <Text>Click Remove to remove [ProductName] from your computer. After removal, this program will no longer be available for use.</Text>
      </Control>
      <Control Id="DlgText2" Type="Text" X="21" Y="102" Width="330" Height="24" />
      <Control Id="Banner" Type="Bitmap" X="0" Y="0" Width="374" Height="44" Text="AdminHeader" />
      <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="378" Height="0" />
      <Control Id="DlgLine" Type="Line" X="0" Y="234" Width="378" Height="0" />
      <Control Id="DlgText1" Type="Text" X="21" Y="79" Width="330" Height="23">
        <Text>If you want to review or change any settings, click Back.</Text>
      </Control>
    </Dialog>

    <!-- *****************************************************************************************
      End of Dialog
    -->

    <!-- *****************************************************************************************
      Radio Groups
    -->
     
    <RadioButtonGroup Property="AgreeToLicense">
      <RadioButton Text="I &amp;do not accept the terms in the license agreement" X="0" Y="15" Width="295"
        Height="15" Value="No" />
      <RadioButton Text="I &amp;accept the terms in the license agreement" X="0" Y="0" Width="295"
        Height="15" Value="Yes" />
    </RadioButtonGroup>
    <RadioButtonGroup Property="_IsMaintenance">
      <RadioButton Text="{&amp;MSSansBold8}&amp;Modify" X="0" Y="0" Width="290" Height="14" Value="Change" />
      <RadioButton Text="{&amp;MSSansBold8}Re&amp;pair" X="0" Y="60" Width="290" Height="14" Value="Reinstall" />
      <RadioButton Text="{&amp;MSSansBold8}&amp;Remove" X="0" Y="120" Width="290" Height="14" Value="Remove"/>
    </RadioButtonGroup>
    <RadioButtonGroup Property="SetupType">
      <RadioButton Text="{&amp;MSSansBold8}&amp;Typical" X="0" Y="5" Width="214" Height="14" Value="Typical"/>
      <RadioButton Text="{&amp;MSSansBold8}&amp;Complete" X="0" Y="60" Width="264" Height="14" Value="Complete"/>
      <RadioButton Text="{&amp;MSSansBold8}Cu&amp;stom" X="0" Y="118" Width="264" Height="14" Value="Custom"/>
    </RadioButtonGroup>   

    <!-- *****************************************************************************************
      Text Styles
    -->

    <TextStyle Id="Tahoma8" FaceName="Tahoma" Size="8" />
    <TextStyle Id="Arial8" FaceName="Arial" Size="8" />
    <TextStyle Id="Arial9" FaceName="Arial" Size="9" />
    <TextStyle Id="ArialBlue10" FaceName="Arial" Size="10" Red="0" Green="255" Blue="0" />
    <TextStyle Id="ArialBlueStrike10" FaceName="Arial" Size="10" Red="0" Green="255" Blue="0" Strike="yes" />
    <TextStyle Id="CourierNew8" FaceName="Courier New" Size="8" />
    <TextStyle Id="CourierNew9" FaceName="Courier New" Size="9" />
    <TextStyle Id="ExpressDefault" FaceName="Tahoma" Size="8" />
    <TextStyle Id="MSGothic9" FaceName="MS Gothic" Size="9" />
    <TextStyle Id="MSSansBold8" FaceName="Tahoma" Size="8" Bold="yes" />
    <TextStyle Id="MSSansSerif8" FaceName="MS Sans Serif" Size="8" />
    <TextStyle Id="MSSansSerif9" FaceName="MS Sans Serif" Size="9" />
    <TextStyle Id="MSSGreySerif8" FaceName="MS Sans Serif" Size="8" Red="0" Green="0" Blue="0" />
    <TextStyle Id="MSSWhiteSerif8" FaceName="Tahoma" Size="8" Red="255" Green="255" Blue="0" />
    <TextStyle Id="Tahoma10" FaceName="Tahoma" Size="10" />
    <TextStyle Id="Tahoma9" FaceName="Tahoma" Size="9" />
    <TextStyle Id="TahomaBold10" FaceName="Tahoma" Size="10" Bold="yes" />
    <TextStyle Id="TahomaBold8" FaceName="Tahoma" Size="8" Bold="yes" />
    <TextStyle Id="Times8" FaceName="Times New Roman" Size="8" />
    <TextStyle Id="Times9" FaceName="Times New Roman" Size="9" />
    <TextStyle Id="TimesItalic12" FaceName="Times New Roman" Size="12" Italic="yes" />
    <TextStyle Id="TimesItalicBlue10" FaceName="Times New Roman" Size="10" Red="0" Green="255"
      Blue="0" Italic="yes" />
    <TextStyle Id="TimesRed16" FaceName="Times New Roman" Size="16" Red="0" Green="0" Blue="0" />
    <TextStyle Id="VerdanaBold14" FaceName="Verdana" Size="13" Bold="yes" />

    <!-- *****************************************************************************************
      UI Texts
    -->

    <UIText Id="NewFolder">Fldr|New Folder</UIText>
    <UIText Id="AbsentPath" />
    <UIText Id="bytes">bytes</UIText>
    <UIText Id="GB">GB</UIText>
    <UIText Id="KB">KB</UIText>
    <UIText Id="MB">MB</UIText>
    <UIText Id="MenuAbsent">This feature will not be available.</UIText>
    <UIText Id="MenuAdvertise">This feature will be installed when required.</UIText>
    <UIText Id="MenuAllCD">This feature, and all subfeatures, will be installed to run from the CD.</UIText>
    <UIText Id="MenuAllLocal">This feature, and all subfeatures, will be installed on local hard drive.</UIText>
    <UIText Id="MenuAllNetwork">This feature, and all subfeatures, will be installed to run from the network.</UIText>
    <UIText Id="MenuCD">This feature will be installed to run from CD.</UIText>
    <UIText Id="MenuLocal">This feature will be installed on local hard drive.</UIText>
    <UIText Id="MenuNetwork">This feature will be installed to run from network.</UIText>
    <UIText Id="SelAbsentAbsent">This feature will remain uninstalled.</UIText>
    <UIText Id="SelAbsentAdvertise">This feature will be set to be installed when required.</UIText>
    <UIText Id="SelAbsentCD">This feature will be installed to run from CD.</UIText>
    <UIText Id="SelAbsentLocal">This feature will be installed on the local hard drive.</UIText>
    <UIText Id="SelAbsentNetwork">This feature will be installed to run from the network.</UIText>
    <UIText Id="SelAdvertiseAbsent">This feature will become unavailable.</UIText>
    <UIText Id="SelAdvertiseAdvertise">Will be installed when required.</UIText>
    <UIText Id="SelAdvertiseCD">This feature will be available to run from CD.</UIText>
    <UIText Id="SelAdvertiseLocal">This feature will be installed on your local hard drive.</UIText>
    <UIText Id="SelAdvertiseNetwork">This feature will be available to run from the network.</UIText>
    <UIText Id="SelCDAbsent">This feature will be uninstalled completely, and you won't be able to run it from CD.</UIText>
    <UIText Id="SelCDAdvertise">This feature was run from the CD but will be set to be installed when required.</UIText>
    <UIText Id="SelCDCD">This feature will continue to be run from the CD</UIText>
    <UIText Id="SelCDLocal">This feature was run from the CD but will be installed on the local hard drive.</UIText>
    <UIText Id="SelChildCostNeg">This feature frees up [1] on your hard drive.</UIText>
    <UIText Id="SelChildCostPos">This feature requires [1] on your hard drive.</UIText>
    <UIText Id="SelCostPending">Compiling cost for this feature...</UIText>
    <UIText Id="SelLocalAbsent">This feature will be completely removed.</UIText>
    <UIText Id="SelLocalAdvertise">This feature will be removed from your local hard drive but will be set to be installed when required.</UIText>
    <UIText Id="SelLocalCD">This feature will be removed from your local hard drive but will still be available to run from CD.</UIText>
    <UIText Id="SelLocalLocal">This feature will remain on your local hard drive.</UIText>
    <UIText Id="SelLocalNetwork">This feature will be removed from your local hard drive, but will be still available to run from the network.</UIText>
    <UIText Id="SelNetworkAbsent">This feature will be uninstalled completely, and you won't be able to run it from the network.</UIText>
    <UIText Id="SelNetworkAdvertise">This feature was run from the network but will be installed when required.</UIText>
    <UIText Id="SelNetworkLocal">This feature was run from the network but will be installed on the local hard drive.</UIText>
    <UIText Id="SelNetworkNetwork">This feature will continue to be run from the network</UIText>
    <UIText Id="SelParentCostNegNeg">This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.</UIText>
    <UIText Id="SelParentCostNegPos">This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.</UIText>
    <UIText Id="SelParentCostPosNeg">This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.</UIText>
    <UIText Id="SelParentCostPosPos">This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.</UIText>
    <UIText Id="TimeRemaining">Time remaining: {[1] min }[2] sec</UIText>
    <UIText Id="VolumeCostAvailable">Available</UIText>
    <UIText Id="VolumeCostDifference">Differences</UIText>
    <UIText Id="VolumeCostRequired">Required</UIText>
    <UIText Id="VolumeCostSize">Disk Size</UIText>
    <UIText Id="VolumeCostVolume">Volume</UIText>

    <!-- *****************************************************************************************
      Progress Texts
    -->

    <ProgressText Action="CostInitialize">Computing space requirements</ProgressText>
    <ProgressText Action="AppSearch" Template="Property: [1], Signature: [2]">Searching for installed applications</ProgressText>
    <ProgressText Action="BindImage" Template="File: [1]">Binding executables</ProgressText>
    <ProgressText Action="CCPSearch">Searching for qualifying products</ProgressText>
    <ProgressText Action="CostFinalize">Computing space requirements</ProgressText>
    <ProgressText Action="FileCost">Computing space requirements</ProgressText>
    <ProgressText Action="InstallAdminPackage" Template="File: [1], Directory: [9], Size: [6]">Copying files to the network</ProgressText>
    <ProgressText Action="InstallFiles" Template="File: [1],  Directory: [9],  Size: [6]">Copying new files</ProgressText>
    <ProgressText Action="InstallValidate">Validating install</ProgressText>
    <ProgressText Action="CreateShortcuts" Template="Shortcut: [1]">Creating shortcuts</ProgressText>
    <ProgressText Action="PublishComponents" Template="Component ID: [1], Qualifier: [2]">Publishing qualified components</ProgressText>
    <ProgressText Action="PublishFeatures" Template="Feature: [1]">Publishing product features</ProgressText>
    <ProgressText Action="PublishProduct">Publishing product information</ProgressText>
    <ProgressText Action="RegisterClassInfo" Template="Class ID: [1]">Registering class servers</ProgressText>
    <ProgressText Action="RegisterExtensionInfo" Template="Extension: [1]">Registering extension servers</ProgressText>
    <ProgressText Action="RegisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]">Registering MIME info</ProgressText>
    <ProgressText Action="RegisterProgIdInfo" Template="ProgID: [1]">Registering program identifiers</ProgressText>
    <ProgressText Action="RegisterTypeLibraries" Template="LibID: [1]">Registering type libraries</ProgressText>
    <ProgressText Action="AllocateRegistrySpace" Template="Free space: [1]">Allocating registry space</ProgressText>
    <ProgressText Action="CreateFolders" Template="Folder: [1]">Creating folders</ProgressText>
    <ProgressText Action="DeleteServices" Template="Service: [1]">Deleting services</ProgressText>
    <ProgressText Action="DuplicateFiles" Template="File: [1],  Directory: [9],  Size: [6]">Creating duplicate files</ProgressText>
    <ProgressText Action="FindRelatedProducts" Template="Found application: [1]">Searching for related applications</ProgressText>
    <ProgressText Action="InstallODBC">Installing ODBC components</ProgressText>
    <ProgressText Action="InstallServices" Template="Service: [2]">Installing new services</ProgressText>
    <ProgressText Action="LaunchConditions">Evaluating launch conditions</ProgressText>
    <ProgressText Action="MigrateFeatureStates" Template="Application: [1]">Migrating feature states from related applications</ProgressText>
    <ProgressText Action="MoveFiles" Template="File: [1],  Directory: [9],  Size: [6]">Moving files</ProgressText>
    <ProgressText Action="PatchFiles" Template="File: [1],  Directory: [2],  Size: [3]">Patching files</ProgressText>
    <ProgressText Action="ProcessComponents">Updating component registration</ProgressText>
    <ProgressText Action="RegisterComPlus" Template="AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}">Registering COM+ Applications and Components</ProgressText>
    <ProgressText Action="RegisterFonts" Template="Font: [1]">Registering fonts</ProgressText>
    <ProgressText Action="RegisterProduct" Template="[1]">Registering product</ProgressText>
    <ProgressText Action="RegisterUser" Template="[1]">Registering user</ProgressText>
    <ProgressText Action="RemoveDuplicateFiles" Template="File: [1], Directory: [9]">Removing duplicated files</ProgressText>
    <ProgressText Action="RemoveEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]">Updating environment strings</ProgressText>
    <ProgressText Action="RemoveExistingProducts" Template="Application: [1], Command line: [2]">Removing applications</ProgressText>
    <ProgressText Action="RemoveFiles" Template="File: [1], Directory: [9]">Removing files</ProgressText>
    <ProgressText Action="RemoveFolders" Template="Folder: [1]">Removing folders</ProgressText>
    <ProgressText Action="RemoveIniValues" Template="File: [1],  Section: [2],  Key: [3], Value: [4]">Removing INI file entries</ProgressText>
    <ProgressText Action="RemoveODBC">Removing ODBC components</ProgressText>
    <ProgressText Action="RemoveRegistryValues" Template="Key: [1], Name: [2]">Removing system registry values</ProgressText>
    <ProgressText Action="RemoveShortcuts" Template="Shortcut: [1]">Removing shortcuts</ProgressText>
    <ProgressText Action="RMCCPSearch">Searching for qualifying products</ProgressText>
    <ProgressText Action="SelfRegModules" Template="File: [1], Folder: [2]">Registering modules</ProgressText>
    <ProgressText Action="SelfUnregModules" Template="File: [1], Folder: [2]">Unregistering modules</ProgressText>
    <ProgressText Action="SetODBCFolders">Initializing ODBC directories</ProgressText>
    <ProgressText Action="StartServices" Template="Service: [1]">Starting services</ProgressText>
    <ProgressText Action="StopServices" Template="Service: [1]">Stopping services</ProgressText>
    <ProgressText Action="UnpublishComponents" Template="Component ID: [1], Qualifier: [2]">Unpublishing Qualified Components</ProgressText>
    <ProgressText Action="UnpublishFeatures" Template="Feature: [1]">Unpublishing product features</ProgressText>
    <ProgressText Action="UnregisterClassInfo" Template="Class ID: [1]">Unregister class servers</ProgressText>
    <ProgressText Action="UnregisterComPlus" Template="AppId: [1]{{, AppType: [2]}}">Unregistering COM+ Applications and Components</ProgressText>
    <ProgressText Action="UnregisterExtensionInfo" Template="Extension: [1]">Unregistering extension servers</ProgressText>
    <ProgressText Action="UnregisterFonts" Template="Font: [1]">Unregistering fonts</ProgressText>
    <ProgressText Action="UnregisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]">Unregistering MIME info</ProgressText>
    <ProgressText Action="UnregisterProgIdInfo" Template="ProgID: [1]">Unregistering program identifiers</ProgressText>
    <ProgressText Action="UnregisterTypeLibraries" Template="LibID: [1]">Unregistering type libraries</ProgressText>
    <ProgressText Action="WriteEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]">Updating environment strings</ProgressText>
    <ProgressText Action="WriteIniValues" Template="File: [1],  Section: [2],  Key: [3], Value: [4]">Writing INI file values</ProgressText>
    <ProgressText Action="WriteRegistryValues" Template="Key: [1], Name: [2], Value: [3]">Writing system registry values</ProgressText>
    <ProgressText Action="Advertise">Advertising application</ProgressText>
    <ProgressText Action="GenerateScript" Template="[1]">Generating script operations for action:</ProgressText>
    <ProgressText Action="InstallSFPCatalogFile" Template="File: [1],  Dependencies: [2]">Installing system catalog</ProgressText>
    <ProgressText Action="Rollback" Template="[1]">Rolling back action:</ProgressText>
    <ProgressText Action="RollbackCleanup" Template="File: [1]">Removing backup files</ProgressText>
    <ProgressText Action="UnmoveFiles" Template="File: [1], Directory: [9]">Removing moved files</ProgressText>
    <ProgressText Action="UnpublishProduct">Unpublishing product information</ProgressText>

    <!-- *****************************************************************************************
      Error Texts
    -->

    <Error Id="0">{{Fatal error: }}</Error>
    <Error Id="1">Error [1].</Error>
    <Error Id="2">Warning [1].</Error>
    <Error Id="4">Info [1].</Error>
    <Error Id="5">Internal Error [1]. [2]{, [3]}{, [4]}</Error>
    <Error Id="7">{{Disk full: }}</Error>
    <Error Id="8">Action [Time]: [1]. [2]</Error>
    <Error Id="9">[ProductName]</Error>
    <Error Id="10">{[2]}{, [3]}{, [4]}</Error>
    <Error Id="11">Message type: [1], Argument: [2]</Error>
    <Error Id="12">=== Logging started: [Date]  [Time] ===</Error>
    <Error Id="13">=== Logging stopped: [Date]  [Time] ===</Error>
    <Error Id="14">Action start [Time]: [1].</Error>
    <Error Id="15">Action ended [Time]: [1]. Return value [2].</Error>
    <Error Id="16">Time remaining: {[1] minutes }{[2] seconds}</Error>
    <Error Id="17">Out of memory. Shut down other applications before retrying.</Error>
    <Error Id="18">Installer is no longer responding.</Error>
    <Error Id="19">Installer terminated prematurely.</Error>
    <Error Id="20">Please wait while Windows configures [ProductName]</Error>
    <Error Id="21">Gathering required information...</Error>
    <Error Id="22">Removing older versions of this application</Error>
    <Error Id="23">Preparing to remove older versions of this application</Error>
    <Error Id="32">{[ProductName] }Setup completed successfully.</Error>
    <Error Id="33">{[ProductName] }Setup failed.</Error>
    <Error Id="1101">Error reading from file: [2]. {{ System error [3].}}  Verify that the file exists and that you can access it.</Error>
    <Error Id="1301">Cannot create the file [3].  A directory with this name already exists.  Cancel the installation and try installing to a different location.</Error>
    <Error Id="1302">Please insert the disk: [2]</Error>
    <Error Id="1303">The installer has insufficient privileges to access this directory: [2].  The installation cannot continue.  Log on as an administrator or contact your system administrator.</Error>
    <Error Id="1304">Error writing to file [2].  Verify that you have access to that directory.</Error>
    <Error Id="1305">Error reading from file [2].  Verify that the file exists and that you can access it.</Error>
    <Error Id="1306">Another application has exclusive access to the file [2].  Please shut down all other applications, then click Retry.</Error>
    <Error Id="1307">There is not enough disk space to install the file [2].  Free some disk space and click Retry, or click Cancel to exit.</Error>
    <Error Id="1308">Source file not found: [2].  Verify that the file exists and that you can access it.</Error>
    <Error Id="1309">Error reading from file: [3]. {{ System error [2].}}  Verify that the file exists and that you can access it.</Error>
    <Error Id="1310">Error writing to file: [3]. {{ System error [2].}}  Verify that you have access to that directory.</Error>
    <Error Id="1311">Source file not found{{(cabinet)}}: [2].  Verify that the file exists and that you can access it.</Error>
    <Error Id="1312">Cannot create the directory [2].  A file with this name already exists.  Please rename or remove the file and click Retry, or click Cancel to exit.</Error>
    <Error Id="1313">The volume [2] is currently unavailable.  Please select another.</Error>
    <Error Id="1314">The specified path [2] is unavailable.</Error>
    <Error Id="1315">Unable to write to the specified folder [2].</Error>
    <Error Id="1316">A network error occurred while attempting to read from the file [2]</Error>
    <Error Id="1317">An error occurred while attempting to create the directory [2]</Error>
    <Error Id="1318">A network error occurred while attempting to create the directory [2]</Error>
    <Error Id="1319">A network error occurred while attempting to open the source file cabinet [2].</Error>
    <Error Id="1320">The specified path is too long [2].</Error>
    <Error Id="1321">The Installer has insufficient privileges to modify the file [2].</Error>
    <Error Id="1322">A portion of the path [2] exceeds the length allowed by the system.</Error>
    <Error Id="1323">The path [2] contains words that are not valid in folders.</Error>
    <Error Id="1324">The path [2] contains an invalid character.</Error>
    <Error Id="1325">[2] is not a valid short file name.</Error>
    <Error Id="1326">Error getting file security: [3] GetLastError: [2]</Error>
    <Error Id="1327">Invalid Drive: [2]</Error>
    <Error Id="1328">Error applying patch to file [2].  It has probably been updated by other means, and can no longer be modified by this patch.  For more information contact your patch vendor.  {{System Error: [3]}}</Error>
    <Error Id="1401">Could not create key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.</Error>
    <Error Id="1402">Could not open key: [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.</Error>
    <Error Id="1403">Could not delete value [2] from key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel.</Error>
    <Error Id="1404">Could not delete key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.</Error>
    <Error Id="1405">Could not read value [2] from key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel.</Error>
    <Error Id="1406">Could not write value [2] to key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel.</Error>
    <Error Id="1407">Could not get value names for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.</Error>
    <Error Id="1408">Could not get sub key names for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.</Error>
    <Error Id="1409">Could not read security information for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.</Error>
    <Error Id="1410">Could not increase the available registry space. [2] KB of free registry space is required for the installation of this application.</Error>
    <Error Id="1500">Another installation is in progress. You must complete that installation before continuing this one.</Error>
    <Error Id="1501">Error accessing secured data. Please make sure the Windows Installer is configured properly and try the installation again.</Error>
    <Error Id="1502">User [2] has previously initiated an installation for product [3].  That user will need to run that installation again before using that product.  Your current installation will now continue.</Error>
    <Error Id="1503">User [2] has previously initiated an installation for product [3].  That user will need to run that installation again before using that product.</Error>
    <Error Id="1601">Out of disk space -- Volume: '[2]'; required space: [3] KB; available space: [4] KB.  Free some disk space and retry.</Error>
    <Error Id="1602">Are you sure you want to cancel?</Error>
    <Error Id="1603">The file [2][3] is being held in use{ by the following process: Name: [4], ID: [5], Window Title: [6]}.  Close that application and retry.</Error>
    <Error Id="1604">The product [2] is already installed, preventing the installation of this product.  The two products are incompatible.</Error>
    <Error Id="1605">Out of disk space -- Volume: [2]; required space: [3] KB; available space: [4] KB.  If rollback is disabled, enough space is available. Click Cancel to quit, Retry to check available disk space again, or Ignore to continue without rollback.</Error>
    <Error Id="1606">Could not access network location [2].</Error>
    <Error Id="1607">[2]</Error>
    <Error Id="1608">Could not find any previously installed compliant products on the machine for installing this product.</Error>
    <Error Id="1701">The key [2] is not valid.  Verify that you entered the correct key.</Error>
    <Error Id="1702">The installer must restart your system before configuration of [2] can continue.  Click Yes to restart now or No if you plan to restart later.</Error>
    <Error Id="1703">You must restart your system for the configuration changes made to [2] to take effect. Click Yes to restart now or No if you plan to restart later.</Error>
    <Error Id="1704">An installation for [2] is currently suspended.  You must undo the changes made by that installation to continue.  Do you want to undo those changes?</Error>
    <Error Id="1705">A previous installation for this product is in progress.  You must undo the changes made by that installation to continue.  Do you want to undo those changes?</Error>
    <Error Id="1706">No valid source could be found for product [2].  The Windows Installer cannot continue.</Error>
    <Error Id="1707">Installation operation completed successfully.</Error>
    <Error Id="1708">Installation operation failed.</Error>
    <Error Id="1709">Product: [2] -- [3]</Error>
    <Error Id="1710">You may either restore your computer to its previous state or continue the installation later. Would you like to restore?</Error>
    <Error Id="1711">An error occurred while writing installation information to disk.  Check to make sure enough disk space is available, and click Retry, or Cancel to end the installation.</Error>
    <Error Id="1712">One or more of the files required to restore your computer to its previous state could not be found.  Restoration will not be possible.</Error>
    <Error Id="1713">[2] cannot install one of its required products. Contact your technical support group.  {{System Error: [3].}}</Error>
    <Error Id="1714">The older version of [2] cannot be removed.  Contact your technical support group.  {{System Error [3].}}</Error>
    <Error Id="1801">The path [2] is not valid.  Please specify a valid path.</Error>
    <Error Id="1802">Out of memory. Shut down other applications before retrying.</Error>
    <Error Id="1803">There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to go back to the previously selected volume.</Error>
    <Error Id="1804">There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to return to the browse dialog and select a different volume.</Error>
    <Error Id="1805">The folder [2] does not exist.  Please enter a path to an existing folder.</Error>
    <Error Id="1806">You have insufficient privileges to read this folder.</Error>
    <Error Id="1807">A valid destination folder for the installation could not be determined.</Error>
    <Error Id="1901">Error attempting to read from the source installation database: [2].</Error>
    <Error Id="1902">Scheduling reboot operation: Renaming file [2] to [3]. Must reboot to complete operation.</Error>
    <Error Id="1903">Scheduling reboot operation: Deleting file [2]. Must reboot to complete operation.</Error>
    <Error Id="1904">Module [2] failed to register.  HRESULT [3].  Contact your support personnel.</Error>
    <Error Id="1905">Module [2] failed to unregister.  HRESULT [3].  Contact your support personnel.</Error>
    <Error Id="1906">Failed to cache package [2]. Error: [3]. Contact your support personnel.</Error>
    <Error Id="1907">Could not register font [2].  Verify that you have sufficient permissions to install fonts, and that the system supports this font.</Error>
    <Error Id="1908">Could not unregister font [2]. Verify that you have sufficient permissions to remove fonts.</Error>
    <Error Id="1909">Could not create shortcut [2]. Verify that the destination folder exists and that you can access it.</Error>
    <Error Id="1910">Could not remove shortcut [2]. Verify that the shortcut file exists and that you can access it.</Error>
    <Error Id="1911">Could not register type library for file [2].  Contact your support personnel.</Error>
    <Error Id="1912">Could not unregister type library for file [2].  Contact your support personnel.</Error>
    <Error Id="1913">Could not update the INI file [2][3].  Verify that the file exists and that you can access it.</Error>
    <Error Id="1914">Could not schedule file [2] to replace file [3] on reboot.  Verify that you have write permissions to file [3].</Error>
    <Error Id="1915">Error removing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.</Error>
    <Error Id="1916">Error installing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.</Error>
    <Error Id="1917">Error removing ODBC driver [4], ODBC error [2]: [3]. Verify that you have sufficient privileges to remove ODBC drivers.</Error>
    <Error Id="1918">Error installing ODBC driver [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.</Error>
    <Error Id="1919">Error configuring ODBC data source [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.</Error>
    <Error Id="1920">Service [2] ([3]) failed to start.  Verify that you have sufficient privileges to start system services.</Error>
    <Error Id="1921">Service [2] ([3]) could not be stopped.  Verify that you have sufficient privileges to stop system services.</Error>
    <Error Id="1922">Service [2] ([3]) could not be deleted.  Verify that you have sufficient privileges to remove system services.</Error>
    <Error Id="1923">Service [2] ([3]) could not be installed.  Verify that you have sufficient privileges to install system services.</Error>
    <Error Id="1924">Could not update environment variable [2].  Verify that you have sufficient privileges to modify environment variables.</Error>
    <Error Id="1925">You do not have sufficient privileges to complete this installation for all users of the machine.  Log on as an administrator and then retry this installation.</Error>
    <Error Id="1926">Could not set file security for file [3]. Error: [2].  Verify that you have sufficient privileges to modify the security permissions for this file.</Error>
    <Error Id="1927">Component Services (COM+ 1.0) are not installed on this computer.  This installation requires Component Services in order to complete successfully.  Component Services are available on Windows 2000.</Error>
    <Error Id="1928">Error registering COM+ application.  Contact your support personnel for more information.</Error>
    <Error Id="1929">Error unregistering COM+ application.  Contact your support personnel for more information.</Error>
    <Error Id="1930">The description for service '[2]' ([3]) could not be changed.</Error>
    <Error Id="1931">The Windows Installer service cannot update the system file [2] because the file is protected by Windows.  You may need to update your operating system for this program to work correctly. {{Package version: [3], OS Protected version: [4]}}</Error>
    <Error Id="1932">The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}</Error>
    <Error Id="1933">This setup requires Internet Information Server 4.0 or higher for configuring IIS Virtual Roots. Please make sure that you have IIS 4.0 or higher.</Error>
    <Error Id="1934">This setup requires Administrator privileges for configuring IIS Virtual Roots.</Error>
  </UI>
</Include>