-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathAPM.drc
More file actions
1584 lines (1581 loc) · 77 KB
/
APM.drc
File metadata and controls
1584 lines (1581 loc) · 77 KB
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 dxPageControlStrs_sdxPageIndexError 64736
#define ppJvInspector_sppJvInspItemItemIsNotCol 64752
#define ppJvInspector_sppJvInspItemInvalidPropValue 64753
#define ppJvInspector_sppJvInspDataNoAccessAs 64754
#define ppJvInspector_sppJvInspDataNotInit 64755
#define ppJvInspector_sppJvInspDataNotAssigned 64756
#define ppJvInspector_sppJvInspDataNoValue 64757
#define ppJvInspector_sppJvInspDataStrTooLong 64758
#define ppJvInspector_sppJvInspNoGenReg 64759
#define ppJvInspector_sppJvInspPaintNotActive 64760
#define ppJvInspector_sppJvInspPaintOnlyUsedOnce 64761
#define ppJvInspector_sppJvAssertSetTopIndex 64762
#define ppJvInspector_sppJvAssertInspectorPainter 64763
#define ppJvInspector_sppJvAssertDataParent 64764
#define ppJvInspector_sppJvAssertParent 64765
#define ppJvInspector_sppJvAssertPropInfo 64766
#define ppInspector_sJvInspDataNoSelectionController 64767
#define ppJclResources_ppJclRsRTTIName 64768
#define ppJclResources_ppJclRsRTTITypeKind 64769
#define ppJclResources_ppJclRsRTTIOrdinalType 64770
#define ppJclResources_ppJclRsRTTIMinValue 64771
#define ppJclResources_ppJclRsRTTIMaxValue 64772
#define ppJclResources_ppJclRsRTTINameList 64773
#define ppJclResources_ppJclRsRTTIUnitName 64774
#define ppJclResources_ppJclRsRTTIBasedOn 64775
#define ppJclResources_ppJclRsRTTIFloatType 64776
#define ppJvInspector_sppJvInspItemHasParent 64777
#define ppJvInspector_sppJvInspItemValueException 64778
#define ppJvInspector_sppJvInspItemUnInitialized 64779
#define ppJvInspector_sppJvInspItemUnassigned 64780
#define ppJvInspector_sppJvInspItemNoValue 64781
#define ppJvInspector_sppJvInspItemNotAChild 64782
#define ppJvInspector_sppJvInspItemColNotFound 64783
#define ppSt2DBarC_StEBadBarWidth 64784
#define ppSt2DBarC_StEBadNumCols 64785
#define ppSt2DBarC_StEBadNumRows 64786
#define ppSt2DBarC_StEBadPostalCode 64787
#define ppSt2DBarC_StEBadQuietZone 64788
#define ppSt2DBarC_StECodeTooLarge 64789
#define ppSt2DBarC_StEGLIOutOfRange 64790
#define ppSt2DBarC_StEInvalidCodeword 64791
#define ppSt2DBarC_StENeedBarHeight 64792
#define ppSt2DBarC_StENeedHorz 64793
#define ppSt2DBarC_StENeedVert 64794
#define ppJclResources_ppJclRsRTTIValueOutOfRange 64795
#define ppJclResources_ppJclRsRTTIUnknownIdentifier 64796
#define ppJclResources_ppJclRsRTTIOrdinal 64797
#define ppJclResources_ppJclRsRTTITypeError 64798
#define ppJclResources_ppJclRsRTTITypeInfoAt 64799
#define ADOConst_SConnectionRequired 64800
#define ADOConst_SCantRequery 64801
#define ADOConst_SNoFilterOptions 64802
#define ADOConst_SRecordsetNotOpen 64803
#define ADODB_sNameAttr 64804
#define ADODB_sValueAttr 64805
#define ppTB2Consts_ppSTBToolbarIndexOutOfBounds 64806
#define ppTB2Consts_ppSTBToolbarItemReinserted 64807
#define ppTB2Consts_ppSTBViewerNotFound 64808
#define ppTB2Consts_ppSTBChevronItemMoreButtonsHint 64809
#define ppTB2Consts_ppSTBMRUListItemDefCaption 64810
#define ppTB2Consts_ppSTBDockParentNotAllowed 64811
#define ppTB2Consts_ppSTBDockCannotChangePosition 64812
#define ppZLib_sInvalidStreamOp 64813
#define ppSt2DBarC_StEBadBarHeight 64814
#define ppSt2DBarC_StEBadBarHeightToWidth 64815
#define RzBorder_sRzColorInfoText 64816
#define RzBorder_sRzColorInfoBk 64817
#define RzBorder_sRzColorHotLight 64818
#define RzBorder_sRzColorGradientActiveCaption 64819
#define RzBorder_sRzColorGradientInactiveCaption 64820
#define RzBorder_sRzColorMenuHighlight 64821
#define RzBorder_sRzColorMenuBar 64822
#define ADOConst_SInvalidEnumValue 64823
#define ADOConst_SMissingConnection 64824
#define ADOConst_SNoDetailFilter 64825
#define ADOConst_SBookmarksRequired 64826
#define ADOConst_SMissingCommandText 64827
#define ADOConst_SNoResultSet 64828
#define ADOConst_SADOCreateError 64829
#define ADOConst_SEventsNotSupported 64830
#define ADOConst_SUsupportedFieldType 64831
#define RzBorder_sRzColorMenuText 64832
#define RzBorder_sRzColorWindowText 64833
#define RzBorder_sRzColorCaptionText 64834
#define RzBorder_sRzColorActiveBorder 64835
#define RzBorder_sRzColorInactiveBorder 64836
#define RzBorder_sRzColorAppWorkSpace 64837
#define RzBorder_sRzColorHighlight 64838
#define RzBorder_sRzColorHighlightText 64839
#define RzBorder_sRzColorBtnFace 64840
#define RzBorder_sRzColorBtnShadow 64841
#define RzBorder_sRzColorGrayText 64842
#define RzBorder_sRzColorBtnText 64843
#define RzBorder_sRzColorInactiveCaptionText 64844
#define RzBorder_sRzColorBtnHighlight 64845
#define RzBorder_sRzColor3DDkShadow 64846
#define RzBorder_sRzColor3DLight 64847
#define RzBorder_sRzColorGray25 64848
#define RzBorder_sRzColorRose 64849
#define RzBorder_sRzColorTan 64850
#define RzBorder_sRzColorLightYellow 64851
#define RzBorder_sRzColorLightGreen 64852
#define RzBorder_sRzColorLightTurquoise 64853
#define RzBorder_sRzColorPaleBlue 64854
#define RzBorder_sRzColorLavender 64855
#define RzBorder_sRzColorWhite 64856
#define RzBorder_sRzColorScrollBar 64857
#define RzBorder_sRzColorBackground 64858
#define RzBorder_sRzColorActiveCaption 64859
#define RzBorder_sRzColorInactiveCaption 64860
#define RzBorder_sRzColorMenu 64861
#define RzBorder_sRzColorWindow 64862
#define RzBorder_sRzColorWindowFrame 64863
#define RzBorder_sRzColorGray50 64864
#define RzBorder_sRzColorRed 64865
#define RzBorder_sRzColorLightOrange 64866
#define RzBorder_sRzColorLime 64867
#define RzBorder_sRzColorSeaGreen 64868
#define RzBorder_sRzColorAqua 64869
#define RzBorder_sRzColorLightBlue 64870
#define RzBorder_sRzColorViolet 64871
#define RzBorder_sRzColorGray40 64872
#define RzBorder_sRzColorPink 64873
#define RzBorder_sRzColorGold 64874
#define RzBorder_sRzColorYellow 64875
#define RzBorder_sRzColorBrightGreen 64876
#define RzBorder_sRzColorTurquoise 64877
#define RzBorder_sRzColorSkyBlue 64878
#define RzBorder_sRzColorPlum 64879
#define RzPopups_sRzCaptionTodayBtn 64880
#define RzBorder_sRzColorBlack 64881
#define RzBorder_sRzColorBrown 64882
#define RzBorder_sRzColorOliveGreen 64883
#define RzBorder_sRzColorDarkGreen 64884
#define RzBorder_sRzColorDarkTeal 64885
#define RzBorder_sRzColorDarkBlue 64886
#define RzBorder_sRzColorIndigo 64887
#define RzBorder_sRzColorGray80 64888
#define RzBorder_sRzColorDarkRed 64889
#define RzBorder_sRzColorOrange 64890
#define RzBorder_sRzColorDarkYellow 64891
#define RzBorder_sRzColorGreen 64892
#define RzBorder_sRzColorTeal 64893
#define RzBorder_sRzColorBlue 64894
#define RzBorder_sRzColorBlueGray 64895
#define cxFilterControlStrs_cxSFilterControlDialogActionCancelCaption 64896
#define cxFilterControlStrs_cxSFilterControlDialogFileExt 64897
#define cxFilterControlStrs_cxSFilterControlDialogFileFilter 64898
#define cxGridStrs_scxGridDeletingConfirmationCaption 64899
#define cxGridStrs_scxGridDeletingFocusedConfirmationText 64900
#define cxGridStrs_scxGridDeletingSelectedConfirmationText 64901
#define cxGridStrs_scxGridFilterIsEmpty 64902
#define cxGridStrs_scxGridCustomizationFormCaption 64903
#define cxGridStrs_scxGridCustomizationFormColumnsPageCaption 64904
#define cxGridStrs_scxGridGroupByBoxCaption 64905
#define cxGridStrs_scxGridFilterCustomizeButtonCaption 64906
#define RzPopups_sRzHowToSelectTime 64907
#define RzPopups_sRzCaptionAM 64908
#define RzPopups_sRzCaptionPM 64909
#define RzPopups_sRzCaptionSet 64910
#define RzPopups_sRzCaptionClearBtn 64911
#define cxFilterControlStrs_cxSFilterDialogCaption 64912
#define cxFilterControlStrs_cxSFilterDialogInvalidValue 64913
#define cxFilterControlStrs_cxSFilterDialogUse 64914
#define cxFilterControlStrs_cxSFilterDialogSingleCharacter 64915
#define cxFilterControlStrs_cxSFilterDialogCharactersSeries 64916
#define cxFilterControlStrs_cxSFilterDialogOperationAnd 64917
#define cxFilterControlStrs_cxSFilterDialogOperationOr 64918
#define cxFilterControlStrs_cxSFilterDialogRows 64919
#define cxFilterControlStrs_cxSFilterControlDialogCaption 64920
#define cxFilterControlStrs_cxSFilterControlDialogNewFile 64921
#define cxFilterControlStrs_cxSFilterControlDialogOpenDialogCaption 64922
#define cxFilterControlStrs_cxSFilterControlDialogSaveDialogCaption 64923
#define cxFilterControlStrs_cxSFilterControlDialogActionSaveCaption 64924
#define cxFilterControlStrs_cxSFilterControlDialogActionOpenCaption 64925
#define cxFilterControlStrs_cxSFilterControlDialogActionApplyCaption 64926
#define cxFilterControlStrs_cxSFilterControlDialogActionOkCaption 64927
#define JConsts_sJPEGError 64928
#define JConsts_sJPEGImageFile 64929
#define cxFilterControlStrs_cxSFilterBoolOperatorAnd 64930
#define cxFilterControlStrs_cxSFilterBoolOperatorOr 64931
#define cxFilterControlStrs_cxSFilterBoolOperatorNotAnd 64932
#define cxFilterControlStrs_cxSFilterBoolOperatorNotOr 64933
#define cxFilterControlStrs_cxSFilterRootButtonCaption 64934
#define cxFilterControlStrs_cxSFilterAddCondition 64935
#define cxFilterControlStrs_cxSFilterAddGroup 64936
#define cxFilterControlStrs_cxSFilterRemoveRow 64937
#define cxFilterControlStrs_cxSFilterClearAll 64938
#define cxFilterControlStrs_cxSFilterFooterAddCondition 64939
#define cxFilterControlStrs_cxSFilterGroupCaption 64940
#define cxFilterControlStrs_cxSFilterRootGroupCaption 64941
#define cxFilterControlStrs_cxSFilterControlNullString 64942
#define cxFilterControlStrs_cxSFilterErrorBuilding 64943
#define cxEditConsts_scxRegExprIllegalSymbol 64944
#define cxEditConsts_scxRegExprIllegalQuantifier 64945
#define cxEditConsts_scxRegExprNotSupportQuantifier 64946
#define cxEditConsts_scxRegExprIllegalIntegerValue 64947
#define cxEditConsts_scxRegExprTooBigReferenceNumber 64948
#define cxEditConsts_scxRegExprCantCreateEmptyEnum 64949
#define cxEditConsts_scxRegExprSubrangeOrder 64950
#define cxEditConsts_scxRegExprHexNumberExpected0 64951
#define cxEditConsts_scxRegExprHexNumberExpected 64952
#define cxEditConsts_scxRegExprMissing 64953
#define cxEditConsts_scxRegExprUnnecessary 64954
#define cxEditConsts_scxRegExprIncorrectSpace 64955
#define cxEditConsts_scxRegExprNotCompiled 64956
#define cxEditConsts_scxMaskEditRegExprError 64957
#define cxEditConsts_scxMaskEditInvalidEditValue 64958
#define JConsts_sChangeJPGSize 64959
#define cxEditConsts_scxSEditRepositoryMaskItem 64960
#define cxEditConsts_scxSEditRepositoryMemoItem 64961
#define cxEditConsts_scxSEditRepositoryMRUItem 64962
#define cxEditConsts_scxSEditRepositoryPopupItem 64963
#define cxEditConsts_scxSEditRepositorySpinItem 64964
#define cxEditConsts_scxSEditRepositoryRadioGroupItem 64965
#define cxEditConsts_scxSEditRepositoryTextItem 64966
#define cxEditConsts_scxSEditRepositoryTimeItem 64967
#define cxEditConsts_scxRegExprLine 64968
#define cxEditConsts_scxRegExprChar 64969
#define cxEditConsts_scxRegExprNotAssignedSourceStream 64970
#define cxEditConsts_scxRegExprEmptySourceStream 64971
#define cxEditConsts_scxRegExprCantUsePlusQuantifier 64972
#define cxEditConsts_scxRegExprCantUseStarQuantifier 64973
#define cxEditConsts_scxRegExprCantCreateEmptyAlt 64974
#define cxEditConsts_scxRegExprCantCreateEmptyBlock 64975
#define cxEditConsts_cxSDateSeventh 64976
#define cxEditConsts_cxSDateBOM 64977
#define cxEditConsts_cxSDateEOM 64978
#define cxEditConsts_cxSDateNow 64979
#define cxEditConsts_scxSCalcError 64980
#define cxEditConsts_scxSEditRepositoryBlobItem 64981
#define cxEditConsts_scxSEditRepositoryButtonItem 64982
#define cxEditConsts_scxSEditRepositoryCalcItem 64983
#define cxEditConsts_scxSEditRepositoryCheckBoxItem 64984
#define cxEditConsts_scxSEditRepositoryComboBoxItem 64985
#define cxEditConsts_scxSEditRepositoryCurrencyItem 64986
#define cxEditConsts_scxSEditRepositoryDateItem 64987
#define cxEditConsts_scxSEditRepositoryHyperLinkItem 64988
#define cxEditConsts_scxSEditRepositoryImageComboBoxItem 64989
#define cxEditConsts_scxSEditRepositoryImageItem 64990
#define cxEditConsts_scxSEditRepositoryLookupComboBoxItem 64991
#define cxEditConsts_cxSDateToday 64992
#define cxEditConsts_cxSDateYesterday 64993
#define cxEditConsts_cxSDateTomorrow 64994
#define cxEditConsts_cxSDateSunday 64995
#define cxEditConsts_cxSDateMonday 64996
#define cxEditConsts_cxSDateTuesday 64997
#define cxEditConsts_cxSDateWednesday 64998
#define cxEditConsts_cxSDateThursday 64999
#define cxEditConsts_cxSDateFriday 65000
#define cxEditConsts_cxSDateSaturday 65001
#define cxEditConsts_cxSDateFirst 65002
#define cxEditConsts_cxSDateSecond 65003
#define cxEditConsts_cxSDateThird 65004
#define cxEditConsts_cxSDateFourth 65005
#define cxEditConsts_cxSDateFifth 65006
#define cxEditConsts_cxSDateSixth 65007
#define cxEditConsts_cxSBlobButtonOK 65008
#define cxEditConsts_cxSBlobButtonCancel 65009
#define cxEditConsts_cxSBlobButtonClose 65010
#define cxEditConsts_cxSBlobMemo 65011
#define cxEditConsts_cxSBlobMemoEmpty 65012
#define cxEditConsts_cxSBlobPicture 65013
#define cxEditConsts_cxSBlobPictureEmpty 65014
#define cxEditConsts_cxSMenuItemCaptionCut 65015
#define cxEditConsts_cxSMenuItemCaptionCopy 65016
#define cxEditConsts_cxSMenuItemCaptionPaste 65017
#define cxEditConsts_cxSMenuItemCaptionDelete 65018
#define cxEditConsts_cxSMenuItemCaptionLoad 65019
#define cxEditConsts_cxSMenuItemCaptionSave 65020
#define cxEditConsts_cxSDatePopupToday 65021
#define cxEditConsts_cxSDatePopupClear 65022
#define cxEditConsts_cxSDateError 65023
#define cxFilterConsts_cxSFilterOperatorContains 65024
#define cxFilterConsts_cxSFilterOperatorDoesNotContain 65025
#define cxFilterConsts_cxSFilterBoxAllCaption 65026
#define cxFilterConsts_cxSFilterBoxCustomCaption 65027
#define cxFilterConsts_cxSFilterBoxBlanksCaption 65028
#define cxFilterConsts_cxSFilterBoxNonBlanksCaption 65029
#define cxEditConsts_cxSEditInvalidRepositoryItem 65030
#define cxEditConsts_cxSEditNumericValueConvertError 65031
#define cxEditConsts_cxSEditPopupCircularReferencingError 65032
#define cxEditConsts_cxSEditTimeConvertError 65033
#define cxEditConsts_cxSEditValidateErrorText 65034
#define cxEditConsts_cxSEditValueOutOfBounds 65035
#define cxEditConsts_cxSEditCheckBoxChecked 65036
#define cxEditConsts_cxSEditCheckBoxGrayed 65037
#define cxEditConsts_cxSEditCheckBoxUnchecked 65038
#define cxEditConsts_cxSRadioGroupDefaultCaption 65039
#define cxFilterConsts_cxSFilterOperatorThisWeek 65040
#define cxFilterConsts_cxSFilterOperatorThisMonth 65041
#define cxFilterConsts_cxSFilterOperatorThisYear 65042
#define cxFilterConsts_cxSFilterOperatorNextWeek 65043
#define cxFilterConsts_cxSFilterOperatorNextMonth 65044
#define cxFilterConsts_cxSFilterOperatorNextYear 65045
#define cxFilterConsts_cxSFilterAndCaption 65046
#define cxFilterConsts_cxSFilterOrCaption 65047
#define cxFilterConsts_cxSFilterNotCaption 65048
#define cxFilterConsts_cxSFilterBlankCaption 65049
#define cxFilterConsts_cxSFilterOperatorIsNull 65050
#define cxFilterConsts_cxSFilterOperatorIsNotNull 65051
#define cxFilterConsts_cxSFilterOperatorBeginsWith 65052
#define cxFilterConsts_cxSFilterOperatorDoesNotBeginWith 65053
#define cxFilterConsts_cxSFilterOperatorEndsWith 65054
#define cxFilterConsts_cxSFilterOperatorDoesNotEndWith 65055
#define cxFilterConsts_cxSFilterOperatorLess 65056
#define cxFilterConsts_cxSFilterOperatorLessEqual 65057
#define cxFilterConsts_cxSFilterOperatorGreater 65058
#define cxFilterConsts_cxSFilterOperatorGreaterEqual 65059
#define cxFilterConsts_cxSFilterOperatorLike 65060
#define cxFilterConsts_cxSFilterOperatorNotLike 65061
#define cxFilterConsts_cxSFilterOperatorBetween 65062
#define cxFilterConsts_cxSFilterOperatorNotBetween 65063
#define cxFilterConsts_cxSFilterOperatorInList 65064
#define cxFilterConsts_cxSFilterOperatorNotInList 65065
#define cxFilterConsts_cxSFilterOperatorYesterday 65066
#define cxFilterConsts_cxSFilterOperatorToday 65067
#define cxFilterConsts_cxSFilterOperatorTomorrow 65068
#define cxFilterConsts_cxSFilterOperatorLastWeek 65069
#define cxFilterConsts_cxSFilterOperatorLastMonth 65070
#define cxFilterConsts_cxSFilterOperatorLastYear 65071
#define dxGrFCmn_dxSFilterInvalidValue 65072
#define dxGrFCmn_dxSFilterStatusCloseButtonHint 65073
#define dxGrFCmn_dxSFilterBoxAllCaption 65074
#define dxGrFCmn_dxSFilterBoxCustomCaption 65075
#define dxGrFCmn_dxSFilterBoxBlanksCaption 65076
#define dxGrFCmn_dxSFilterBoxNonBlanksCaption 65077
#define cxDataConsts_cxSDataReadError 65078
#define cxDataConsts_cxSDataWriteError 65079
#define cxDataConsts_cxSDataItemExistError 65080
#define cxDataConsts_cxSDataRecordIndexError 65081
#define cxDataConsts_cxSDataItemIndexError 65082
#define cxDataConsts_cxSDataRowIndexError 65083
#define cxDataConsts_cxSDBDetailFilterControllerNotFound 65084
#define cxDataConsts_cxSDBNotInGridMode 65085
#define cxFilterConsts_cxSFilterOperatorEqual 65086
#define cxFilterConsts_cxSFilterOperatorNotEqual 65087
#define VDBConsts_SPropDefByLookup 65088
#define VDBConsts_STooManyColumns 65089
#define VDBConsts_SRemoteLogin 65090
#define OleConst_SLinkProperties 65091
#define OleConst_SInvalidLinkSource 65092
#define OleConst_SCannotBreakLink 65093
#define OleConst_SPropDlgCaption 65094
#define OleConst_sNoRunningObject 65095
#define dxGrFCmn_dxSFilterOperatorEqual 65096
#define dxGrFCmn_dxSFilterOperatorNotEqual 65097
#define dxGrFCmn_dxSFilterOperatorGreater 65098
#define dxGrFCmn_dxSFilterOperatorGreaterEqual 65099
#define dxGrFCmn_dxSFilterOperatorLess 65100
#define dxGrFCmn_dxSFilterOperatorLessEqual 65101
#define dxGrFCmn_dxSFilterOperatorBlanks 65102
#define dxGrFCmn_dxSFilterOperatorNonBlanks 65103
#define ComStrs_sFailSetCalMinMaxRange 65104
#define ComStrs_sFailsetCalSelRange 65105
#define VDBConsts_SFirstRecord 65106
#define VDBConsts_SPriorRecord 65107
#define VDBConsts_SNextRecord 65108
#define VDBConsts_SLastRecord 65109
#define VDBConsts_SInsertRecord 65110
#define VDBConsts_SDeleteRecord 65111
#define VDBConsts_SEditRecord 65112
#define VDBConsts_SPostEdit 65113
#define VDBConsts_SCancelEdit 65114
#define VDBConsts_SRefreshRecord 65115
#define VDBConsts_SDeleteRecordQuestion 65116
#define VDBConsts_SDeleteMultipleRecordsQuestion 65117
#define VDBConsts_SDataSourceFixed 65118
#define VDBConsts_SNotReplicatable 65119
#define ComStrs_sTabFailSetObject 65120
#define ComStrs_sTabMustBeMultiLine 65121
#define ComStrs_sInvalidIndex 65122
#define ComStrs_sInsertError 65123
#define ComStrs_sInvalidOwner 65124
#define ComStrs_sRichEditInsertError 65125
#define ComStrs_sRichEditLoadFail 65126
#define ComStrs_sRichEditSaveFail 65127
#define ComStrs_sUDAssociated 65128
#define ComStrs_sPageIndexError 65129
#define ComStrs_sInvalidComCtl32 65130
#define ComStrs_sDateTimeMax 65131
#define ComStrs_sDateTimeMin 65132
#define ComStrs_sNeedAllowNone 65133
#define ComStrs_sFailSetCalDateTime 65134
#define ComStrs_sFailSetCalMaxSelRange 65135
#define bdeconst_STruncationError 65136
#define bdeconst_SResultName 65137
#define bdeconst_SIndexDoesNotExist 65138
#define bdeconst_SNoTableName 65139
#define bdeconst_SNoDataSetField 65140
#define bdeconst_SNoCachedUpdates 65141
#define bdeconst_SInvalidAliasName 65142
#define bdeconst_SNoFieldAccess 65143
#define bdeconst_SUntitled 65144
#define bdeconst_SUpdateFailed 65145
#define bdeconst_SLocalTransDirty 65146
#define ComStrs_sTabFailClear 65147
#define ComStrs_sTabFailDelete 65148
#define ComStrs_sTabFailRetrieve 65149
#define ComStrs_sTabFailGetObject 65150
#define ComStrs_sTabFailSet 65151
#define bdeconst_SDatabaseClosed 65152
#define bdeconst_SDatabaseHandleSet 65153
#define bdeconst_SSessionActive 65154
#define bdeconst_SHandleError 65155
#define bdeconst_STableMismatch 65156
#define bdeconst_SNoReferenceTableName 65157
#define bdeconst_SCompositeIndexError 65158
#define bdeconst_SEmptySQLStatement 65159
#define bdeconst_SNoParameterValue 65160
#define bdeconst_SNoParameterType 65161
#define bdeconst_SLoginError 65162
#define bdeconst_SInitError 65163
#define bdeconst_SIDAPILangID 65164
#define bdeconst_SBDEError 65165
#define bdeconst_SLookupSourceError 65166
#define bdeconst_SLookupTableError 65167
#define DBConsts_SCouldNotParseTimeStamp 65168
#define DBConsts_SInvalidSqlTimeStamp 65169
#define ComConst_SOleError 65170
#define ComConst_SNoMethod 65171
#define ComConst_SVarNotObject 65172
#define ComConst_STooManyParams 65173
#define ComConst_SDCOMNotInstalled 65174
#define bdeconst_SAutoSessionExclusive 65175
#define bdeconst_SAutoSessionExists 65176
#define bdeconst_SAutoSessionActive 65177
#define bdeconst_SDuplicateDatabaseName 65178
#define bdeconst_SDuplicateSessionName 65179
#define bdeconst_SInvalidSessionName 65180
#define bdeconst_SDatabaseNameMissing 65181
#define bdeconst_SSessionNameMissing 65182
#define bdeconst_SDatabaseOpen 65183
#define DBConsts_SExprEmptyInList 65184
#define DBConsts_SInvalidKeywordUse 65185
#define DBConsts_STextFalse 65186
#define DBConsts_STextTrue 65187
#define DBConsts_SParameterNotFound 65188
#define DBConsts_SInvalidVersion 65189
#define DBConsts_SBadFieldType 65190
#define DBConsts_SProviderSQLNotSupported 65191
#define DBConsts_SProviderExecuteNotSupported 65192
#define DBConsts_SExprNoAggOnCalcs 65193
#define DBConsts_SDataSetUnidirectional 65194
#define DBConsts_SUnassignedVar 65195
#define DBConsts_SRecordNotFound 65196
#define DBConsts_SBcdOverflow 65197
#define DBConsts_SInvalidBcdValue 65198
#define DBConsts_SInvalidFormatType 65199
#define DBConsts_SExprInvalidChar 65200
#define DBConsts_SExprNoLParen 65201
#define DBConsts_SExprNoRParen 65202
#define DBConsts_SExprNoRParenOrComma 65203
#define DBConsts_SExprExpected 65204
#define DBConsts_SExprBadField 65205
#define DBConsts_SExprBadNullTest 65206
#define DBConsts_SExprRangeError 65207
#define DBConsts_SExprIncorrect 65208
#define DBConsts_SExprNothing 65209
#define DBConsts_SExprTypeMis 65210
#define DBConsts_SExprBadScope 65211
#define DBConsts_SExprNoArith 65212
#define DBConsts_SExprNotAgg 65213
#define DBConsts_SExprBadConst 65214
#define DBConsts_SExprNoAggFilter 65215
#define DBConsts_SNotIndexField 65216
#define DBConsts_SIndexFieldMissing 65217
#define DBConsts_SNoIndexForFields 65218
#define DBConsts_SIndexNotFound 65219
#define DBConsts_SCircularDataLink 65220
#define DBConsts_SLookupInfoError 65221
#define DBConsts_SDataSourceChange 65222
#define DBConsts_SDataSetOpen 65223
#define DBConsts_SNotEditing 65224
#define DBConsts_SDataSetClosed 65225
#define DBConsts_SDataSetEmpty 65226
#define DBConsts_SDataSetReadOnly 65227
#define DBConsts_SNestedDataSetClass 65228
#define DBConsts_SExprTermination 65229
#define DBConsts_SExprNameError 65230
#define DBConsts_SExprStringError 65231
#define DBConsts_SFieldValueError 65232
#define DBConsts_SFieldRangeError 65233
#define DBConsts_SBcdFieldRangeError 65234
#define DBConsts_SInvalidIntegerValue 65235
#define DBConsts_SInvalidBoolValue 65236
#define DBConsts_SInvalidFloatValue 65237
#define DBConsts_SFieldTypeMismatch 65238
#define DBConsts_SFieldSizeMismatch 65239
#define DBConsts_SInvalidVarByteArray 65240
#define DBConsts_SFieldOutOfRange 65241
#define DBConsts_SFieldRequired 65242
#define DBConsts_SDataSetMissing 65243
#define DBConsts_SInvalidCalcType 65244
#define DBConsts_SFieldReadOnly 65245
#define DBConsts_SFieldIndexError 65246
#define DBConsts_SNoFieldIndexes 65247
#define Consts_SDockZoneHasNoCtl 65248
#define Consts_SMultiSelectRequired 65249
#define Consts_SSeparator 65250
#define Consts_SErrorSettingCount 65251
#define Consts_SListBoxMustBeVirtual 65252
#define HelpIntfs_hNoTableOfContents 65253
#define HelpIntfs_hNothingFound 65254
#define HelpIntfs_hNoContext 65255
#define HelpIntfs_hNoTopics 65256
#define DBConsts_SInvalidFieldSize 65257
#define DBConsts_SInvalidFieldKind 65258
#define DBConsts_SUnknownFieldType 65259
#define DBConsts_SFieldNameMissing 65260
#define DBConsts_SDuplicateFieldName 65261
#define DBConsts_SFieldNotFound 65262
#define DBConsts_SFieldAccessError 65263
#define Consts_sAllFilter 65264
#define Consts_SInsertLineError 65265
#define Consts_SInvalidClipFmt 65266
#define Consts_SIconToClipboard 65267
#define Consts_SCannotOpenClipboard 65268
#define Consts_SDefault 65269
#define Consts_SInvalidMemoSize 65270
#define Consts_SInvalidPrinterOp 65271
#define Consts_SNoDefaultPrinter 65272
#define Consts_SDuplicateMenus 65273
#define Consts_SPictureLabel 65274
#define Consts_SPictureDesc 65275
#define Consts_SPreviewLabel 65276
#define Consts_SDockedCtlNeedsName 65277
#define Consts_SDockTreeRemoveError 65278
#define Consts_SDockZoneNotFound 65279
#define Consts_SmkcSpace 65280
#define Consts_SmkcPgUp 65281
#define Consts_SmkcPgDn 65282
#define Consts_SmkcEnd 65283
#define Consts_SmkcHome 65284
#define Consts_SmkcLeft 65285
#define Consts_SmkcUp 65286
#define Consts_SmkcRight 65287
#define Consts_SmkcDown 65288
#define Consts_SmkcIns 65289
#define Consts_SmkcDel 65290
#define Consts_SmkcShift 65291
#define Consts_SmkcCtrl 65292
#define Consts_SmkcAlt 65293
#define Consts_srNone 65294
#define Consts_SOutOfRange 65295
#define Consts_SMsgDlgConfirm 65296
#define Consts_SMsgDlgYes 65297
#define Consts_SMsgDlgNo 65298
#define Consts_SMsgDlgOK 65299
#define Consts_SMsgDlgCancel 65300
#define Consts_SMsgDlgHelp 65301
#define Consts_SMsgDlgAbort 65302
#define Consts_SMsgDlgRetry 65303
#define Consts_SMsgDlgIgnore 65304
#define Consts_SMsgDlgAll 65305
#define Consts_SMsgDlgNoToAll 65306
#define Consts_SMsgDlgYesToAll 65307
#define Consts_SmkcBkSp 65308
#define Consts_SmkcTab 65309
#define Consts_SmkcEsc 65310
#define Consts_SmkcEnter 65311
#define Consts_SHelpButton 65312
#define Consts_SCloseButton 65313
#define Consts_SIgnoreButton 65314
#define Consts_SRetryButton 65315
#define Consts_SAbortButton 65316
#define Consts_SAllButton 65317
#define Consts_SCannotDragForm 65318
#define Consts_SVMetafiles 65319
#define Consts_SVEnhMetafiles 65320
#define Consts_SVIcons 65321
#define Consts_SVBitmaps 65322
#define Consts_SMaskErr 65323
#define Consts_SMaskEditErr 65324
#define Consts_SMsgDlgWarning 65325
#define Consts_SMsgDlgError 65326
#define Consts_SMsgDlgInformation 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_SPrinterIndexError 65334
#define Consts_SInvalidPrinter 65335
#define Consts_SDeviceOnPort 65336
#define Consts_SGroupIndexTooLow 65337
#define Consts_SNoMDIForm 65338
#define Consts_SControlParentSetToSelf 65339
#define Consts_SOKButton 65340
#define Consts_SCancelButton 65341
#define Consts_SYesButton 65342
#define Consts_SNoButton 65343
#define Consts_SInvalidImageSize 65344
#define Consts_SInvalidImageList 65345
#define Consts_SReplaceImage 65346
#define Consts_SImageIndexError 65347
#define Consts_SImageReadFail 65348
#define Consts_SImageWriteFail 65349
#define Consts_SWindowDCError 65350
#define Consts_SWindowClass 65351
#define Consts_SCannotFocus 65352
#define Consts_SParentRequired 65353
#define Consts_SParentGivenNotAParent 65354
#define Consts_SMDIChildNotVisible 65355
#define Consts_SVisibleChanged 65356
#define Consts_SCannotShowModal 65357
#define Consts_SScrollBarRange 65358
#define Consts_SPropertyOutOfRange 65359
#define RTLConsts_SThreadCreateError 65360
#define RTLConsts_SThreadError 65361
#define Consts_SInvalidTabIndex 65362
#define Consts_SInvalidTabPosition 65363
#define Consts_SInvalidTabStyle 65364
#define Consts_SInvalidBitmap 65365
#define Consts_SInvalidIcon 65366
#define Consts_SInvalidMetafile 65367
#define Consts_SInvalidPixelFormat 65368
#define Consts_SInvalidImage 65369
#define Consts_SScanLine 65370
#define Consts_SChangeIconSize 65371
#define Consts_SUnknownExtension 65372
#define Consts_SUnknownClipboardFormat 65373
#define Consts_SOutOfResources 65374
#define Consts_SNoCanvasHandle 65375
#define RTLConsts_SParseError 65376
#define RTLConsts_SPropertyException 65377
#define RTLConsts_SReadError 65378
#define RTLConsts_SReadOnlyProperty 65379
#define RTLConsts_SRegCreateFailed 65380
#define RTLConsts_SRegGetDataFailed 65381
#define RTLConsts_SRegSetDataFailed 65382
#define RTLConsts_SResNotFound 65383
#define RTLConsts_SSeekNotImplemented 65384
#define RTLConsts_SSortedListError 65385
#define RTLConsts_SStringExpected 65386
#define RTLConsts_SSymbolExpected 65387
#define RTLConsts_STooManyDeleted 65388
#define RTLConsts_SUnknownGroup 65389
#define RTLConsts_SUnknownProperty 65390
#define RTLConsts_SWriteError 65391
#define RTLConsts_SInvalidImage 65392
#define RTLConsts_SInvalidName 65393
#define RTLConsts_SInvalidProperty 65394
#define RTLConsts_SInvalidPropertyElement 65395
#define RTLConsts_SInvalidPropertyPath 65396
#define RTLConsts_SInvalidPropertyType 65397
#define RTLConsts_SInvalidPropertyValue 65398
#define RTLConsts_SInvalidRegType 65399
#define RTLConsts_SInvalidString 65400
#define RTLConsts_SInvalidStringGridOp 65401
#define RTLConsts_SLineTooLong 65402
#define RTLConsts_SListCapacityError 65403
#define RTLConsts_SListCountError 65404
#define RTLConsts_SListIndexError 65405
#define RTLConsts_SMemoryStreamError 65406
#define RTLConsts_SNumberExpected 65407
#define RTLConsts_SCharExpected 65408
#define RTLConsts_SCheckSynchronizeError 65409
#define RTLConsts_SClassNotFound 65410
#define RTLConsts_SDuplicateClass 65411
#define RTLConsts_SDuplicateItem 65412
#define RTLConsts_SDuplicateName 65413
#define RTLConsts_SDuplicateString 65414
#define RTLConsts_SFCreateError 65415
#define RTLConsts_SFixedColTooBig 65416
#define RTLConsts_SFixedRowTooBig 65417
#define RTLConsts_SFOpenError 65418
#define RTLConsts_SGridTooLarge 65419
#define RTLConsts_SIdentifierExpected 65420
#define RTLConsts_SIndexOutOfRange 65421
#define RTLConsts_SIniFileWriteError 65422
#define RTLConsts_SInvalidBinary 65423
#define SysConst_SShortDayNameWed 65424
#define SysConst_SShortDayNameThu 65425
#define SysConst_SShortDayNameFri 65426
#define SysConst_SShortDayNameSat 65427
#define SysConst_SLongDayNameSun 65428
#define SysConst_SLongDayNameMon 65429
#define SysConst_SLongDayNameTue 65430
#define SysConst_SLongDayNameWed 65431
#define SysConst_SLongDayNameThu 65432
#define SysConst_SLongDayNameFri 65433
#define SysConst_SLongDayNameSat 65434
#define SysConst_SCannotCreateDir 65435
#define RTLConsts_SAncestorNotFound 65436
#define RTLConsts_SAssignError 65437
#define RTLConsts_SBitsIndexError 65438
#define RTLConsts_SCantWriteResourceStreamError 65439
#define SysConst_SShortMonthNameDec 65440
#define SysConst_SLongMonthNameJan 65441
#define SysConst_SLongMonthNameFeb 65442
#define SysConst_SLongMonthNameMar 65443
#define SysConst_SLongMonthNameApr 65444
#define SysConst_SLongMonthNameMay 65445
#define SysConst_SLongMonthNameJun 65446
#define SysConst_SLongMonthNameJul 65447
#define SysConst_SLongMonthNameAug 65448
#define SysConst_SLongMonthNameSep 65449
#define SysConst_SLongMonthNameOct 65450
#define SysConst_SLongMonthNameNov 65451
#define SysConst_SLongMonthNameDec 65452
#define SysConst_SShortDayNameSun 65453
#define SysConst_SShortDayNameMon 65454
#define SysConst_SShortDayNameTue 65455
#define SysConst_SAbstractError 65456
#define SysConst_SModuleAccessViolation 65457
#define SysConst_SOSError 65458
#define SysConst_SUnkOSError 65459
#define SysConst_SNL 65460
#define SysConst_SShortMonthNameJan 65461
#define SysConst_SShortMonthNameFeb 65462
#define SysConst_SShortMonthNameMar 65463
#define SysConst_SShortMonthNameApr 65464
#define SysConst_SShortMonthNameMay 65465
#define SysConst_SShortMonthNameJun 65466
#define SysConst_SShortMonthNameJul 65467
#define SysConst_SShortMonthNameAug 65468
#define SysConst_SShortMonthNameSep 65469
#define SysConst_SShortMonthNameOct 65470
#define SysConst_SShortMonthNameNov 65471
#define SysConst_SVarTypeAlreadyUsed 65472
#define SysConst_SVarTypeNotUsable 65473
#define SysConst_SVarTypeTooManyCustom 65474
#define SysConst_SInvalidVarNullOp 65475
#define SysConst_SVarTypeCouldNotConvert 65476
#define SysConst_SVarTypeConvertOverflow 65477
#define SysConst_SVarOverflow 65478
#define SysConst_SVarInvalid 65479
#define SysConst_SVarBadType 65480
#define SysConst_SVarNotImplemented 65481
#define SysConst_SVarUnexpected 65482
#define SysConst_SExternalException 65483
#define SysConst_SAssertionFailed 65484
#define SysConst_SIntfCastError 65485
#define SysConst_SSafecallException 65486
#define SysConst_SAssertError 65487
#define SysConst_SException 65488
#define SysConst_SExceptTitle 65489
#define SysConst_SInvalidFormat 65490
#define SysConst_SArgumentMissing 65491
#define SysConst_SDispatchError 65492
#define SysConst_SReadAccess 65493
#define SysConst_SWriteAccess 65494
#define SysConst_SFormatTooLong 65495
#define SysConst_SVarArrayCreate 65496
#define SysConst_SVarArrayBounds 65497
#define SysConst_SVarArrayLocked 65498
#define SysConst_SInvalidVarCast 65499
#define SysConst_SInvalidVarOp 65500
#define SysConst_SInvalidVarOpWithHResult 65501
#define SysConst_SVarNotArray 65502
#define SysConst_SVarTypeOutOfRange 65503
#define SysConst_SDiskFull 65504
#define SysConst_SInvalidInput 65505
#define SysConst_SDivByZero 65506
#define SysConst_SRangeError 65507
#define SysConst_SIntOverflow 65508
#define SysConst_SInvalidOp 65509
#define SysConst_SZeroDivide 65510
#define SysConst_SOverflow 65511
#define SysConst_SUnderflow 65512
#define SysConst_SInvalidPointer 65513
#define SysConst_SInvalidCast 65514
#define SysConst_SAccessViolation 65515
#define SysConst_SStackOverflow 65516
#define SysConst_SControlC 65517
#define SysConst_SPrivilege 65518
#define SysConst_SOperationAborted 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_STimeEncodeError 65527
#define SysConst_SDateEncodeError 65528
#define SysConst_SOutOfMemory 65529
#define SysConst_SInOutError 65530
#define SysConst_SFileNotFound 65531
#define SysConst_SInvalidFilename 65532
#define SysConst_STooManyOpenFiles 65533
#define SysConst_SAccessDenied 65534
#define SysConst_SEndOfFile 65535
STRINGTABLE
BEGIN
dxPageControlStrs_sdxPageIndexError, "%d is an invalid PageIndex value. PageIndex must be between 0 and %d"
ppJvInspector_sppJvInspItemItemIsNotCol, "Specified item is not a column of this compound item."
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_ppJclRsRTTIName, "Name: "
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."
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"
ppJclResources_ppJclRsRTTIValueOutOfRange, "Value out of range (%s)."
ppJclResources_ppJclRsRTTIUnknownIdentifier, "Unknown identifier '%s'."
ppJclResources_ppJclRsRTTIOrdinal, "ordinal="
ppJclResources_ppJclRsRTTITypeError, "???"
ppJclResources_ppJclRsRTTITypeInfoAt, "Type info: %p"
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"
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"
ppSt2DBarC_StEBadBarHeight, "Bar Height cannot be less than one"
ppSt2DBarC_StEBadBarHeightToWidth, "BarHeightToWidth cannot be less than one"
RzBorder_sRzColorInfoText, "Info Text"
RzBorder_sRzColorInfoBk, "Info Background"
RzBorder_sRzColorHotLight, "Hot Light"
RzBorder_sRzColorGradientActiveCaption, "Gradient Active Caption"
RzBorder_sRzColorGradientInactiveCaption, "Gradient Inactive Caption"
RzBorder_sRzColorMenuHighlight, "Menu Highlight"
RzBorder_sRzColorMenuBar, "Menu Bar"
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"
RzBorder_sRzColorMenuText, "Menu Text"
RzBorder_sRzColorWindowText, "Window Text"
RzBorder_sRzColorCaptionText, "Caption Text"
RzBorder_sRzColorActiveBorder, "Active Border"
RzBorder_sRzColorInactiveBorder, "Inactive Border"
RzBorder_sRzColorAppWorkSpace, "App WorkSpace"
RzBorder_sRzColorHighlight, "Highlight"
RzBorder_sRzColorHighlightText, "Highlight Text"
RzBorder_sRzColorBtnFace, "Button Face"
RzBorder_sRzColorBtnShadow, "Button Shadow"
RzBorder_sRzColorGrayText, "Gray Text"
RzBorder_sRzColorBtnText, "Button Text"
RzBorder_sRzColorInactiveCaptionText, "Inactive Caption Text"
RzBorder_sRzColorBtnHighlight, "Button Highlight"
RzBorder_sRzColor3DDkShadow, "3D Dark Shadow"
RzBorder_sRzColor3DLight, "3D Light"
RzBorder_sRzColorGray25, "Gray 25%"
RzBorder_sRzColorRose, "Rose"
RzBorder_sRzColorTan, "Tan"
RzBorder_sRzColorLightYellow, "Light Yellow"
RzBorder_sRzColorLightGreen, "Light Green"
RzBorder_sRzColorLightTurquoise, "Light Turquoise"
RzBorder_sRzColorPaleBlue, "Pale Blue"
RzBorder_sRzColorLavender, "Lavender"
RzBorder_sRzColorWhite, "White"
RzBorder_sRzColorScrollBar, "Scroll Bar"
RzBorder_sRzColorBackground, "Background"
RzBorder_sRzColorActiveCaption, "Active Caption"
RzBorder_sRzColorInactiveCaption, "Inactive Caption"
RzBorder_sRzColorMenu, "Menu"
RzBorder_sRzColorWindow, "Window"
RzBorder_sRzColorWindowFrame, "Window Frame"
RzBorder_sRzColorGray50, "Gray 50%"
RzBorder_sRzColorRed, "Red"
RzBorder_sRzColorLightOrange, "Light Orange"
RzBorder_sRzColorLime, "Lime"
RzBorder_sRzColorSeaGreen, "Sea Green"
RzBorder_sRzColorAqua, "Aqua"
RzBorder_sRzColorLightBlue, "Light Blue"
RzBorder_sRzColorViolet, "Violet"
RzBorder_sRzColorGray40, "Gray 40%"
RzBorder_sRzColorPink, "Pink"
RzBorder_sRzColorGold, "Gold"
RzBorder_sRzColorYellow, "Yellow"
RzBorder_sRzColorBrightGreen, "Bright Green"
RzBorder_sRzColorTurquoise, "Turquoise"
RzBorder_sRzColorSkyBlue, "Sky Blue"
RzBorder_sRzColorPlum, "Plum"
RzPopups_sRzCaptionTodayBtn, "Today"
RzBorder_sRzColorBlack, "Black"
RzBorder_sRzColorBrown, "Brown"
RzBorder_sRzColorOliveGreen, "Olive Green"
RzBorder_sRzColorDarkGreen, "Dark Green"
RzBorder_sRzColorDarkTeal, "Dark Teal"
RzBorder_sRzColorDarkBlue, "Dark Blue"
RzBorder_sRzColorIndigo, "Indigo"
RzBorder_sRzColorGray80, "Gray 80%"
RzBorder_sRzColorDarkRed, "Dark Red"
RzBorder_sRzColorOrange, "Orange"
RzBorder_sRzColorDarkYellow, "Dark Yellow"
RzBorder_sRzColorGreen, "Green"
RzBorder_sRzColorTeal, "Teal"
RzBorder_sRzColorBlue, "Blue"
RzBorder_sRzColorBlueGray, "Blue Gray"
cxFilterControlStrs_cxSFilterControlDialogActionCancelCaption, "Cancel"
cxFilterControlStrs_cxSFilterControlDialogFileExt, "flt"
cxFilterControlStrs_cxSFilterControlDialogFileFilter, "Filters (*.flt)|*.flt"
cxGridStrs_scxGridDeletingConfirmationCaption, "Confirm"
cxGridStrs_scxGridDeletingFocusedConfirmationText, "Delete record?"
cxGridStrs_scxGridDeletingSelectedConfirmationText, "Delete all selected records?"
cxGridStrs_scxGridFilterIsEmpty, "<Filter is Empty>"
cxGridStrs_scxGridCustomizationFormCaption, "Customization"
cxGridStrs_scxGridCustomizationFormColumnsPageCaption, "Columns"
cxGridStrs_scxGridGroupByBoxCaption, "Drag a column header here to group by that column"
cxGridStrs_scxGridFilterCustomizeButtonCaption, "Customize..."
RzPopups_sRzHowToSelectTime, "Left-click to set Hour\rRight-click to set Minute\r Ctrl key restricts to 5 minutes"
RzPopups_sRzCaptionAM, "AM"
RzPopups_sRzCaptionPM, "PM"
RzPopups_sRzCaptionSet, "Set"
RzPopups_sRzCaptionClearBtn, "Clear"
cxFilterControlStrs_cxSFilterDialogCaption, "Custom Filter"
cxFilterControlStrs_cxSFilterDialogInvalidValue, "Invalid value"
cxFilterControlStrs_cxSFilterDialogUse, "Use"
cxFilterControlStrs_cxSFilterDialogSingleCharacter, "to represent any single character"
cxFilterControlStrs_cxSFilterDialogCharactersSeries, "to represent any series of characters"
cxFilterControlStrs_cxSFilterDialogOperationAnd, "AND"
cxFilterControlStrs_cxSFilterDialogOperationOr, "OR"
cxFilterControlStrs_cxSFilterDialogRows, "Show rows where:"
cxFilterControlStrs_cxSFilterControlDialogCaption, "Filter builder"
cxFilterControlStrs_cxSFilterControlDialogNewFile, "untitled.flt"
cxFilterControlStrs_cxSFilterControlDialogOpenDialogCaption, "Open an existing filter"
cxFilterControlStrs_cxSFilterControlDialogSaveDialogCaption, "Save the active filter to file"
cxFilterControlStrs_cxSFilterControlDialogActionSaveCaption, "&Save As..."
cxFilterControlStrs_cxSFilterControlDialogActionOpenCaption, "&Open..."
cxFilterControlStrs_cxSFilterControlDialogActionApplyCaption, "&Apply"
cxFilterControlStrs_cxSFilterControlDialogActionOkCaption, "Ok"
JConsts_sJPEGError, "JPEG error #%d"
JConsts_sJPEGImageFile, "JPEG Image File"
cxFilterControlStrs_cxSFilterBoolOperatorAnd, "AND"
cxFilterControlStrs_cxSFilterBoolOperatorOr, "OR"
cxFilterControlStrs_cxSFilterBoolOperatorNotAnd, "NOT AND"
cxFilterControlStrs_cxSFilterBoolOperatorNotOr, "NOT OR"
cxFilterControlStrs_cxSFilterRootButtonCaption, "Filter"
cxFilterControlStrs_cxSFilterAddCondition, "Add &Condition"
cxFilterControlStrs_cxSFilterAddGroup, "Add &Group"
cxFilterControlStrs_cxSFilterRemoveRow, "&Remove Row"
cxFilterControlStrs_cxSFilterClearAll, "Clear &All"
cxFilterControlStrs_cxSFilterFooterAddCondition, "press button to add new condition"
cxFilterControlStrs_cxSFilterGroupCaption, "applies to the following conditions"
cxFilterControlStrs_cxSFilterRootGroupCaption, "<root>"
cxFilterControlStrs_cxSFilterControlNullString, "<empty>"
cxFilterControlStrs_cxSFilterErrorBuilding, "Can't build filter from source"
cxEditConsts_scxRegExprIllegalSymbol, "Illegal '%s'"
cxEditConsts_scxRegExprIllegalQuantifier, "Illegal quantifier '%s'"
cxEditConsts_scxRegExprNotSupportQuantifier, "The parameter quantifiers does not support"
cxEditConsts_scxRegExprIllegalIntegerValue, "Illegal integer value"
cxEditConsts_scxRegExprTooBigReferenceNumber, "Too big reference number"
cxEditConsts_scxRegExprCantCreateEmptyEnum, "Can't create empty enumeration"
cxEditConsts_scxRegExprSubrangeOrder, "The start character of subrange must less than the finish one"
cxEditConsts_scxRegExprHexNumberExpected0, "Hexadecimal number expected"
cxEditConsts_scxRegExprHexNumberExpected, "Hexadecimal number expected but '%s' found"
cxEditConsts_scxRegExprMissing, "Missing '%s'"