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
|
Document Type: WSE
item: Global
Version=8.1
Title=SQLite ADO.NET 2.0 Provider Installation
Flags=00010100
Languages=65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Copy Default=1
Japanese Font Name=MS Gothic
Japanese Font Size=9
Progress Bar DLL=%_WISE_%\Progress\WIZ%_EXE_OS_TYPE_%.DLL
Start Gradient=0 0 255
End Gradient=0 0 0
Windows Flags=00000100000000010010110000001010
Log Pathname=%MAINDIR%\INSTALL.LOG
Message Font=MS Shell Dlg 2
Font Size=8
Pages Modified=00001000001100000000001100000101
Extra Pages=00000000000000000000000010100000
Disk Label=Default
Disk Filename=SETUP
Patch Flags=0000000000001001
Patch Threshold=85
Patch Memory=4000
EXE Filename=..\..\sqlite_setup.exe
FTP Cluster Size=20
Per-User Version ID=1
Dialogs Version=7
Crystal Format=10111100101100000010001001001001
Crystal Destination=00000000000000000000000000001011
Step View=Properties
Variable Name1=_SYS_
Variable Default1=C:\Windows\system32
Variable Flags1=00001000
Variable Name2=_WIN_
Variable Default2=C:\Windows
Variable Flags2=00001000
Variable Name3=_WISE_
Variable Default3=C:\Program Files\Wise InstallMaster
Variable Flags3=00001000
end
item: Remark
Text=If you do not want Rem statements to appear when you create a new installation,
end
item: Remark
Text=open Empty Project.wse from the Template folder in the Wise application
end
item: Remark
Text=directory, delete the Rem statements, and select Save from the File menu.
end
item: Open/Close INSTALL.LOG
Flags=00000001
end
item: Remark
Text=If the destination system does not have a writable Windows\System directory, system files will be written to the Windows\ directory
end
item: Check if File/Dir Exists
Pathname=%SYS%
Flags=10000100
end
item: Set Variable
Variable=SYS
Value=%WIN%
end
item: End Block
end
item: Remark
Text=APPTITLE is the application title of the installation
end
item: Set Variable
Variable=APPTITLE
Value=SQLite ADO.NET 2.0 Provider
Flags=10000000
end
item: Remark
Text=GROUP is the variable that holds the Program Files Group that shortcuts will be placed on the Windows Start Menu
end
item: Set Variable
Variable=GROUP
Value=SQLite.NET
Flags=10000000
end
item: Remark
Text=DISABLED variable is initialized for backward compatability
end
item: Set Variable
Variable=DISABLED
Value=!
end
item: Remark
Text=MAINDIR is the variable that holds the default destination directory
end
item: Set Variable
Variable=MAINDIR
Value=SQLite.NET
Flags=10000000
end
item: Remark
Text=USERNAME is the variable that holds the Windows Logon name
end
item: Get System Information
Variable=USERNAME
Flags=00010001
end
item: Remark
Text=This IF/THEN/ELSE blocks reads the default Program Files and Common directories from the registry
end
item: Check Configuration
Flags=10111011
end
item: Get Registry Key Value
Variable=COMMON
Key=SOFTWARE\Microsoft\Windows\CurrentVersion
Default=C:\Program Files\Common Files
Value Name=CommonFilesDir
Flags=00000100
end
item: Get Registry Key Value
Variable=PROGRAM_FILES
Key=SOFTWARE\Microsoft\Windows\CurrentVersion
Default=C:\Program Files
Value Name=ProgramFilesDir
Flags=00000100
end
item: Set Variable
Variable=MAINDIR
Value=%PROGRAM_FILES%\%MAINDIR%
Flags=00001100
end
item: Set Variable
Variable=EXPLORER
Value=1
end
item: Else Statement
end
item: Set Variable
Variable=MAINDIR
Value=C:\%MAINDIR%
Flags=00001100
end
item: End Block
end
item: Remark
Text=BACKUP is the variable that holds the path that all backup files will be copied to when overwritten
end
item: Set Variable
Variable=BACKUP
Value=%MAINDIR%\BACKUP
Flags=10000000
end
item: Remark
Text=DOBACKUP determines if a backup will be performed. The possible values are A (do backup) or B (do not do backup)
end
item: Set Variable
Variable=DOBACKUP
Value=B
Flags=10000000
end
item: Remark
Text=If COMPONENTS are enabled, the COMPONENTS variable is initialized with possible selections
end
item: Set Variable
Variable=COMPONENTS
Flags=10000000
end
item: Remark
Text=BRANDING determines if the installation will be branded with a name and company. By default, this is written to the INST directory (installation media).
end
item: Set Variable
Variable=BRANDING
Value=0
end
item: If/While Statement
Variable=BRANDING
Value=1
end
item: Read INI Value
Variable=NAME
Pathname=%INST%\CUSTDATA.INI
Section=Registration
Item=Name
end
item: Read INI Value
Variable=COMPANY
Pathname=%INST%\CUSTDATA.INI
Section=Registration
Item=Company
end
item: If/While Statement
Variable=NAME
end
item: Set Variable
Variable=DOBRAND
Value=1
end
item: Get System Information
Variable=NAME
Flags=00000110
end
item: Get System Information
Variable=COMPANY
Flags=00000111
end
item: End Block
end
item: End Block
end
item: Remark
Text=The Wizard Loop contains the dialog screens that the user sees in the installation
end
item: Remark
Text=If you would like to change the graphic on the dialog boxes, you need to change it by double-clicking on the Wizard Loop line and change the bitmap path.
end
item: Wizard Block
Direction Variable=DIRECTION
Display Variable=DISPLAY
Bitmap Pathname=D:\src\SQLite.NET\tools\setup\topband.bmp
X Position=0
Y Position=0
Filler Color=8421376
Dialog=Welcome
Dialog=Select Destination Directory
Dialog=Select Program Manager Group
Variable=
Variable=
Variable=GROUP
Value=
Value=
Value=
Compare=0
Compare=0
Compare=0
Flags=00000011
end
item: Remark
Text=If you need to change the size of your Custom Dialogs, you need only change the "Welcome" screen.
end
item: Remark
Text=It's size is the template for all following dialogs within the Wizard Loop.
end
item: Custom Dialog Set
Name=Welcome
Display Variable=DISPLAY
item: Dialog
Title=Welcome
Title French=Bienvenue
Title German=Willkommen
Title Portuguese=Bem-vindo
Title Spanish=Bienvenido
Title Italian=Benvenuto
Title Danish=Velkommen
Title Dutch=Welkom
Title Norwegian=Velkommen
Title Swedish=Välkommen
Width=340
Height=225
Font Name=MS Shell Dlg 2
Font Size=8
item: Push Button
Rectangle=240 185 282 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Next >
Text French=&Suivant>
Text German=&Weiter>
Text Portuguese=&Próximo>
Text Spanish=&Siguiente >
Text Italian=&Avanti >
Text Danish=&Næste>
Text Dutch=&Volgende>
Text Norwegian=&Neste>
Text Swedish=&Nästa >
end
item: Push Button
Rectangle=288 185 330 199
Action=3
Create Flags=01010000000000010000000000000000
Text=Cancel
Text French=Annuler
Text German=Abbrechen
Text Portuguese=Cancelar
Text Spanish=Cancelar
Text Italian=Annulla
Text Danish=Annuller
Text Dutch=Annuleren
Text Norwegian=Avbryt
Text Swedish=Avbryt
end
item: Static
Rectangle=5 177 330 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=5 32 43 57
Action=2
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000001011
Pathname=%_WISE_%\dialogs\template\install.grf
Pathname French=%_WISE_%\dialogs\template\install.grf
Pathname German=%_WISE_%\dialogs\template\install.grf
Pathname Portuguese=%_WISE_%\dialogs\template\install.grf
Pathname Spanish=%_WISE_%\dialogs\template\install.grf
Pathname Italian=%_WISE_%\dialogs\template\install.grf
Pathname Danish=%_WISE_%\dialogs\template\install.grf
Pathname Dutch=%_WISE_%\dialogs\template\install.grf
Pathname Norwegian=%_WISE_%\dialogs\template\install.grf
Pathname Swedish=%_WISE_%\dialogs\template\install.grf
end
item: Static
Rectangle=45 32 330 66
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000000000
Text=Welcome to %APPTITLE% Setup program. This program will install %APPTITLE% on your computer.
Text French=Bienvenue sur le programme d'installation %APPTITLE%. Ce programme va installer %APPTITLE% sur votre ordinateur.
Text German=Willkommen im Installationsprogramm für %APPTITLE%. Dieses Programm installiert %APPTITLE% auf Ihrem Computer.
Text Portuguese=Bem-vindo ao programa de configuração %APPTITLE%. Este programa instalará %APPTITLE% no seu computador
Text Spanish=Bienvenido al programa de Configuración %APPTITLE%. Este programa instalará %APPTITLE en su ordenador
Text Italian=Benvenuto nel programma di installazione di %APPTITLE%. Con questo programma puoi installare %APPTITLE% sul tuo computer.
Text Danish=Velkommen til %APPTITLE% installationsprogrammet. Dette program installerer %APPTITLE% på computeren.
Text Dutch=Welkom bij het %APPTITLE% installatieprogramma. Dit programma installeert %APPTITLE% op uw computer.
Text Norwegian=Velkommen til %APPTITLE% Oppsett-program. Dette programmet vil installere %APPTITLE% på datamaskinen din.
Text Swedish=Välkommen till installationsprogrammet för %APPTITLE%. Detta program installerar %APPTITLE% på din dator.
end
item: Static
Rectangle=5 75 330 145
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000000000
Text=It is strongly recommended that you exit all Windows programs before running this Setup Program.
Text=
Text=Click Cancel to quit Setup and close any programs you have running. Click Next to continue with the Setup program .
Text=
Text French=Il vous est fortement recommandé de fermer tous les programmes Windows avant d'exécuter le Programme d'Installation
Text French=
Text French=Cliquez sur Annuler pour quitter l'Installation et fermez tous les programmes actuellement utilisés. Cliquez sur Suivant pour continuer l'installation
Text French=
Text French=ATTENTION : Ce programme est protégé par la loi sur les droits d'exploitation et par les traités internationaux
Text French=
Text French=Toute reproduction ou distribution, même partielle, de ce programme qui n'aura pas reçu d'autorisation préalable fera l'objet de poursuites et sera sévèrement sanctionnée par le droit civil et pénal
Text German=Wir empfehlen nachdrücklich, vor Ausführen dieses Installationsprogramms alle Windows-Programme zu beenden.
Text German=
Text German=Auf Abbrechen klicken, um die Installation zu beenden und alle laufenden Programme zu schließen. Auf Weiter klicken, um mit dem Installationsprogramm zu beginnen.
Text German=
Text German=WARNUNG: Dieses Programm ist urheberrechtlich sowie durch internationale Verträge geschützt.
Text German=
Text German=Die unzulässige Vervielfältigung oder Verbreitung dieses Programms, ob ganz oder auszugsweise, kann schwere zivil- und strafrechtliche Konsequenzen nach sich ziehen und wird unter voller Ausschöpfung der Rechtsmittel geahndet.
Text Portuguese=Recomenda-se insistentemente que saia de todos os programas do Windows antes de executar este Programa de Configuração.
Text Portuguese=
Text Portuguese=Faça um clique sobre Cancelar para sair da Configuração e feche todos os programas que estiver a executar. Faça um clique sobre Próximo para continuar com o programa de configuração
Text Portuguese=
Text Portuguese=AVISO: Este programa está protegido pela lei de direitos do autor e tratados internacionais
Text Portuguese=
Text Portuguese=A reprodução e a distribuição sem autorização deste programa, ou qualquer parte dele, pode dar lugar à aplicação de severas sanções civis e criminais, e serão perseguidas à extensão máxima permitida pela lei.
Text Spanish=Se recomienda encarecidamente que salga de todos los programas Windows antes de ejecutar este programa de Configuración.
Text Spanish=
Text Spanish=Haga un clic en Cancelar para abandonar la Configuración y cerrar cualquier programa que haya estado ejecutando. Haga un clic en Siguiente para continuar con el programa de Configuración.
Text Spanish=
Text Spanish=AVISO: Este programa está protegido por las leyes de derechos de autor y tratados internacionales.
Text Spanish=
Text Spanish=La reproducción o distribución no autorizadas de este programa, o cualquier parte de él, podría dar como resultado rigurosas multas civiles y penales, y se entablará la máxima acción judicial que permita la ley.
Text Italian=Ti consigliamo di uscire da tutti i programmi Windows prima di eseguire questo programma di installazione.
Text Italian=
Text Italian=Fai clic su Annulla per uscire dal programma di installazione e chiudi tutti i programmi aperti. Fai clic su Avanti per continuare con il programma di Installazione.
Text Italian=
Text Italian=AVVERTENZA: Questo programma è protetto ai sensi delle norme di legge e delle convenzioni internazionali in materia di diritti di copyright.
Text Italian=
Text Italian=La riproduzione o la distribuzione totale o parziale non autorizzata di questo programma potrà essere soggetta a penalità civili e penali, e sarà punita con la massima severità possibile a norma di legge.
Text Danish=Det anbefales kraftigt at afslutte alle Windows programmer, inden man kører dette installationsprogram.
Text Danish=
Text Danish=Klik på Annuller for at forlade installationsprogrammet og lukke alle igangværende programmer. Klik på Næste for at fortsætte med installationsprogrammet.
Text Danish=
Text Danish=ADVARSEL: Dette program er beskyttet af copyright og internationale traktater.
Text Danish=
Text Danish=Uautoriseret gengivelse eller videresalg af dette program eller dele heraf kan føre til streng civil- og/eller kriminel stra. Retsforfølgning heraf vil finde sted i det videste omfang der hjemles muligt.
Text Dutch=Het wordt aangeraden om alle Windows programma's af te sluiten voordat u met de installatie van dit programma begint.
Text Dutch=
Text Dutch=Klik op Annuleren om de installatie te verlaten en eventueel nog lopende programma's af te sluiten. Klik op Volgende om verder te gaan met het Installatieprogramma.
Text Dutch=
Text Dutch=WAARSCHUWING: dit computerprogramma is auteursrechtelijk beschermd.
Text Dutch=
Text Dutch=Onrechtmatige verveelvoudiging of distributie van dit programma of een gedeelte ervan is verboden en strafbaar en zal met alle beschikbare juridische middelen worden bestreden.
Text Norwegian=Det anbefales på det sterkeste at du avslutter alle Windows-programmer før du kjører dette Oppsett-programmet.
Text Norwegian=
Text Norwegian=Velg Avbryt for å avbryte Oppsett og lukk alle programmer som er i bruk. Velg Neste for å fortsette med Oppsett-programmet.
Text Norwegian=
Text Norwegian=ADVARSEL: Dette programmet er beskyttet i henhold til lover om opphavsrett og internasjonale konvensjoner.
Text Norwegian=
Text Norwegian=Uautorisert kopiering eller distribuering av dette programmet eller deler av det, vil resultere i alvorlig sivil og kriminell straff og vil føre til saksmål i høyest mulig utstrekning i henhold til loven.
Text Swedish=Du tillråds bestämt att gå ur alla Windows-program innan du kör installationsprogrammet.
Text Swedish=
Text Swedish=Klicka på Avbryt för att gå ur installationsprogrammet och stäng eventuella program som du har laddade. Klicka på Nästa för att fortsätta med installationen.
Text Swedish=
Text Swedish=VARNING: Detta program är skyddat av upphovsrätten och internationella avtal.
Text Swedish=
Text Swedish=Om du utan tillstånd kopierar eller distribuerar detta program eller delar av det kan det bli allvarliga civilrättsliga och brottsrättliga straffpåföljder. Vi beivrar sådana överträdelser i den allra högsta utsträckning som lagen tillåter.
end
end
end
item: Custom Dialog Set
Name=Select Destination Directory
Display Variable=DISPLAY
item: Dialog
Title=Choose Destination Location
Title French=Choisissez la localisation de destination
Title German=Zielpfad wählen
Title Portuguese=Escolher Local de Destino
Title Spanish=Elegir una localización de destino
Title Italian=Scegli Posizione di Destinazione
Title Danish=Vælg destinationsmappe
Title Dutch=Kies doellocatie
Title Norwegian=Velg målplassering
Title Swedish=Välj ställe för installationen
Width=340
Height=225
Font Name=MS Shell Dlg 2
Font Size=8
item: Push Button
Rectangle=240 185 282 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Next >
Text French=&Suivant>
Text German=&Weiter>
Text Portuguese=&Próximo>
Text Spanish=&Siguiente >
Text Italian=&Avanti >
Text Danish=&Næste>
Text Dutch=&Volgende>
Text Norwegian=&Neste>
Text Swedish=&Nästa >
end
item: Push Button
Rectangle=198 185 240 199
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Flags=0000000000000001
Text=< &Back
Text French=<&Retour
Text German=<&Zurück
Text Portuguese=<&Retornar
Text Spanish=<&Retroceder
Text Italian=< &Indietro
Text Danish=<&Tilbage
Text Dutch=<&Terug
Text Norwegian=<&Tilbake
Text Swedish=< &Tillbaka
end
item: Push Button
Rectangle=288 185 330 199
Action=3
Create Flags=01010000000000010000000000000000
Text=Cancel
Text French=Annuler
Text German=Abbrechen
Text Portuguese=Cancelar
Text Spanish=Cancelar
Text Italian=Annulla
Text Danish=Annuller
Text Dutch=Annuleren
Text Norwegian=Avbryt
Text Swedish=Avbryt
end
item: Static
Rectangle=5 177 330 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=5 32 330 95
Create Flags=01010000000000000000000000000000
Text=Setup will install %APPTITLE% in the following folder.
Text=
Text=To install into a different folder, click Browse, and select another folder.
Text=
Text=You can choose not to install %APPTITLE% by clicking Cancel to exit Setup.
Text French=%APPTITLE% va être installé dans le répertoire ci-dessous
Text French=
Text French=Pour l'installer dans un répertoire différent, cliquez sur Parcourir et sélectionnez un autre répertoire
Text French=
Text French=Vous pouvez choisir de ne pas installer %APPTITLE% en cliquant sur Annuler pour quitter l'Installation
Text German=Installation speichert %APPTITLE% im unten angegebenen Ordner:
Text German=
Text German=Zur Installation in einem anderen Ordner auf Blättern klicken und einen anderen Ordner wählen.
Text German=
Text German=Wenn Sie %APPTITLE% nicht installieren möchten, können Sie durch Klicken auf Abbrechen die Installation beenden.
Text Portuguese=Configuração instalará %APPTITLE% na seguinte pasta
Text Portuguese=
Text Portuguese=Para instalar numa pasta diferente, faça um clique sobre Procurar, e seleccione uma outra pasta.
Text Portuguese=
Text Portuguese=Pode escolher não instalar %APPTITLE% clicando no botão Cancelar para sair da Configuração
Text Spanish=El programa de Configuración instalará %APPTITLE% en la siguiente carpeta.
Text Spanish=
Text Spanish=Para instalar en una carpeta diferente, haga un clic en Visualizar, y seleccione otra carpeta.
Text Spanish=
Text Spanish=Puede elegir no instalar %APPTITLE% haciendo un clic en Cancelar para salir de Configuración.
Text Italian=Il programma di installazione installerà %APPTITLE% nella seguente cartella.
Text Italian=
Text Italian=Per effettuare l’installazione in una cartella diversa, fai clic su Sfoglia, e scegli un’altra cartella.
Text Italian=
Text Italian=Puoi scegliere di non installare %APPTITLE% facendo clic su Annulla per uscire dal programma di installazione
Text Danish=Installationsprogrammet installerer %APPTITLE% i denne mappe.
Text Danish=
Text Danish=Man installerer i en anden mappe ved at klikke på Browse og vælge en anden mappe.
Text Danish=
Text Danish=Man kan vælge ikke at installere %APPTITLE% ved at klikke på Slet og forlade installationsprogrammet.
Text Dutch=Het installatieprogramma installeert %APPTITLE% in de volgende directory.
Text Dutch=
Text Dutch=Als u het in een andere directory wilt installeren, klik dan op Bladeren en kies een andere locatie.
Text Dutch=
Text Dutch=U kunt ervoor kiezen om %APPTITLE% niet te installeren: klik op Annuleren om het installatieprogramma te verlaten.
Text Norwegian=Oppsett vil installere %APPTITLE% i følgende mappe.
Text Norwegian=
Text Norwegian=For å installere i en annen mappe, klikk Bla igjennom og velg en annen mappe.
Text Norwegian=
Text Norwegian=Du kan velge å ikke installere %APPTITLE% ved å velge Avbryt for å gå ut av Oppsett.
Text Swedish=Installationsprogrammet installerar %APPTITLE% i följande mapp.
Text Swedish=
Text Swedish=Om du vill att installationen ska göras i en annan mapp, klickar du på Bläddra och väljer en annan mapp.
Text Swedish=
Text Swedish=Du kan välja att inte installera %APPTITLE% genom att klicka på Avbryt för att lämna installationsprogrammet.
end
item: Static
Rectangle=48 102 297 130
Action=1
Create Flags=01010000000000000000000000000111
Text=Destination Folder
Text French=Répertoire de destination
Text German=Zielordner
Text Portuguese=Pasta de Destino
Text Spanish=Carpeta de Destino
Text Italian=Cartella di destinazione
Text Danish=Destinationsmappe
Text Dutch=Doeldirectory
Text Norwegian=Målmappe
Text Swedish=Destinationsmapp
end
item: Push Button
Rectangle=250 111 292 125
Variable=MAINDIR_SAVE
Value=%MAINDIR%
Destination Dialog=1
Action=2
Create Flags=01010000000000010000000000000000
Text=B&rowse...
Text French=P&arcourir
Text German=B&lättern...
Text Portuguese=P&rocurar
Text Spanish=V&isualizar...
Text Italian=Sfoglia...
Text Danish=&Gennemse...
Text Dutch=B&laderen...
Text Norwegian=Bla igjennom
Text Swedish=&Bläddra
end
item: Static
Rectangle=53 114 246 125
Destination Dialog=2
Create Flags=01010000000000000000000000000000
Text=%MAINDIR%
Text French=%MAINDIR%
Text German=%MAINDIR%
Text Portuguese=%MAINDIR%
Text Spanish=%MAINDIR%
Text Italian=%MAINDIR%
Text Danish=%MAINDIR%
Text Dutch=%MAINDIR%
Text Norwegian=%MAINDIR%
Text Swedish=%MAINDIR%
end
end
item: Dialog
Title=Select Destination Directory
Title French=Choisissez le répertoire de destination
Title German=Zielverzeichnis wählen
Title Portuguese=Seleccionar Directório de Destino
Title Spanish=Seleccione el Directorio de Destino
Title Italian=Seleziona Directory di destinazione
Title Danish=Vælg Destinationsbibliotek
Title Dutch=Kies doeldirectory
Title Norwegian=Velg målkatalog
Title Swedish=Välj destinationskalatog
Width=221
Height=173
Font Name=Helv
Font Size=8
item: Listbox
Rectangle=5 2 160 149
Variable=MAINDIR
Create Flags=01010000100000010000000101000000
Flags=0000110000100010
Text=%MAINDIR%
Text French=%MAINDIR%
Text German=%MAINDIR%
Text Portuguese=%MAINDIR%
Text Spanish=%MAINDIR%
Text Italian=%MAINDIR%
Text Danish=%MAINDIR%
Text Dutch=%MAINDIR%
Text Norwegian=%MAINDIR%
Text Swedish=%MAINDIR%
end
item: Push Button
Rectangle=167 6 212 21
Create Flags=01010000000000010000000000000001
Text=OK
Text French=OK
Text German=OK
Text Portuguese=OK
Text Spanish=ACEPTAR
Text Italian=OK
Text Danish=OK
Text Dutch=OK
Text Norwegian=OK
Text Swedish=OK
end
item: Push Button
Rectangle=167 25 212 40
Variable=MAINDIR
Value=%MAINDIR_SAVE%
Create Flags=01010000000000010000000000000000
Flags=0000000000000001
Text=Cancel
Text French=Annuler
Text German=Abbrechen
Text Portuguese=Cancelar
Text Spanish=Cancelar
Text Italian=Annulla
Text Danish=Slet
Text Dutch=Annuleren
Text Norwegian=Avbryt
Text Swedish=Avbryt
end
end
end
item: Custom Dialog Set
Name=Select Program Manager Group
Display Variable=DISPLAY
item: Dialog
Title=Select Program Manager Group
Title French=Sélectionnez le Groupe du Gestionnaire de Programmes
Title German=Programm-Managergruppe wählen
Title Portuguese=Seleccionar o Grupo Gestor de Programas
Title Spanish=Seleccione el Grupo del Administrador del Programa
Title Italian=Seleziona il gruppo Program Manager
Title Danish=Vælg Programstyringsgruppen
Title Dutch=Kies Programmabeheergroep.
Title Norwegian=Velg Programbehandlingsgruppen
Title Swedish=Välj grupp i Programhanteraren
Width=340
Height=225
Font Name=MS Shell Dlg 2
Font Size=8
item: Push Button
Rectangle=240 185 282 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Next >
Text French=&Suivant>
Text German=&Weiter>
Text Portuguese=&Próximo>
Text Spanish=&Siguiente >
Text Italian=&Avanti >
Text Danish=&Næste>
Text Dutch=&Volgende>
Text Norwegian=&Neste>
Text Swedish=&Nästa >
end
item: Push Button
Rectangle=198 185 240 199
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Flags=0000000000000001
Text=< &Back
Text French=<&Retour
Text German=<&Zurück
Text Portuguese=<&Retornar
Text Spanish=<&Retroceder
Text Italian=< &Indietro
Text Danish=<&Back
Text Dutch=<&Terug
Text Norwegian=<&Tilbake
Text Swedish=< &Tillbaka
end
item: Push Button
Rectangle=288 185 330 199
Action=3
Create Flags=01010000000000010000000000000000
Text=Cancel
Text French=Annuler
Text German=Abbrechen
Text Portuguese=Cancelar
Text Spanish=Cancelar
Text Italian=Annulla
Text Danish=Slet
Text Dutch=Annuleren
Text Norwegian=Avbryt
Text Swedish=Avbryt
end
item: Static
Rectangle=5 177 330 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=82 32 252 60
Create Flags=01010000000000000000000000000000
Text=Enter the name of the Program Manager group to add %APPTITLE% icons to:
Text French=Entrez le nom du groupe du Gestionnaire de Programmes où placer les icônes %APPTITLE% à :
Text German=Den Namen der Programm-Managergruppe wählen, in der die %APPTITLE%-Symbole gespeichert werden sollen:
Text Portuguese=Introduzir o nome do Grupo Gestor de Programa para acrescentar os ícones %APPTITLE% para:
Text Spanish=Introduzca el nombre del grupo del Administrador del Programa para añadir los iconos %APPTITLE para:
Text Italian=Inserisci il nome del gruppo Program Manager per aggiungere le icone di %APPTITLE% a:
Text Danish=Indtast navnet på Programstyringsgruppen der skal tilføjes %APPTITLE% elementer:
Text Dutch=Breng de naam van de programmabeheergroep in waaraan u %APPTITLE%-pictogrammen wilt toevoegen.
Text Norwegian=Tast inn navnet på programbehandlingsgruppen for å legge %APPTITLE%-ikoner til:
Text Swedish=Skriv in namnet på den grupp i Programhanteraren där du vill ha ikonerna för %APPTITLE%:
end
item: Combobox
Rectangle=82 65 252 172
Variable=GROUP
Create Flags=01010000001000010000001100000001
Flags=0000000000000001
Text=%GROUP%
Text=
Text French=%GROUP%
Text French=
Text German=%GROUP%
Text German=
Text Portuguese=%GROUP%
Text Portuguese=
Text Spanish=%GROUP%
Text Spanish=
Text Italian=%GROUP%
Text Italian=
Text Danish=%GROUP%
Text Danish=
Text Dutch=%GROUP%
Text Dutch=
Text Norwegian=%GROUP%
Text Norwegian=
Text Swedish=%GROUP%
Text Swedish=
end
end
end
item: Custom Dialog Set
Name=Start Installation
Display Variable=DISPLAY
item: Dialog
Title=Start Installation
Title French=Commencer l'installation
Title German=Installation beginnen
Title Portuguese=Iniciar Instalação
Title Spanish=Comenzar la Instalación
Title Italian=Avvia Installazione
Title Danish=Start installationen
Title Dutch=Start de installatie
Title Norwegian=Start installeringen
Title Swedish=Starta installationen
Width=340
Height=225
Font Name=MS Shell Dlg 2
Font Size=8
item: Push Button
Rectangle=240 185 282 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Next >
Text French=&Suivant>
Text German=&Weiter>
Text Portuguese=&Próximo>
Text Spanish=&Siguiente >
Text Italian=&Avanti >
Text Danish=&Næste>
Text Dutch=&Volgende>
Text Norwegian=&Neste>
Text Swedish=&Nästa >
end
item: Push Button
Rectangle=198 185 240 199
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Text=< &Back
Text French=<&Retour
Text German=<&Zurück
Text Portuguese=<&Retornar
Text Spanish=<&Retroceder
Text Italian=< &Indietro
Text Danish=<&Tilbage
Text Dutch=<&Terug
Text Norwegian=<&Tilbake
Text Swedish=< &Tillbaka
end
item: Push Button
Rectangle=288 185 330 199
Action=3
Create Flags=01010000000000010000000000000000
Text=Cancel
Text French=Annuler
Text German=Abbrechen
Text Portuguese=Cancelar
Text Spanish=Cancelar
Text Italian=Annulla
Text Danish=Annuller
Text Dutch=Annuleren
Text Norwegian=Avbryt
Text Swedish=Avbryt
end
item: Static
Rectangle=5 177 330 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=5 32 330 92
Create Flags=01010000000000000000000000000000
Text=You are now ready to install %APPTITLE%.
Text=
Text=Press the Next button to begin the installation or the Back button to reenter the installation information.
Text French=Vous êtes maintenant prêt à installer %APPTITLE%
Text French=
Text French=Cliquez sur Suivant pour commencer l'installation ou Retour pour entrer à nouveau les informations d'installation
Text German=Sie sind jetzt zur Installation von %APPTITLE% bereit.
Text German=
Text German=Auf die Schaltfläche Weiter klicken, um mit dem Start der Installation zu beginnen, oder auf die Schaltfläche Zurück, um die Installationsinformationen nochmals aufzurufen.
Text Portuguese=Está agora pronto para instalar %APPTITLE%
Text Portuguese=
Text Portuguese=Pressione o botão Próximo para começar a instalação ou o botão Retornar para introduzir novamente a informação sobre a instalação
Text Spanish=Ahora estará listo para instalar %APPTITLE%.
Text Spanish=
Text Spanish=Pulse el botón de Siguiente para comenzar la instalación o el botón Retroceder para volver a introducir la información sobre la instalación.
Text Italian=Sei pronto ad installare %APPTITLE%.
Text Italian=
Text Italian=Premi il tasto Avanti per iniziare l’installazione o il tasto Indietro per rientrare nuovamente nei dati sull’installazione
Text Danish=Du er nu klar til at installere %APPTITLE%.
Text Danish=
Text Danish=Klik på Næste for at starte installationen eller på Tilbage for at ændre installationsoplysningerne.
Text Dutch=U bent nu klaar om %APPTITLE% te installeren.
Text Dutch=
Text Dutch=Druk op Volgende om met de installatie te beginnen of op Terug om de installatie-informatie opnieuw in te voeren.
Text Norwegian=Du er nå klar til å installere %APPTITLE%
Text Norwegian=
Text Norwegian=Trykk på Neste-tasten for å starte installeringen, eller Tilbake-tasten for å taste inn installasjonsinformasjonen på nytt.
Text Swedish=Du är nu redo att installera %APPTITLE%.
Text Swedish=
Text Swedish=Tryck på Nästa för att starta installationen eller på Tillbaka för att skriva in installationsinformationen på nytt.
end
end
end
item: Remark
Text=This reinitialized the BACKUP directory so that it reflects the change the user made to MAINDIR
end
item: If/While Statement
Variable=DISPLAY
Value=Select Destination Directory
end
item: Set Variable
Variable=BACKUP
Value=%MAINDIR%\BACKUP
end
item: End Block
end
item: End Block
end
item: Remark
Text=When the BACKUP feature is enabled, the BACKUPDIR is initialized
end
item: If/While Statement
Variable=DOBACKUP
Value=A
end
item: Set Variable
Variable=BACKUPDIR
Value=%BACKUP%
end
item: End Block
end
item: Remark
Text=The BRANDING information is written to the INI file on the installation media.
end
item: If/While Statement
Variable=BRANDING
Value=1
end
item: If/While Statement
Variable=DOBRAND
Value=1
end
item: Edit INI File
Pathname=%INST%\CUSTDATA.INI
Settings=[Registration]
Settings=NAME=%NAME%
Settings=COMPANY=%COMPANY%
Settings=
end
item: End Block
end
item: End Block
end
item: Remark
Text=Begin writing to the INSTALL.LOG
end
item: Open/Close INSTALL.LOG
end
item: Remark
Text=Check free disk space calculates free disk space as well as component sizes.
end
item: Remark
Text=It should be located before all Install File actions.
end
item: Check Disk Space
Component=COMPONENTS
end
item: Remark
Text=This include script allows uninstall support
end
item: Include Script
Pathname=%_WISE_%\INCLUDE\uninstal.wse
end
item: Install File
Source=d:\src\SQLite.NET\readme.htm
Destination=%MAINDIR%\readme.htm
Flags=0000000010000010
File Size=30870
File Date=20060217 221720
end
item: Install File
Source=d:\src\SQLite.NET\bin\System.Data.SQLite.lib
Destination=%MAINDIR%\bin\System.Data.SQLite.lib
Flags=0000000010000010
File Size=51930
File Date=20060226 004114
end
item: Install File
Source=d:\src\SQLite.NET\bin\test.exe.config
Destination=%MAINDIR%\bin\test.exe.config
Flags=0000000010000010
File Size=364
File Date=20060110 195108
end
item: Install File
Source=d:\src\SQLite.NET\bin\System.Data.SQLite.DLL
Destination=%MAINDIR%\bin\System.Data.SQLite.DLL
Flags=0000000010000011
Version String=1.0.27.0
Version MS=65536
Version LS=1769472
Product=SQLite.NET
File Size=472064
File Date=20060226 004136
EXE Type=32
end
item: Install File
Source=d:\src\SQLite.NET\bin\System.Data.SQLite.XML
Destination=%MAINDIR%\bin\System.Data.SQLite.XML
Flags=0000000010000010
File Size=152098
File Date=20060214 180801
end
item: Install File
Source=d:\src\SQLite.NET\bin\CompactFramework\System.Data.SQLite.DLL
Destination=%MAINDIR%\bin\CompactFramework\System.Data.SQLite.DLL
Flags=0000000010000011
Version String=1.0.27.0
Version MS=65536
Version LS=1769472
Product=SQLite.NET
File Size=374784
File Date=20060225 223126
EXE Type=32
end
item: Install File
Source=d:\src\SQLite.NET\bin\test.exe
Destination=%MAINDIR%\bin\test.exe
Flags=0000000010000011
Version String=1.0.0.0
Version MS=65536
Product=test
File Size=19968
File Date=20060226 004216
EXE Type=32
end
item: Install File
Source=d:\src\SQLite.NET\bin\CompactFramework\System.Data.SQLite.lib
Destination=%MAINDIR%\bin\CompactFramework\System.Data.SQLite.lib
Flags=0000000010000010
File Size=49916
File Date=20060225 223113
end
item: Install File
Source=d:\src\SQLite.NET\bin\Designer\SQLite.Designer.dll
Destination=%MAINDIR%\bin\Designer\SQLite.Designer.dll
Flags=0000000010000011
Version String=1.0.27.0
Version MS=65536
Version LS=1769472
Company=http://sqlite.phxsoftware.com
Product=SQLite Designer
File Size=64512
File Date=20060225 222713
EXE Type=32
end
item: Install File
Source=d:\src\SQLite.NET\bin\CompactFramework\testce.exe
Destination=%MAINDIR%\bin\CompactFramework\testce.exe
Flags=0000000010000010
File Size=20480
File Date=20060225 223127
EXE Type=32
end
item: Install File
Source=d:\src\SQLite.NET\bin\x64\System.Data.SQLite.DLL
Destination=%MAINDIR%\bin\x64\System.Data.SQLite.DLL
Flags=0000000010000011
Version String=1.0.27.0
Version MS=65536
Version LS=1769472
Product=SQLite.NET
File Size=746496
File Date=20060226 004300
EXE Type=32
end
item: Install File
Source=d:\src\SQLite.NET\bin\Designer\install.exe
Destination=%MAINDIR%\bin\Designer\install.exe
Flags=0000000010000011
Version String=1.0.0.0
Version MS=65536
Company=http://sqlite.phxsoftware.com
Product=SQLite Installer
File Size=38400
File Date=20060225 222714
EXE Type=32
end
item: Install File
Source=d:\src\SQLite.NET\bin\x64\System.Data.SQLite.lib
Destination=%MAINDIR%\bin\x64\System.Data.SQLite.lib
Flags=0000000010000010
File Size=49924
File Date=20060226 004222
end
item: Install File
Source=d:\src\SQLite.NET\bin\itanium\System.Data.SQLite.lib
Destination=%MAINDIR%\bin\itanium\System.Data.SQLite.lib
Flags=0000000010000010
File Size=60674
File Date=20060226 004153
end
item: Install File
Source=d:\src\SQLite.NET\tools\setup\install.ico
Destination=%MAINDIR%\bin\Designer\install.ico
Flags=0000000010000010
File Size=10134
File Date=20060202 151618
end
item: Install File
Source=d:\src\SQLite.NET\bin\itanium\System.Data.SQLite.DLL
Destination=%MAINDIR%\bin\itanium\System.Data.SQLite.DLL
Flags=0000000010000011
Version String=1.0.27.0
Version MS=65536
Version LS=1769472
Product=SQLite.NET
File Size=1084416
File Date=20060226 004215
EXE Type=32
end
item: Install File
Source=d:\src\SQLite.NET\Doc\SQLite.NET.chm
Destination=%MAINDIR%\bin\Doc\SQLite.NET.chm
Flags=0000000010000010
File Size=218516
File Date=20060217 221721
end
item: Set Variable
Variable=COMMON
Value=%COMMON%
Flags=00010100
end
item: Set Variable
Variable=MAINDIR
Value=%MAINDIR%
Flags=00010100
end
item: Remark
Text=This IF/THEN/ELSE reads the correct registry entries for shortcut/icon placement
end
item: Check Configuration
Flags=10111011
end
item: Get Registry Key Value
Variable=STARTUPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%WIN%\Start Menu\Programs\StartUp
Value Name=StartUp
Flags=00000010
end
item: Get Registry Key Value
Variable=DESKTOPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%WIN%\Desktop
Value Name=Desktop
Flags=00000010
end
item: Get Registry Key Value
Variable=STARTMENUDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%WIN%\Start Menu
Value Name=Start Menu
Flags=00000010
end
item: Get Registry Key Value
Variable=GROUPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%WIN%\Start Menu\Programs
Value Name=Programs
Flags=00000010
end
item: Get Registry Key Value
Variable=CSTARTUPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%STARTUPDIR%
Value Name=Common Startup
Flags=00000100
end
item: Get Registry Key Value
Variable=CDESKTOPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%DESKTOPDIR%
Value Name=Common Desktop
Flags=00000100
end
item: Get Registry Key Value
Variable=CSTARTMENUDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%STARTMENUDIR%
Value Name=Common Start Menu
Flags=00000100
end
item: Get Registry Key Value
Variable=CGROUPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%GROUPDIR%
Value Name=Common Programs
Flags=00000100
end
item: Set Variable
Variable=CGROUP_SAVE
Value=%GROUP%
end
item: Set Variable
Variable=GROUP
Value=%GROUPDIR%\%GROUP%
end
item: Create Shortcut
Source=%MAINDIR%\bin\Doc\SQLite.NET.chm
Destination=%CGROUPDIR%\%CGROUP_SAVE%\SQLite.NET API Documentation.lnk
Icon Number=0
end
item: Create Shortcut
Source=%MAINDIR%\bin\Designer\install.exe
Destination=%CGROUPDIR%\%CGROUP_SAVE%\SQLite Design-Time Installer.lnk
Icon Number=0
Icon Pathname=%MAINDIR%\bin\Designer\install.ico
end
item: Else Statement
end
item: Add ProgMan Icon
Group=%GROUP%
Icon Name=SQLite.NET API Documentation
Command Line=%MAINDIR%\bin\Doc\SQLite.NET.chm
end
item: Add ProgMan Icon
Group=%GROUP%
Icon Name=SQLite Design-Time Installer
Command Line=%MAINDIR%\bin\Designer\install.exe
Icon Pathname=%MAINDIR%\bin\Designer\install.ico
end
item: End Block
end
item: Remark
Text=All OCX/DLL/EXE files that are self-registered
end
item: Self-Register OCXs/DLLs
Description=Updating System Configuration, Please Wait...
end
item: Execute Program
Pathname=%MAINDIR%\bin\Designer\install.exe
Default Directory=%MAINDIR%\bin\Designer
Flags=00000010
end
item: Remark
Text=This Wizard Loop finalizes the install
end
item: Edit INI File
Pathname=%UNINSTALL_LANG%
Settings=[Settings]
Settings=Text Font=MS Shell Dlg 2
Settings=
end
item: Add Text to INSTALL.LOG
Text=Execute Program: %MAINDIR%\bin\Designer\install.exe /remove
end
item: Wizard Block
Direction Variable=DIRECTION
Display Variable=DISPLAY
Bitmap Pathname=D:\src\SQLite.NET\tools\setup\topband.bmp
X Position=0
Y Position=0
Filler Color=8421440
Flags=00000011
end
item: Custom Dialog Set
Name=Finished
Display Variable=DISPLAY
item: Dialog
Title=Installation Complete
Title French=Installation en cours
Title German=Installation abgeschlossen
Title Portuguese=Instalação Completa
Title Spanish=Se ha completado la Instalación
Title Italian=Installazione completata
Title Danish=Installation gennemført
Title Dutch=Installatie afgerond
Title Norwegian=Installasjonen er fullført
Title Swedish=Installationen klar
Width=340
Height=225
Font Name=MS Shell Dlg 2
Font Size=8
item: Push Button
Rectangle=240 185 282 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Finish >
Text French=&Terminer>
Text German=&Fertigstellen>
Text Portuguese=&Terminar >
Text Spanish=&Finalizar>
Text Italian=&Fine >
Text Danish=&Afslut >
Text Dutch=&Klaar>
Text Norwegian=&Avslutt>
Text Swedish=&Sluta>
end
item: Push Button
Control Name=CANCEL
Rectangle=288 185 330 199
Action=3
Create Flags=01010000000000010000000000000000
Text=Cancel
Text French=Annuler
Text German=Abbrechen
Text Portuguese=Cancelar
Text Spanish=Cancelar
Text Italian=Annulla
Text Danish=Annuller
Text Dutch=Annuleren
Text Norwegian=Avbryt
Text Swedish=Avbryt
end
item: Static
Rectangle=5 177 330 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=5 32 330 85
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000000000
Text=%APPTITLE% has been successfully installed.
Text=
Text=
Text=Press the Finish button to exit this installation.
Text=
Text French=L'installation de %APPTITLE% est réussie
Text French=
Text French=
Text French=Cliquez sur Terminer pour quitter cette installation
Text French=
Text German=%APPTITLE% wurde erfolgreich installiert.
Text German=
Text German=
Text German=Zum Beenden dieser Installation Fertigstellen anklicken.
Text German=
Text Portuguese=%APPTITLE% foi instalado com êxito
Text Portuguese=
Text Portuguese=
Text Portuguese=Pressionar o botão Terminar para sair desta instalação
Text Portuguese=
Text Spanish=%APPTITLE% se ha instalado con éxito.
Text Spanish=
Text Spanish=
Text Spanish=Pulse el botón de Finalizar para salir de esta instalación.
Text Spanish=
Text Italian=%APPTITLE% è stato installato.
Text Italian=
Text Italian=
Text Italian=Premi il pulsante Fine per uscire dal programma di installazione
Text Italian=
Text Danish=%APPTITLE% er nu installeret korrekt.
Text Danish=
Text Danish=
Text Danish=Klik på Afslut for at afslutte installationen.
Text Danish=
Text Dutch=%APPTITLE% is met succes geïnstalleerd.
Text Dutch=
Text Dutch=
Text Dutch=Druk op Klaar om deze installatie af te ronden.
Text Dutch=
Text Norwegian=Installasjonen av %APPTITLE% er vellykket.
Text Norwegian=
Text Norwegian=
Text Norwegian=Trykk på Avslutt-tasten for å avslutte denne installasjonen.
Text Norwegian=
Text Swedish=Installationen av %APPTITLE% har lyckats.
Text Swedish=
Text Swedish=
Text Swedish=Tryck på Sluta för att gå ur installationsprogrammet.
Text Swedish=
end
item: Push Button
Control Name=BACK
Rectangle=198 185 240 199
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Text=< &Back
Text French=<&Retour
Text German=<&Zurück
Text Portuguese=<&Retornar
Text Spanish=<&Retroceder
Text Italian=< &Indietro
Text Danish=<&Tilbage
Text Dutch=<&Terug
Text Norwegian=<&Tilbake
Text Swedish=< &Tillbaka
end
item: Set Control Attribute
Control Name=BACK
Operation=1
end
item: Set Control Attribute
Control Name=CANCEL
Operation=1
end
end
end
item: End Block
end
item: Edit Registry
Total Keys=2
item: Key
Key=Software\Microsoft\Windows\CurrentVersion\Uninstall\%APPTITLE%
New Value=Phoenix Software Solutions, LLC
Value Name=Publisher
Root=2
end
item: Key
Key=Software\Microsoft\Windows\CurrentVersion\Uninstall\%APPTITLE%
New Value=http://sqlite.phxsoftware.com
Value Name=URLInfoAbout
Root=2
end
end
item: New Event
Name=Cancel
end
item: Remark
Text=This include script supports a rollback to preinstallation state if the user chooses to cancel before the installation is complete.
end
item: Include Script
Pathname=%_WISE_%\INCLUDE\rollback.wse
end
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
|
|