-
Notifications
You must be signed in to change notification settings - Fork 9
/
PrintDLL.drc
1100 lines (1097 loc) · 50.8 KB
/
PrintDLL.drc
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
/* VER140
Generated by the Borland Delphi Pascal Compiler
because -GD or --drc was supplied to the compiler.
This file contains compiler-generated resources that
were bound to the executable.
If this file is empty, then no compiler-generated
resources were bound to the produced executable.
*/
#define ppJvInspector_sppJvInspItemInvalidPropValue 64992
#define ppJvInspector_sppJvInspDataNoAccessAs 64993
#define ppJvInspector_sppJvInspDataNotInit 64994
#define ppJvInspector_sppJvInspDataNotAssigned 64995
#define ppJvInspector_sppJvInspDataNoValue 64996
#define ppJvInspector_sppJvInspDataStrTooLong 64997
#define ppJvInspector_sppJvInspNoGenReg 64998
#define ppJvInspector_sppJvInspPaintNotActive 64999
#define ppJvInspector_sppJvInspPaintOnlyUsedOnce 65000
#define ppJvInspector_sppJvAssertSetTopIndex 65001
#define ppJvInspector_sppJvAssertInspectorPainter 65002
#define ppJvInspector_sppJvAssertDataParent 65003
#define ppJvInspector_sppJvAssertParent 65004
#define ppJvInspector_sppJvAssertPropInfo 65005
#define ppInspector_sJvInspDataNoSelectionController 65006
#define ppJclResources_ppJclRsRTTITypeKind 65008
#define ppJclResources_ppJclRsRTTIOrdinalType 65009
#define ppJclResources_ppJclRsRTTIMinValue 65010
#define ppJclResources_ppJclRsRTTIMaxValue 65011
#define ppJclResources_ppJclRsRTTINameList 65012
#define ppJclResources_ppJclRsRTTIUnitName 65013
#define ppJclResources_ppJclRsRTTIBasedOn 65014
#define ppJclResources_ppJclRsRTTIFloatType 65015
#define ppJvInspector_sppJvInspItemHasParent 65016
#define ppJvInspector_sppJvInspItemValueException 65017
#define ppJvInspector_sppJvInspItemUnInitialized 65018
#define ppJvInspector_sppJvInspItemUnassigned 65019
#define ppJvInspector_sppJvInspItemNoValue 65020
#define ppJvInspector_sppJvInspItemNotAChild 65021
#define ppJvInspector_sppJvInspItemColNotFound 65022
#define ppJvInspector_sppJvInspItemItemIsNotCol 65023
#define ppSynEditStrConst_ppSynS_AttrPLSQL 65024
#define ppSynEditStrConst_ppSynS_AttrReservedWord 65025
#define ppSynEditStrConst_ppSynS_AttrSpace 65026
#define ppSynEditStrConst_ppSynS_AttrSQLPlus 65027
#define ppSynEditStrConst_ppSynS_AttrString 65028
#define ppSynEditStrConst_ppSynS_AttrSymbol 65029
#define ppSynEditStrConst_ppSynS_AttrTableName 65030
#define ppSynEditStrConst_ppSynS_AttrVariable 65031
#define ppSynEditStrConst_ppSynS_FilterSQL 65032
#define ppSynEditStrConst_ppSynS_LangSQL 65033
#define ppJclResources_ppJclRsRTTIValueOutOfRange 65034
#define ppJclResources_ppJclRsRTTIUnknownIdentifier 65035
#define ppJclResources_ppJclRsRTTIOrdinal 65036
#define ppJclResources_ppJclRsRTTITypeError 65037
#define ppJclResources_ppJclRsRTTITypeInfoAt 65038
#define ppJclResources_ppJclRsRTTIName 65039
#define RBTableGrid_rsTableGrid 65040
#define RBTableGrid_rsDBTableGrid 65041
#define RBTableGrid_rsCrossTable 65042
#define RBTableGrid_rsReadCellsError 65043
#define RBTableGrid_rsUnsupport 65044
#define RBCheckBox_rsCheckBox 65045
#define RBCheckBox_rsCheckBoxCaption 65046
#define ppSynEditStrConst_ppSynS_AttrComment 65047
#define ppSynEditStrConst_ppSYNS_AttrConditionalComment 65048
#define ppSynEditStrConst_ppSynS_AttrDataType 65049
#define ppSynEditStrConst_ppSynS_AttrDefaultPackage 65050
#define ppSynEditStrConst_ppSYNS_AttrDelimitedIdentifier 65051
#define ppSynEditStrConst_ppSynS_AttrException 65052
#define ppSynEditStrConst_ppSynS_AttrFunction 65053
#define ppSynEditStrConst_ppSynS_AttrIdentifier 65054
#define ppSynEditStrConst_ppSynS_AttrNumber 65055
#define TXString_SPDFDefaultExtFilter 65056
#define TXString_SPDFDeviceDescription 65057
#define TXString_SPRNDeviceName 65058
#define TXString_SPRNDefaultExt 65059
#define TXString_SPRNDefaultExtFilter 65060
#define TXString_SPRNDeviceDescription 65061
#define ZLibConst_sInvalidStreamOp 65062
#define IdResourceStrings_RSStatusResolving 65063
#define IdResourceStrings_RSStatusConnecting 65064
#define IdResourceStrings_RSStatusConnected 65065
#define IdResourceStrings_RSStatusDisconnecting 65066
#define IdResourceStrings_RSStatusDisconnected 65067
#define IdResourceStrings_RSStatusText 65068
#define IdResourceStrings_RSCoderNoTableEntryNotFound 65069
#define IdResourceStrings_RSTIdMessagePartCreate 65070
#define RBTableGrid_rsGridPack 65071
#define TXString_SBMPDefaultExtFilter 65072
#define TXString_SBMPDeviceDescription 65073
#define TXString_SXTMDeviceName 65074
#define TXString_SXTMDefaultExt 65075
#define TXString_SXTMDefaultExtFilter 65076
#define TXString_SXTMDeviceDescription 65077
#define TXString_SHTMDeviceName 65078
#define TXString_SHTMDefaultExt 65079
#define TXString_SHTMDefaultExtFilter 65080
#define TXString_SHTMDeviceDescription 65081
#define TXString_SRTFDeviceName 65082
#define TXString_SRTFDefaultExt 65083
#define TXString_SRTFDefaultExtFilter 65084
#define TXString_SRTFDeviceDescription 65085
#define TXString_SPDFDeviceName 65086
#define TXString_SPDFDefaultExt 65087
#define JConsts_sJPEGError 65088
#define JConsts_sJPEGImageFile 65089
#define TXString_SWK1DeviceName 65090
#define TXString_SWK1DefaultExt 65091
#define TXString_SWK1DefaultExtFilter 65092
#define TXString_SWK1DeviceDescription 65093
#define TXString_SWQ1DeviceName 65094
#define TXString_SWQ1DefaultExt 65095
#define TXString_SWQ1DefaultExtFilter 65096
#define TXString_SWQ1DeviceDescription 65097
#define TXString_SXLSDeviceName 65098
#define TXString_SXLSDefaultExt 65099
#define TXString_SXLSDefaultExtFilter 65100
#define TXString_SXLSDeviceDescription 65101
#define TXString_SBMPDeviceName 65102
#define TXString_SBMPDefaultExt 65103
#define ADOConst_SInvalidEnumValue 65104
#define ADOConst_SMissingConnection 65105
#define ADOConst_SNoDetailFilter 65106
#define ADOConst_SBookmarksRequired 65107
#define ADOConst_SMissingCommandText 65108
#define ADOConst_SNoResultSet 65109
#define ADOConst_SADOCreateError 65110
#define ADOConst_SEventsNotSupported 65111
#define ADOConst_SUsupportedFieldType 65112
#define ADOConst_SConnectionRequired 65113
#define ADOConst_SCantRequery 65114
#define ADOConst_SNoFilterOptions 65115
#define ADOConst_SRecordsetNotOpen 65116
#define ADODB_sNameAttr 65117
#define ADODB_sValueAttr 65118
#define JConsts_sChangeJPGSize 65119
#define VDBConsts_SFirstRecord 65120
#define VDBConsts_SPriorRecord 65121
#define VDBConsts_SNextRecord 65122
#define VDBConsts_SLastRecord 65123
#define VDBConsts_SInsertRecord 65124
#define VDBConsts_SDeleteRecord 65125
#define VDBConsts_SEditRecord 65126
#define VDBConsts_SPostEdit 65127
#define VDBConsts_SCancelEdit 65128
#define VDBConsts_SRefreshRecord 65129
#define VDBConsts_SDeleteRecordQuestion 65130
#define VDBConsts_SDeleteMultipleRecordsQuestion 65131
#define VDBConsts_SDataSourceFixed 65132
#define VDBConsts_SPropDefByLookup 65133
#define VDBConsts_STooManyColumns 65134
#define VDBConsts_SRemoteLogin 65135
#define DBConsts_SInvalidVersion 65136
#define DBConsts_SBadFieldType 65137
#define DBConsts_SProviderSQLNotSupported 65138
#define DBConsts_SProviderExecuteNotSupported 65139
#define DBConsts_SDataSetUnidirectional 65140
#define DBConsts_SUnassignedVar 65141
#define DBConsts_SRecordNotFound 65142
#define DBConsts_SBcdOverflow 65143
#define DBConsts_SInvalidBcdValue 65144
#define DBConsts_SInvalidFormatType 65145
#define DBConsts_SCouldNotParseTimeStamp 65146
#define DBConsts_SInvalidSqlTimeStamp 65147
#define ComConst_SOleError 65148
#define ComConst_SNoMethod 65149
#define ComConst_SVarNotObject 65150
#define ComConst_STooManyParams 65151
#define DBConsts_SInvalidCalcType 65152
#define DBConsts_SFieldReadOnly 65153
#define DBConsts_SNoIndexForFields 65154
#define DBConsts_SIndexNotFound 65155
#define DBConsts_SCircularDataLink 65156
#define DBConsts_SLookupInfoError 65157
#define DBConsts_SDataSourceChange 65158
#define DBConsts_SDataSetOpen 65159
#define DBConsts_SNotEditing 65160
#define DBConsts_SDataSetClosed 65161
#define DBConsts_SDataSetEmpty 65162
#define DBConsts_SDataSetReadOnly 65163
#define DBConsts_SNestedDataSetClass 65164
#define DBConsts_STextFalse 65165
#define DBConsts_STextTrue 65166
#define DBConsts_SParameterNotFound 65167
#define DBConsts_SFieldNameMissing 65168
#define DBConsts_SDuplicateFieldName 65169
#define DBConsts_SFieldNotFound 65170
#define DBConsts_SFieldAccessError 65171
#define DBConsts_SFieldValueError 65172
#define DBConsts_SFieldRangeError 65173
#define DBConsts_SBcdFieldRangeError 65174
#define DBConsts_SInvalidIntegerValue 65175
#define DBConsts_SInvalidBoolValue 65176
#define DBConsts_SInvalidFloatValue 65177
#define DBConsts_SFieldTypeMismatch 65178
#define DBConsts_SFieldSizeMismatch 65179
#define DBConsts_SInvalidVarByteArray 65180
#define DBConsts_SFieldOutOfRange 65181
#define DBConsts_SFieldRequired 65182
#define DBConsts_SDataSetMissing 65183
#define ppSt2DBarC_StEBadBarHeight 65184
#define ppSt2DBarC_StEBadBarHeightToWidth 65185
#define ppSt2DBarC_StEBadBarWidth 65186
#define ppSt2DBarC_StEBadNumCols 65187
#define ppSt2DBarC_StEBadNumRows 65188
#define ppSt2DBarC_StEBadPostalCode 65189
#define ppSt2DBarC_StEBadQuietZone 65190
#define ppSt2DBarC_StECodeTooLarge 65191
#define ppSt2DBarC_StEGLIOutOfRange 65192
#define ppSt2DBarC_StEInvalidCodeword 65193
#define ppSt2DBarC_StENeedBarHeight 65194
#define ppSt2DBarC_StENeedHorz 65195
#define ppSt2DBarC_StENeedVert 65196
#define DBConsts_SInvalidFieldSize 65197
#define DBConsts_SInvalidFieldKind 65198
#define DBConsts_SUnknownFieldType 65199
#define LocConst_ErrNewerFileFormat 65200
#define LocConst_ErrInvalidNativeDLL 65201
#define LocConst_ErrInvalidLocStorage 65202
#define LocConst_ErrSAVEDLL 65203
#define LocConst_ErrInvalidIndex 65204
#define kcompress_SSourceNotDefined 65205
#define kcompress_SDestNotDefined 65206
#define kcompress_SWrongStreamFormat 65207
#define ppTB2Consts_ppSTBToolbarIndexOutOfBounds 65208
#define ppTB2Consts_ppSTBToolbarItemReinserted 65209
#define ppTB2Consts_ppSTBViewerNotFound 65210
#define ppTB2Consts_ppSTBChevronItemMoreButtonsHint 65211
#define ppTB2Consts_ppSTBMRUListItemDefCaption 65212
#define ppTB2Consts_ppSTBDockParentNotAllowed 65213
#define ppTB2Consts_ppSTBDockCannotChangePosition 65214
#define ppZLib_sInvalidStreamOp 65215
#define LocConst_ErrNotIntitialized 65216
#define LocConst_ErrLanguageNotFound 65217
#define LocConst_ErrFileDelete 65218
#define LocConst_ErrInvalidResource 65219
#define LocConst_ErrCantFindRCDATA 65220
#define LocConst_ErrCanNotOpenFile 65221
#define LocConst_ErrMapViewFailed 65222
#define LocConst_ErrUnrecognizedFormat 65223
#define LocConst_ErrNotPEFile 65224
#define LocConst_ErrNoResources 65225
#define LocConst_ErrItemNotList 65226
#define LocConst_ErrAddLanguage 65227
#define LocConst_ErrRemoveLanguage 65228
#define LocConst_ErrEmptyDictionary 65229
#define LocConst_ErrFileNotExist 65230
#define LocConst_ErrInvalidFileFormat 65231
#define ComStrs_sInsertError 65232
#define ComStrs_sInvalidOwner 65233
#define ComStrs_sRichEditInsertError 65234
#define ComStrs_sRichEditLoadFail 65235
#define ComStrs_sRichEditSaveFail 65236
#define ComStrs_sUDAssociated 65237
#define ComStrs_sPageIndexError 65238
#define ComStrs_sInvalidComCtl32 65239
#define ComStrs_sDateTimeMax 65240
#define ComStrs_sDateTimeMin 65241
#define ComStrs_sNeedAllowNone 65242
#define ComStrs_sFailSetCalDateTime 65243
#define ComStrs_sFailSetCalMaxSelRange 65244
#define ComStrs_sFailSetCalMinMaxRange 65245
#define ComStrs_sFailsetCalSelRange 65246
#define LocConst_ErrLangFileNotFound 65247
#define Consts_SMultiSelectRequired 65248
#define Consts_SSeparator 65249
#define Consts_SErrorSettingCount 65250
#define Consts_SListBoxMustBeVirtual 65251
#define HelpIntfs_hNoTableOfContents 65252
#define HelpIntfs_hNothingFound 65253
#define HelpIntfs_hNoContext 65254
#define HelpIntfs_hNoTopics 65255
#define ComStrs_sTabFailClear 65256
#define ComStrs_sTabFailDelete 65257
#define ComStrs_sTabFailRetrieve 65258
#define ComStrs_sTabFailGetObject 65259
#define ComStrs_sTabFailSet 65260
#define ComStrs_sTabFailSetObject 65261
#define ComStrs_sTabMustBeMultiLine 65262
#define ComStrs_sInvalidIndex 65263
#define Consts_SInsertLineError 65264
#define Consts_SInvalidClipFmt 65265
#define Consts_SIconToClipboard 65266
#define Consts_SCannotOpenClipboard 65267
#define Consts_SDefault 65268
#define Consts_SInvalidMemoSize 65269
#define Consts_SInvalidPrinterOp 65270
#define Consts_SNoDefaultPrinter 65271
#define Consts_SDuplicateMenus 65272
#define Consts_SPictureLabel 65273
#define Consts_SPictureDesc 65274
#define Consts_SPreviewLabel 65275
#define Consts_SDockedCtlNeedsName 65276
#define Consts_SDockTreeRemoveError 65277
#define Consts_SDockZoneNotFound 65278
#define Consts_SDockZoneHasNoCtl 65279
#define Consts_SmkcPgUp 65280
#define Consts_SmkcPgDn 65281
#define Consts_SmkcEnd 65282
#define Consts_SmkcHome 65283
#define Consts_SmkcLeft 65284
#define Consts_SmkcUp 65285
#define Consts_SmkcRight 65286
#define Consts_SmkcDown 65287
#define Consts_SmkcIns 65288
#define Consts_SmkcDel 65289
#define Consts_SmkcShift 65290
#define Consts_SmkcCtrl 65291
#define Consts_SmkcAlt 65292
#define Consts_srNone 65293
#define Consts_SOutOfRange 65294
#define Consts_sAllFilter 65295
#define Consts_SMsgDlgYes 65296
#define Consts_SMsgDlgNo 65297
#define Consts_SMsgDlgOK 65298
#define Consts_SMsgDlgCancel 65299
#define Consts_SMsgDlgHelp 65300
#define Consts_SMsgDlgAbort 65301
#define Consts_SMsgDlgRetry 65302
#define Consts_SMsgDlgIgnore 65303
#define Consts_SMsgDlgAll 65304
#define Consts_SMsgDlgNoToAll 65305
#define Consts_SMsgDlgYesToAll 65306
#define Consts_SmkcBkSp 65307
#define Consts_SmkcTab 65308
#define Consts_SmkcEsc 65309
#define Consts_SmkcEnter 65310
#define Consts_SmkcSpace 65311
#define Consts_SCloseButton 65312
#define Consts_SIgnoreButton 65313
#define Consts_SRetryButton 65314
#define Consts_SAbortButton 65315
#define Consts_SAllButton 65316
#define Consts_SCannotDragForm 65317
#define Consts_SVMetafiles 65318
#define Consts_SVEnhMetafiles 65319
#define Consts_SVIcons 65320
#define Consts_SVBitmaps 65321
#define Consts_SMaskErr 65322
#define Consts_SMaskEditErr 65323
#define Consts_SMsgDlgWarning 65324
#define Consts_SMsgDlgError 65325
#define Consts_SMsgDlgInformation 65326
#define Consts_SMsgDlgConfirm 65327
#define Consts_SMenuIndexError 65328
#define Consts_SMenuReinserted 65329
#define Consts_SMenuNotFound 65330
#define Consts_SNoTimers 65331
#define Consts_SNotPrinting 65332
#define Consts_SPrinting 65333
#define Consts_SInvalidPrinter 65334
#define Consts_SDeviceOnPort 65335
#define Consts_SGroupIndexTooLow 65336
#define Consts_SNoMDIForm 65337
#define Consts_SControlParentSetToSelf 65338
#define Consts_SOKButton 65339
#define Consts_SCancelButton 65340
#define Consts_SYesButton 65341
#define Consts_SNoButton 65342
#define Consts_SHelpButton 65343
#define Consts_SNoCanvasHandle 65344
#define Consts_SInvalidImageSize 65345
#define Consts_SInvalidImageList 65346
#define Consts_SReplaceImage 65347
#define Consts_SImageIndexError 65348
#define Consts_SImageReadFail 65349
#define Consts_SImageWriteFail 65350
#define Consts_SWindowDCError 65351
#define Consts_SWindowClass 65352
#define Consts_SCannotFocus 65353
#define Consts_SParentRequired 65354
#define Consts_SParentGivenNotAParent 65355
#define Consts_SMDIChildNotVisible 65356
#define Consts_SVisibleChanged 65357
#define Consts_SCannotShowModal 65358
#define Consts_SPropertyOutOfRange 65359
#define RTLConsts_SWriteError 65360
#define RTLConsts_SThreadCreateError 65361
#define RTLConsts_SThreadError 65362
#define Consts_SInvalidTabIndex 65363
#define Consts_SInvalidTabPosition 65364
#define Consts_SInvalidTabStyle 65365
#define Consts_SInvalidBitmap 65366
#define Consts_SInvalidIcon 65367
#define Consts_SInvalidMetafile 65368
#define Consts_SInvalidPixelFormat 65369
#define Consts_SInvalidImage 65370
#define Consts_SScanLine 65371
#define Consts_SChangeIconSize 65372
#define Consts_SUnknownExtension 65373
#define Consts_SUnknownClipboardFormat 65374
#define Consts_SOutOfResources 65375
#define RTLConsts_SNumberExpected 65376
#define RTLConsts_SParseError 65377
#define RTLConsts_SPropertyException 65378
#define RTLConsts_SReadError 65379
#define RTLConsts_SReadOnlyProperty 65380
#define RTLConsts_SRegCreateFailed 65381
#define RTLConsts_SRegGetDataFailed 65382
#define RTLConsts_SRegSetDataFailed 65383
#define RTLConsts_SResNotFound 65384
#define RTLConsts_SSeekNotImplemented 65385
#define RTLConsts_SSortedListError 65386
#define RTLConsts_SStringExpected 65387
#define RTLConsts_SSymbolExpected 65388
#define RTLConsts_STooManyDeleted 65389
#define RTLConsts_SUnknownGroup 65390
#define RTLConsts_SUnknownProperty 65391
#define RTLConsts_SInvalidBinary 65392
#define RTLConsts_SInvalidImage 65393
#define RTLConsts_SInvalidName 65394
#define RTLConsts_SInvalidProperty 65395
#define RTLConsts_SInvalidPropertyElement 65396
#define RTLConsts_SInvalidPropertyPath 65397
#define RTLConsts_SInvalidPropertyType 65398
#define RTLConsts_SInvalidPropertyValue 65399
#define RTLConsts_SInvalidRegType 65400
#define RTLConsts_SInvalidString 65401
#define RTLConsts_SInvalidStringGridOp 65402
#define RTLConsts_SLineTooLong 65403
#define RTLConsts_SListCapacityError 65404
#define RTLConsts_SListCountError 65405
#define RTLConsts_SListIndexError 65406
#define RTLConsts_SMemoryStreamError 65407
#define RTLConsts_SCantWriteResourceStreamError 65408
#define RTLConsts_SCharExpected 65409
#define RTLConsts_SCheckSynchronizeError 65410
#define RTLConsts_SClassNotFound 65411
#define RTLConsts_SDuplicateClass 65412
#define RTLConsts_SDuplicateItem 65413
#define RTLConsts_SDuplicateName 65414
#define RTLConsts_SDuplicateString 65415
#define RTLConsts_SFCreateError 65416
#define RTLConsts_SFixedColTooBig 65417
#define RTLConsts_SFixedRowTooBig 65418
#define RTLConsts_SFOpenError 65419
#define RTLConsts_SGridTooLarge 65420
#define RTLConsts_SIdentifierExpected 65421
#define RTLConsts_SIndexOutOfRange 65422
#define RTLConsts_SIniFileWriteError 65423
#define SysConst_SShortDayNameTue 65424
#define SysConst_SShortDayNameWed 65425
#define SysConst_SShortDayNameThu 65426
#define SysConst_SShortDayNameFri 65427
#define SysConst_SShortDayNameSat 65428
#define SysConst_SLongDayNameSun 65429
#define SysConst_SLongDayNameMon 65430
#define SysConst_SLongDayNameTue 65431
#define SysConst_SLongDayNameWed 65432
#define SysConst_SLongDayNameThu 65433
#define SysConst_SLongDayNameFri 65434
#define SysConst_SLongDayNameSat 65435
#define SysConst_SCannotCreateDir 65436
#define RTLConsts_SAncestorNotFound 65437
#define RTLConsts_SAssignError 65438
#define RTLConsts_SBitsIndexError 65439
#define SysConst_SShortMonthNameNov 65440
#define SysConst_SShortMonthNameDec 65441
#define SysConst_SLongMonthNameJan 65442
#define SysConst_SLongMonthNameFeb 65443
#define SysConst_SLongMonthNameMar 65444
#define SysConst_SLongMonthNameApr 65445
#define SysConst_SLongMonthNameMay 65446
#define SysConst_SLongMonthNameJun 65447
#define SysConst_SLongMonthNameJul 65448
#define SysConst_SLongMonthNameAug 65449
#define SysConst_SLongMonthNameSep 65450
#define SysConst_SLongMonthNameOct 65451
#define SysConst_SLongMonthNameNov 65452
#define SysConst_SLongMonthNameDec 65453
#define SysConst_SShortDayNameSun 65454
#define SysConst_SShortDayNameMon 65455
#define SysConst_SAssertError 65456
#define SysConst_SAbstractError 65457
#define SysConst_SModuleAccessViolation 65458
#define SysConst_SOSError 65459
#define SysConst_SUnkOSError 65460
#define SysConst_SNL 65461
#define SysConst_SShortMonthNameJan 65462
#define SysConst_SShortMonthNameFeb 65463
#define SysConst_SShortMonthNameMar 65464
#define SysConst_SShortMonthNameApr 65465
#define SysConst_SShortMonthNameMay 65466
#define SysConst_SShortMonthNameJun 65467
#define SysConst_SShortMonthNameJul 65468
#define SysConst_SShortMonthNameAug 65469
#define SysConst_SShortMonthNameSep 65470
#define SysConst_SShortMonthNameOct 65471
#define SysConst_SVarTypeOutOfRange 65472
#define SysConst_SVarTypeAlreadyUsed 65473
#define SysConst_SVarTypeNotUsable 65474
#define SysConst_SVarTypeTooManyCustom 65475
#define SysConst_SInvalidVarNullOp 65476
#define SysConst_SVarTypeCouldNotConvert 65477
#define SysConst_SVarTypeConvertOverflow 65478
#define SysConst_SVarOverflow 65479
#define SysConst_SVarInvalid 65480
#define SysConst_SVarBadType 65481
#define SysConst_SVarNotImplemented 65482
#define SysConst_SVarUnexpected 65483
#define SysConst_SExternalException 65484
#define SysConst_SAssertionFailed 65485
#define SysConst_SIntfCastError 65486
#define SysConst_SSafecallException 65487
#define SysConst_SOperationAborted 65488
#define SysConst_SException 65489
#define SysConst_SExceptTitle 65490
#define SysConst_SInvalidFormat 65491
#define SysConst_SArgumentMissing 65492
#define SysConst_SDispatchError 65493
#define SysConst_SReadAccess 65494
#define SysConst_SWriteAccess 65495
#define SysConst_SFormatTooLong 65496
#define SysConst_SVarArrayCreate 65497
#define SysConst_SVarArrayBounds 65498
#define SysConst_SVarArrayLocked 65499
#define SysConst_SInvalidVarCast 65500
#define SysConst_SInvalidVarOp 65501
#define SysConst_SInvalidVarOpWithHResult 65502
#define SysConst_SVarNotArray 65503
#define SysConst_SEndOfFile 65504
#define SysConst_SDiskFull 65505
#define SysConst_SInvalidInput 65506
#define SysConst_SDivByZero 65507
#define SysConst_SRangeError 65508
#define SysConst_SIntOverflow 65509
#define SysConst_SInvalidOp 65510
#define SysConst_SZeroDivide 65511
#define SysConst_SOverflow 65512
#define SysConst_SUnderflow 65513
#define SysConst_SInvalidPointer 65514
#define SysConst_SInvalidCast 65515
#define SysConst_SAccessViolation 65516
#define SysConst_SStackOverflow 65517
#define SysConst_SControlC 65518
#define SysConst_SPrivilege 65519
#define SysConst_SInvalidInteger 65520
#define SysConst_SInvalidFloat 65521
#define SysConst_SInvalidDate 65522
#define SysConst_SInvalidTime 65523
#define SysConst_SInvalidDateTime 65524
#define SysConst_SInvalidTimeStamp 65525
#define SysConst_SInvalidGUID 65526
#define SysConst_SInvalidBoolean 65527
#define SysConst_STimeEncodeError 65528
#define SysConst_SDateEncodeError 65529
#define SysConst_SOutOfMemory 65530
#define SysConst_SInOutError 65531
#define SysConst_SFileNotFound 65532
#define SysConst_SInvalidFilename 65533
#define SysConst_STooManyOpenFiles 65534
#define SysConst_SAccessDenied 65535
STRINGTABLE
BEGIN
ppJvInspector_sppJvInspItemInvalidPropValue, "Invalid property value %s."
ppJvInspector_sppJvInspDataNoAccessAs, "Data cannot be accessed as %s."
ppJvInspector_sppJvInspDataNotInit, "Data not initialized."
ppJvInspector_sppJvInspDataNotAssigned, "Data not assigned."
ppJvInspector_sppJvInspDataNoValue, "Data has no value."
ppJvInspector_sppJvInspDataStrTooLong, "String too long."
ppJvInspector_sppJvInspNoGenReg, "Unable to create generic item registration list."
ppJvInspector_sppJvInspPaintNotActive, "Painter is not the active painter of the specified inspector."
ppJvInspector_sppJvInspPaintOnlyUsedOnce, "Inspector painter can only be linked to one inspector."
ppJvInspector_sppJvAssertSetTopIndex, "TppJvCustomInspector.SetTopIndex: unexpected MaxIdx <= -1"
ppJvInspector_sppJvAssertInspectorPainter, "TppJvInspectorCustomCompoundItem.DivideRect: unexpected Inspector.Painter = nil"
ppJvInspector_sppJvAssertDataParent, "TppJvInspectorSetMemberData.New: unexpected ADataParent = nil"
ppJvInspector_sppJvAssertParent, "TppJvInspectorSetMemberData.New: unexpected AParent = nil"
ppJvInspector_sppJvAssertPropInfo, "TppJvInspectorPropData.New: unexpected PropInfo = nil"
ppInspector_sJvInspDataNoSelectionController, "TppInspectorSelectionData - SelectionController is nil"
ppJclResources_ppJclRsRTTITypeKind, "Type kind: "
ppJclResources_ppJclRsRTTIOrdinalType, "Ordinal type: "
ppJclResources_ppJclRsRTTIMinValue, "Min value: "
ppJclResources_ppJclRsRTTIMaxValue, "Max value: "
ppJclResources_ppJclRsRTTINameList, "Names: "
ppJclResources_ppJclRsRTTIUnitName, "Unit name: "
ppJclResources_ppJclRsRTTIBasedOn, "Based on: "
ppJclResources_ppJclRsRTTIFloatType, "Float type: "
ppJvInspector_sppJvInspItemHasParent, "Item already assigned to another parent."
ppJvInspector_sppJvInspItemValueException, "Exception "
ppJvInspector_sppJvInspItemUnInitialized, "(uninitialized)"
ppJvInspector_sppJvInspItemUnassigned, "(unassigned)"
ppJvInspector_sppJvInspItemNoValue, "(no value)"
ppJvInspector_sppJvInspItemNotAChild, "Specified Item is not a child of this item."
ppJvInspector_sppJvInspItemColNotFound, "Specified column does not belong to this compound item."
ppJvInspector_sppJvInspItemItemIsNotCol, "Specified item is not a column of this compound item."
ppSynEditStrConst_ppSynS_AttrPLSQL, "Reserved word (PL/SQL)"
ppSynEditStrConst_ppSynS_AttrReservedWord, "Reserved word"
ppSynEditStrConst_ppSynS_AttrSpace, "Space"
ppSynEditStrConst_ppSynS_AttrSQLPlus, "SQL*Plus command"
ppSynEditStrConst_ppSynS_AttrString, "String"
ppSynEditStrConst_ppSynS_AttrSymbol, "Symbol"
ppSynEditStrConst_ppSynS_AttrTableName, "Table name"
ppSynEditStrConst_ppSynS_AttrVariable, "Variable"
ppSynEditStrConst_ppSynS_FilterSQL, "SQL Files (*.sql)|*.sql"
ppSynEditStrConst_ppSynS_LangSQL, "SQL"
ppJclResources_ppJclRsRTTIValueOutOfRange, "Value out of range (%s)."
ppJclResources_ppJclRsRTTIUnknownIdentifier, "Unknown identifier '%s'."
ppJclResources_ppJclRsRTTIOrdinal, "ordinal="
ppJclResources_ppJclRsRTTITypeError, "???"
ppJclResources_ppJclRsRTTITypeInfoAt, "Type info: %p"
ppJclResources_ppJclRsRTTIName, "Name: "
RBTableGrid_rsTableGrid, "TableGrid"
RBTableGrid_rsDBTableGrid, "DBTableGrid"
RBTableGrid_rsCrossTable, "CrossTable"
RBTableGrid_rsReadCellsError, "Unexpected error when reading cell data."
RBTableGrid_rsUnsupport, "<Unsupport>"
RBCheckBox_rsCheckBox, "CheckBox"
RBCheckBox_rsCheckBoxCaption, "CheckBox Caption"
ppSynEditStrConst_ppSynS_AttrComment, "Comment"
ppSynEditStrConst_ppSYNS_AttrConditionalComment, "Conditional Comment"
ppSynEditStrConst_ppSynS_AttrDataType, "Data type"
ppSynEditStrConst_ppSynS_AttrDefaultPackage, "Default packages"
ppSynEditStrConst_ppSYNS_AttrDelimitedIdentifier, "Delimited Identifier"
ppSynEditStrConst_ppSynS_AttrException, "Exception"
ppSynEditStrConst_ppSynS_AttrFunction, "Function"
ppSynEditStrConst_ppSynS_AttrIdentifier, "Identifier"
ppSynEditStrConst_ppSynS_AttrNumber, "Number"
TXString_SPDFDefaultExtFilter, "PDF files|*.PDF|All files|*.*"
TXString_SPDFDeviceDescription, "PDF File"
TXString_SPRNDeviceName, "PrinterFile"
TXString_SPRNDefaultExt, "PRN"
TXString_SPRNDefaultExtFilter, "Printer File|*.PRN|All files|*.*"
TXString_SPRNDeviceDescription, "Printer File"
ZLibConst_sInvalidStreamOp, "Invalid stream operation"
IdResourceStrings_RSStatusResolving, "Resolving hostname %s."
IdResourceStrings_RSStatusConnecting, "Connecting to %s."
IdResourceStrings_RSStatusConnected, "Connected."
IdResourceStrings_RSStatusDisconnecting, "Disconnecting from %s."
IdResourceStrings_RSStatusDisconnected, "Not connected."
IdResourceStrings_RSStatusText, "%s"
IdResourceStrings_RSCoderNoTableEntryNotFound, "Coding table entry not found."
IdResourceStrings_RSTIdMessagePartCreate, "TIdMessagePart can not be created. Use descendant classes. "
RBTableGrid_rsGridPack, "Grid Pack"
TXString_SBMPDefaultExtFilter, "BMP files|*.BMP|JPEG files|*.JPG|TIFF files|*.TIF|WMF files|*.WMF"
TXString_SBMPDeviceDescription, "Graphic File"
TXString_SXTMDeviceName, "XHTMLFile"
TXString_SXTMDefaultExt, "HTM"
TXString_SXTMDefaultExtFilter, "XHTML files|*.HTM|All files|*.*"
TXString_SXTMDeviceDescription, "XHTML File"
TXString_SHTMDeviceName, "HTMLFile"
TXString_SHTMDefaultExt, "HTM"
TXString_SHTMDefaultExtFilter, "HTML files|*.HTM|All files|*.*"
TXString_SHTMDeviceDescription, "HTML File"
TXString_SRTFDeviceName, "RTFFile"
TXString_SRTFDefaultExt, "RTF"
TXString_SRTFDefaultExtFilter, "RTF files|*.RTF|All files|*.*"
TXString_SRTFDeviceDescription, "RTF File"
TXString_SPDFDeviceName, "PDFFile"
TXString_SPDFDefaultExt, "PDF"
JConsts_sJPEGError, "JPEG error #%d"
JConsts_sJPEGImageFile, "JPEG Image File"
TXString_SWK1DeviceName, "LotusFile"
TXString_SWK1DefaultExt, "WK1"
TXString_SWK1DefaultExtFilter, "123 files|*.WK1|All files|*.*"
TXString_SWK1DeviceDescription, "Lotus File"
TXString_SWQ1DeviceName, "QuattroFile"
TXString_SWQ1DefaultExt, "WQ1"
TXString_SWQ1DefaultExtFilter, "Quattro files|*.WQ1|All files|*.*"
TXString_SWQ1DeviceDescription, "Quattro File"
TXString_SXLSDeviceName, "ExcelFile"
TXString_SXLSDefaultExt, "XLS"
TXString_SXLSDefaultExtFilter, "Excel files|*.XLS|All files|*.*"
TXString_SXLSDeviceDescription, "Excel File"
TXString_SBMPDeviceName, "GraphicFile"
TXString_SBMPDefaultExt, "BMP"
ADOConst_SInvalidEnumValue, "Invalid Enum Value"
ADOConst_SMissingConnection, "Missing Connection or ConnectionString"
ADOConst_SNoDetailFilter, "Filter property cannot be used for detail tables"
ADOConst_SBookmarksRequired, "Dataset does not support bookmarks, which are required for multi-record data controls"
ADOConst_SMissingCommandText, "Missing %s property"
ADOConst_SNoResultSet, "CommandText does not return a result set"
ADOConst_SADOCreateError, "Error creating object. Please verify that the Microsoft Data Access Components 2.1 (or later) have been properly installed"
ADOConst_SEventsNotSupported, "Events are not supported with server side TableDirect cursors"
ADOConst_SUsupportedFieldType, "Unsupported field type (%s) in field %s"
ADOConst_SConnectionRequired, "A connection component is required for async ExecuteOptions"
ADOConst_SCantRequery, "Cannot perform a requery after connection has changed"
ADOConst_SNoFilterOptions, "FilterOptions are not supported"
ADOConst_SRecordsetNotOpen, "Recordset is not open"
ADODB_sNameAttr, "Name"
ADODB_sValueAttr, "Value"
JConsts_sChangeJPGSize, "Cannot change the size of a JPEG image"
VDBConsts_SFirstRecord, "First record"
VDBConsts_SPriorRecord, "Prior record"
VDBConsts_SNextRecord, "Next record"
VDBConsts_SLastRecord, "Last record"
VDBConsts_SInsertRecord, "Insert record"
VDBConsts_SDeleteRecord, "Delete record"
VDBConsts_SEditRecord, "Edit record"
VDBConsts_SPostEdit, "Post edit"
VDBConsts_SCancelEdit, "Cancel edit"
VDBConsts_SRefreshRecord, "Refresh data"
VDBConsts_SDeleteRecordQuestion, "Delete record?"
VDBConsts_SDeleteMultipleRecordsQuestion, "Delete all selected records?"
VDBConsts_SDataSourceFixed, "Operation not allowed in a DBCtrlGrid"
VDBConsts_SPropDefByLookup, "Property already defined by lookup field"
VDBConsts_STooManyColumns, "Grid requested to display more than 256 columns"
VDBConsts_SRemoteLogin, "Remote Login"
DBConsts_SInvalidVersion, "Unable to load bind parameters"
DBConsts_SBadFieldType, "Field '%s' is of an unsupported type"
DBConsts_SProviderSQLNotSupported, "SQL not supported: %s"
DBConsts_SProviderExecuteNotSupported, "Execute not supported: %s"
DBConsts_SDataSetUnidirectional, "Operation not allowed on a unidirectional dataset"
DBConsts_SUnassignedVar, "Unassigned variant value"
DBConsts_SRecordNotFound, "Record not found"
DBConsts_SBcdOverflow, "BCD overflow"
DBConsts_SInvalidBcdValue, "%s is not a valid BCD value"
DBConsts_SInvalidFormatType, "Invalid format type for BCD"
DBConsts_SCouldNotParseTimeStamp, "Could not parse SQL TimeStamp string"
DBConsts_SInvalidSqlTimeStamp, "Invalid SQL date/time values"
ComConst_SOleError, "OLE error %.8x"
ComConst_SNoMethod, "Method '%s' not supported by automation object"
ComConst_SVarNotObject, "Variant does not reference an automation object"
ComConst_STooManyParams, "Dispatch methods do not support more than 64 parameters"
DBConsts_SInvalidCalcType, "Field '%s' cannot be a calculated or lookup field"
DBConsts_SFieldReadOnly, "Field '%s' cannot be modified"
DBConsts_SNoIndexForFields, "No index for fields '%s'"
DBConsts_SIndexNotFound, "Index '%s' not found"
DBConsts_SCircularDataLink, "Circular datalinks are not allowed"
DBConsts_SLookupInfoError, "Lookup information for field '%s' is incomplete"
DBConsts_SDataSourceChange, "DataSource cannot be changed"
DBConsts_SDataSetOpen, "Cannot perform this operation on an open dataset"
DBConsts_SNotEditing, "Dataset not in edit or insert mode"
DBConsts_SDataSetClosed, "Cannot perform this operation on a closed dataset"
DBConsts_SDataSetEmpty, "Cannot perform this operation on an empty dataset"
DBConsts_SDataSetReadOnly, "Cannot modify a read-only dataset"
DBConsts_SNestedDataSetClass, "Nested dataset must inherit from %s"
DBConsts_STextFalse, "False"
DBConsts_STextTrue, "True"
DBConsts_SParameterNotFound, "Parameter '%s' not found"
DBConsts_SFieldNameMissing, "Field name missing"
DBConsts_SDuplicateFieldName, "Duplicate field name '%s'"
DBConsts_SFieldNotFound, "Field '%s' not found"
DBConsts_SFieldAccessError, "Cannot access field '%s' as type %s"
DBConsts_SFieldValueError, "Invalid value for field '%s'"
DBConsts_SFieldRangeError, "%g is not a valid value for field '%s'. The allowed range is %g to %g"
DBConsts_SBcdFieldRangeError, "%s is not a valid value for field '%s'. The allowed range is %s to %s"
DBConsts_SInvalidIntegerValue, "'%s' is not a valid integer value for field '%s'"
DBConsts_SInvalidBoolValue, "'%s' is not a valid boolean value for field '%s'"
DBConsts_SInvalidFloatValue, "'%s' is not a valid floating point value for field '%s'"
DBConsts_SFieldTypeMismatch, "Type mismatch for field '%s', expecting: %s actual: %s"
DBConsts_SFieldSizeMismatch, "Size mismatch for field '%s', expecting: %d actual: %d"
DBConsts_SInvalidVarByteArray, "Invalid variant type or size for field '%s'"
DBConsts_SFieldOutOfRange, "Value of field '%s' is out of range"
DBConsts_SFieldRequired, "Field '%s' must have a value"
DBConsts_SDataSetMissing, "Field '%s' has no dataset"
ppSt2DBarC_StEBadBarHeight, "Bar Height cannot be less than one"
ppSt2DBarC_StEBadBarHeightToWidth, "BarHeightToWidth cannot be less than one"
ppSt2DBarC_StEBadBarWidth, "Bar Width cannot be less than one"
ppSt2DBarC_StEBadNumCols, "Invalid Number of columns"
ppSt2DBarC_StEBadNumRows, "Invalid number of rows"
ppSt2DBarC_StEBadPostalCode, "Invalid Postal Code"
ppSt2DBarC_StEBadQuietZone, "Invalid Quiet Zone"
ppSt2DBarC_StECodeTooLarge, "Code too large for barcode"
ppSt2DBarC_StEGLIOutOfRange, "GLI value out of range"
ppSt2DBarC_StEInvalidCodeword, "Invalid Codeword"
ppSt2DBarC_StENeedBarHeight, "Either BarHeight or BarHeightToWidth is required"
ppSt2DBarC_StENeedHorz, "Horizontal size needs to be specified"
ppSt2DBarC_StENeedVert, "Vertical size needs to be specified"
DBConsts_SInvalidFieldSize, "Invalid field size"
DBConsts_SInvalidFieldKind, "Invalid FieldKind"
DBConsts_SUnknownFieldType, "Field '%s' is of an unknown type"
LocConst_ErrNewerFileFormat, "The language file can not be read. You need to download the latest Language Manager"
LocConst_ErrInvalidNativeDLL, "Can't create DLL. The native DLL is invalid"
LocConst_ErrInvalidLocStorage, "Invalid LocStorage"
LocConst_ErrSAVEDLL, "Error saving language DLL"
LocConst_ErrInvalidIndex, "Invalid index"
kcompress_SSourceNotDefined, "Source stream is not defined"
kcompress_SDestNotDefined, "Destination stream is not defined"
kcompress_SWrongStreamFormat, "Wrong stream format"
ppTB2Consts_ppSTBToolbarIndexOutOfBounds, "Toolbar item index out of range"
ppTB2Consts_ppSTBToolbarItemReinserted, "Toolbar item already inserted"
ppTB2Consts_ppSTBViewerNotFound, "An item viewer associated the specified item could not be found"
ppTB2Consts_ppSTBChevronItemMoreButtonsHint, "More Buttons|"
ppTB2Consts_ppSTBMRUListItemDefCaption, "(MRU List)"
ppTB2Consts_ppSTBDockParentNotAllowed, "A TTBDock control cannot be placed inside a tool window or another TTBDock"
ppTB2Consts_ppSTBDockCannotChangePosition, "Cannot change Position of a TTBDock if it already contains controls"
ppZLib_sInvalidStreamOp, "Invalid stream operation"
LocConst_ErrNotIntitialized, "Localizer is not initialized"
LocConst_ErrLanguageNotFound, "Language \"%s\" is not found"
LocConst_ErrFileDelete, "Can not delete file \"%s\""
LocConst_ErrInvalidResource, "Invalid KLANGS resource"
LocConst_ErrCantFindRCDATA, "Can't find RCDATA block"
LocConst_ErrCanNotOpenFile, "Couldn't open file: %s"
LocConst_ErrMapViewFailed, "MapViewOfFile failed"
LocConst_ErrUnrecognizedFormat, "Unrecognized file format"
LocConst_ErrNotPEFile, "Not a PE (WIN32 Executable) file"
LocConst_ErrNoResources, "No resources in this file."
LocConst_ErrItemNotList, "ResourceItem is not a list"
LocConst_ErrAddLanguage, "Could not add language"
LocConst_ErrRemoveLanguage, "Could not remove language"
LocConst_ErrEmptyDictionary, "Empty dictionary"
LocConst_ErrFileNotExist, "File does not exist"
LocConst_ErrInvalidFileFormat, "Invalid file format"
ComStrs_sInsertError, "Unable to insert an item"
ComStrs_sInvalidOwner, "Invalid owner"
ComStrs_sRichEditInsertError, "RichEdit line insertion error"
ComStrs_sRichEditLoadFail, "Failed to Load Stream"
ComStrs_sRichEditSaveFail, "Failed to Save Stream"
ComStrs_sUDAssociated, "%s is already associated with %s"
ComStrs_sPageIndexError, "%d is an invalid PageIndex value. PageIndex must be between 0 and %d"
ComStrs_sInvalidComCtl32, "This control requires version 4.70 or greater of COMCTL32.DLL"
ComStrs_sDateTimeMax, "Date exceeds maximum of %s"
ComStrs_sDateTimeMin, "Date is less than minimum of %s"
ComStrs_sNeedAllowNone, "You must be in ShowCheckbox mode to set to this date"
ComStrs_sFailSetCalDateTime, "Failed to set calendar date or time"
ComStrs_sFailSetCalMaxSelRange, "Failed to set maximum selection range"
ComStrs_sFailSetCalMinMaxRange, "Failed to set calendar min/max range"
ComStrs_sFailsetCalSelRange, "Failed to set calendar selected range"
LocConst_ErrLangFileNotFound, "Language file \"%s\" is not found"
Consts_SMultiSelectRequired, "Multiselect mode must be on for this feature"
Consts_SSeparator, "Separator"
Consts_SErrorSettingCount, "Error setting %s.Count"
Consts_SListBoxMustBeVirtual, "Listbox (%s) style must be virtual in order to set Count"
HelpIntfs_hNoTableOfContents, "Unable to find a Table of Contents"
HelpIntfs_hNothingFound, "No help found for %s"
HelpIntfs_hNoContext, "No context-sensitive help installed"
HelpIntfs_hNoTopics, "No topic-based help system installed"
ComStrs_sTabFailClear, "Failed to clear tab control"
ComStrs_sTabFailDelete, "Failed to delete tab at index %d"
ComStrs_sTabFailRetrieve, "Failed to retrieve tab at index %d"
ComStrs_sTabFailGetObject, "Failed to get object at index %d"
ComStrs_sTabFailSet, "Failed to set tab \"%s\" at index %d"
ComStrs_sTabFailSetObject, "Failed to set object at index %d"
ComStrs_sTabMustBeMultiLine, "MultiLine must be True when TabPosition is tpLeft or tpRight"
ComStrs_sInvalidIndex, "Invalid index"
Consts_SInsertLineError, "Unable to insert a line"
Consts_SInvalidClipFmt, "Invalid clipboard format"
Consts_SIconToClipboard, "Clipboard does not support Icons"
Consts_SCannotOpenClipboard, "Cannot open clipboard"
Consts_SDefault, "Default"
Consts_SInvalidMemoSize, "Text exceeds memo capacity"
Consts_SInvalidPrinterOp, "Operation not supported on selected printer"
Consts_SNoDefaultPrinter, "There is no default printer currently selected"
Consts_SDuplicateMenus, "Menu '%s' is already being used by another form"
Consts_SPictureLabel, "Picture:"
Consts_SPictureDesc, " (%dx%d)"
Consts_SPreviewLabel, "Preview"
Consts_SDockedCtlNeedsName, "Docked control must have a name"
Consts_SDockTreeRemoveError, "Error removing control from dock tree"
Consts_SDockZoneNotFound, " - Dock zone not found"
Consts_SDockZoneHasNoCtl, " - Dock zone has no control"
Consts_SmkcPgUp, "PgUp"
Consts_SmkcPgDn, "PgDn"
Consts_SmkcEnd, "End"
Consts_SmkcHome, "Home"
Consts_SmkcLeft, "Left"
Consts_SmkcUp, "Up"
Consts_SmkcRight, "Right"
Consts_SmkcDown, "Down"
Consts_SmkcIns, "Ins"
Consts_SmkcDel, "Del"
Consts_SmkcShift, "Shift+"
Consts_SmkcCtrl, "Ctrl+"
Consts_SmkcAlt, "Alt+"
Consts_srNone, "(None)"
Consts_SOutOfRange, "Value must be between %d and %d"
Consts_sAllFilter, "All"
Consts_SMsgDlgYes, "&Yes"
Consts_SMsgDlgNo, "&No"
Consts_SMsgDlgOK, "OK"
Consts_SMsgDlgCancel, "Cancel"
Consts_SMsgDlgHelp, "&Help"
Consts_SMsgDlgAbort, "&Abort"
Consts_SMsgDlgRetry, "&Retry"
Consts_SMsgDlgIgnore, "&Ignore"
Consts_SMsgDlgAll, "&All"
Consts_SMsgDlgNoToAll, "N&o to All"
Consts_SMsgDlgYesToAll, "Yes to &All"
Consts_SmkcBkSp, "BkSp"
Consts_SmkcTab, "Tab"
Consts_SmkcEsc, "Esc"
Consts_SmkcEnter, "Enter"
Consts_SmkcSpace, "Space"
Consts_SCloseButton, "&Close"
Consts_SIgnoreButton, "&Ignore"
Consts_SRetryButton, "&Retry"
Consts_SAbortButton, "Abort"
Consts_SAllButton, "&All"
Consts_SCannotDragForm, "Cannot drag a form"
Consts_SVMetafiles, "Metafiles"
Consts_SVEnhMetafiles, "Enhanced Metafiles"
Consts_SVIcons, "Icons"
Consts_SVBitmaps, "Bitmaps"
Consts_SMaskErr, "Invalid input value"
Consts_SMaskEditErr, "Invalid input value. Use escape key to abandon changes"
Consts_SMsgDlgWarning, "Warning"
Consts_SMsgDlgError, "Error"
Consts_SMsgDlgInformation, "Information"
Consts_SMsgDlgConfirm, "Confirm"
Consts_SMenuIndexError, "Menu index out of range"
Consts_SMenuReinserted, "Menu inserted twice"
Consts_SMenuNotFound, "Sub-menu is not in menu"
Consts_SNoTimers, "Not enough timers available"
Consts_SNotPrinting, "Printer is not currently printing"
Consts_SPrinting, "Printing in progress"
Consts_SInvalidPrinter, "Printer selected is not valid"
Consts_SDeviceOnPort, "%s on %s"
Consts_SGroupIndexTooLow, "GroupIndex cannot be less than a previous menu item's GroupIndex"
Consts_SNoMDIForm, "Cannot create form. No MDI forms are currently active"
Consts_SControlParentSetToSelf, "A control cannot have itself as its parent"
Consts_SOKButton, "OK"
Consts_SCancelButton, "Cancel"
Consts_SYesButton, "&Yes"
Consts_SNoButton, "&No"
Consts_SHelpButton, "&Help"
Consts_SNoCanvasHandle, "Canvas does not allow drawing"
Consts_SInvalidImageSize, "Invalid image size"
Consts_SInvalidImageList, "Invalid ImageList"
Consts_SReplaceImage, "Unable to Replace Image"
Consts_SImageIndexError, "Invalid ImageList Index"
Consts_SImageReadFail, "Failed to read ImageList data from stream"
Consts_SImageWriteFail, "Failed to write ImageList data to stream"
Consts_SWindowDCError, "Error creating window device context"
Consts_SWindowClass, "Error creating window class"
Consts_SCannotFocus, "Cannot focus a disabled or invisible window"
Consts_SParentRequired, "Control '%s' has no parent window"
Consts_SParentGivenNotAParent, "Parent given is not a parent of '%s'"
Consts_SMDIChildNotVisible, "Cannot hide an MDI Child Form"
Consts_SVisibleChanged, "Cannot change Visible in OnShow or OnHide"
Consts_SCannotShowModal, "Cannot make a visible window modal"
Consts_SPropertyOutOfRange, "%s property out of range"
RTLConsts_SWriteError, "Stream write error"
RTLConsts_SThreadCreateError, "Thread creation error: %s"
RTLConsts_SThreadError, "Thread Error: %s (%d)"
Consts_SInvalidTabIndex, "Tab index out of bounds"
Consts_SInvalidTabPosition, "Tab position incompatible with current tab style"
Consts_SInvalidTabStyle, "Tab style incompatible with current tab position"
Consts_SInvalidBitmap, "Bitmap image is not valid"
Consts_SInvalidIcon, "Icon image is not valid"
Consts_SInvalidMetafile, "Metafile is not valid"
Consts_SInvalidPixelFormat, "Invalid pixel format"
Consts_SInvalidImage, "Invalid image"
Consts_SScanLine, "Scan line index out of range"
Consts_SChangeIconSize, "Cannot change the size of an icon"
Consts_SUnknownExtension, "Unknown picture file extension (.%s)"
Consts_SUnknownClipboardFormat, "Unsupported clipboard format"
Consts_SOutOfResources, "Out of system resources"
RTLConsts_SNumberExpected, "Number expected"
RTLConsts_SParseError, "%s on line %d"
RTLConsts_SPropertyException, "Error reading %s%s%s: %s"
RTLConsts_SReadError, "Stream read error"
RTLConsts_SReadOnlyProperty, "Property is read-only"
RTLConsts_SRegCreateFailed, "Failed to create key %s"
RTLConsts_SRegGetDataFailed, "Failed to get data for '%s'"
RTLConsts_SRegSetDataFailed, "Failed to set data for '%s'"
RTLConsts_SResNotFound, "Resource %s not found"
RTLConsts_SSeekNotImplemented, "%s.Seek not implemented"
RTLConsts_SSortedListError, "Operation not allowed on sorted list"
RTLConsts_SStringExpected, "String expected"
RTLConsts_SSymbolExpected, "%s expected"
RTLConsts_STooManyDeleted, "Too many rows or columns deleted"
RTLConsts_SUnknownGroup, "%s not in a class registration group"
RTLConsts_SUnknownProperty, "Property %s does not exist"
RTLConsts_SInvalidBinary, "Invalid binary value"
RTLConsts_SInvalidImage, "Invalid stream format"
RTLConsts_SInvalidName, "''%s'' is not a valid component name"
RTLConsts_SInvalidProperty, "Invalid property value"
RTLConsts_SInvalidPropertyElement, "Invalid property element: %s"
RTLConsts_SInvalidPropertyPath, "Invalid property path"
RTLConsts_SInvalidPropertyType, "Invalid property type: %s"
RTLConsts_SInvalidPropertyValue, "Invalid property value"
RTLConsts_SInvalidRegType, "Invalid data type for '%s'"
RTLConsts_SInvalidString, "Invalid string constant"
RTLConsts_SInvalidStringGridOp, "Cannot insert or delete rows from grid"
RTLConsts_SLineTooLong, "Line too long"
RTLConsts_SListCapacityError, "List capacity out of bounds (%d)"
RTLConsts_SListCountError, "List count out of bounds (%d)"
RTLConsts_SListIndexError, "List index out of bounds (%d)"
RTLConsts_SMemoryStreamError, "Out of memory while expanding memory stream"
RTLConsts_SCantWriteResourceStreamError, "Can't write to a read-only resource stream"
RTLConsts_SCharExpected, "''%s'' expected"
RTLConsts_SCheckSynchronizeError, "CheckSynchronize called from thread $%x, which is NOT the main thread"
RTLConsts_SClassNotFound, "Class %s not found"
RTLConsts_SDuplicateClass, "A class named %s already exists"
RTLConsts_SDuplicateItem, "List does not allow duplicates ($0%x)"
RTLConsts_SDuplicateName, "A component named %s already exists"
RTLConsts_SDuplicateString, "String list does not allow duplicates"
RTLConsts_SFCreateError, "Cannot create file %s"
RTLConsts_SFixedColTooBig, "Fixed column count must be less than column count"
RTLConsts_SFixedRowTooBig, "Fixed row count must be less than row count"
RTLConsts_SFOpenError, "Cannot open file %s"
RTLConsts_SGridTooLarge, "Grid too large for operation"
RTLConsts_SIdentifierExpected, "Identifier expected"
RTLConsts_SIndexOutOfRange, "Grid index out of range"
RTLConsts_SIniFileWriteError, "Unable to write to %s"
SysConst_SShortDayNameTue, "Tue"
SysConst_SShortDayNameWed, "Wed"
SysConst_SShortDayNameThu, "Thu"
SysConst_SShortDayNameFri, "Fri"
SysConst_SShortDayNameSat, "Sat"
SysConst_SLongDayNameSun, "Sunday"
SysConst_SLongDayNameMon, "Monday"
SysConst_SLongDayNameTue, "Tuesday"
SysConst_SLongDayNameWed, "Wednesday"
SysConst_SLongDayNameThu, "Thursday"
SysConst_SLongDayNameFri, "Friday"
SysConst_SLongDayNameSat, "Saturday"
SysConst_SCannotCreateDir, "Unable to create directory"
RTLConsts_SAncestorNotFound, "Ancestor for '%s' not found"