-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathPrescription.drc
More file actions
1750 lines (1747 loc) · 85.2 KB
/
Prescription.drc
File metadata and controls
1750 lines (1747 loc) · 85.2 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 RzTabs_sRzRestoringDCError 64656
#define RzTabs_sRzCreateRegionError 64657
#define RzTabs_sRzPageIndexOutOfRange 64658
#define RzTabs_sRzInvalidVisibilityChange 64659
#define dxGrFCmn_dxSFilterBoxAllCaption 64672
#define dxGrFCmn_dxSFilterBoxCustomCaption 64673
#define dxGrFCmn_dxSFilterBoxBlanksCaption 64674
#define dxGrFCmn_dxSFilterBoxNonBlanksCaption 64675
#define cxPCConsts_scxPCImageListIndexError 64676
#define cxPCConsts_scxPCNoBaseImages 64677
#define cxPCConsts_scxPCNoRegisteredStyles 64678
#define cxPCConsts_scxPCPageIndexError 64679
#define cxPCConsts_scxPCPainterClassError 64680
#define cxPCConsts_scxPCTabCountEqualsZero 64681
#define cxPCConsts_scxPCTabIndexError 64682
#define cxPCConsts_scxPCTabVisibleIndexOutsOfBounds 64683
#define cxPCConsts_scxPCVisibleTabListEmpty 64684
#define RzTabs_sRzIncorrectNumberOfPoints 64685
#define RzTabs_sRzTabRegionCapacityError 64686
#define RzTabs_sRzSavingDCError 64687
#define cxGridStrs_scxGridDeletingSelectedConfirmationText 64688
#define cxGridStrs_scxGridFilterIsEmpty 64689
#define cxGridStrs_scxGridCustomizationFormCaption 64690
#define cxGridStrs_scxGridCustomizationFormColumnsPageCaption 64691
#define cxGridStrs_scxGridGroupByBoxCaption 64692
#define cxGridStrs_scxGridFilterCustomizeButtonCaption 64693
#define dxGrFCmn_dxSFilterOperatorEqual 64694
#define dxGrFCmn_dxSFilterOperatorNotEqual 64695
#define dxGrFCmn_dxSFilterOperatorGreater 64696
#define dxGrFCmn_dxSFilterOperatorGreaterEqual 64697
#define dxGrFCmn_dxSFilterOperatorLess 64698
#define dxGrFCmn_dxSFilterOperatorLessEqual 64699
#define dxGrFCmn_dxSFilterOperatorBlanks 64700
#define dxGrFCmn_dxSFilterOperatorNonBlanks 64701
#define dxGrFCmn_dxSFilterInvalidValue 64702
#define dxGrFCmn_dxSFilterStatusCloseButtonHint 64703
#define cxFilterControlStrs_cxSFilterDialogOperationAnd 64704
#define cxFilterControlStrs_cxSFilterDialogOperationOr 64705
#define cxFilterControlStrs_cxSFilterDialogRows 64706
#define cxFilterControlStrs_cxSFilterControlDialogCaption 64707
#define cxFilterControlStrs_cxSFilterControlDialogNewFile 64708
#define cxFilterControlStrs_cxSFilterControlDialogOpenDialogCaption 64709
#define cxFilterControlStrs_cxSFilterControlDialogSaveDialogCaption 64710
#define cxFilterControlStrs_cxSFilterControlDialogActionSaveCaption 64711
#define cxFilterControlStrs_cxSFilterControlDialogActionOpenCaption 64712
#define cxFilterControlStrs_cxSFilterControlDialogActionApplyCaption 64713
#define cxFilterControlStrs_cxSFilterControlDialogActionOkCaption 64714
#define cxFilterControlStrs_cxSFilterControlDialogActionCancelCaption 64715
#define cxFilterControlStrs_cxSFilterControlDialogFileExt 64716
#define cxFilterControlStrs_cxSFilterControlDialogFileFilter 64717
#define cxGridStrs_scxGridDeletingConfirmationCaption 64718
#define cxGridStrs_scxGridDeletingFocusedConfirmationText 64719
#define cxFilterControlStrs_cxSFilterBoolOperatorNotOr 64720
#define cxFilterControlStrs_cxSFilterRootButtonCaption 64721
#define cxFilterControlStrs_cxSFilterAddCondition 64722
#define cxFilterControlStrs_cxSFilterAddGroup 64723
#define cxFilterControlStrs_cxSFilterRemoveRow 64724
#define cxFilterControlStrs_cxSFilterClearAll 64725
#define cxFilterControlStrs_cxSFilterFooterAddCondition 64726
#define cxFilterControlStrs_cxSFilterGroupCaption 64727
#define cxFilterControlStrs_cxSFilterRootGroupCaption 64728
#define cxFilterControlStrs_cxSFilterControlNullString 64729
#define cxFilterControlStrs_cxSFilterErrorBuilding 64730
#define cxFilterControlStrs_cxSFilterDialogCaption 64731
#define cxFilterControlStrs_cxSFilterDialogInvalidValue 64732
#define cxFilterControlStrs_cxSFilterDialogUse 64733
#define cxFilterControlStrs_cxSFilterDialogSingleCharacter 64734
#define cxFilterControlStrs_cxSFilterDialogCharactersSeries 64735
#define cxEditConsts_scxRegExprNotSupportQuantifier 64736
#define cxEditConsts_scxRegExprIllegalIntegerValue 64737
#define cxEditConsts_scxRegExprTooBigReferenceNumber 64738
#define cxEditConsts_scxRegExprCantCreateEmptyEnum 64739
#define cxEditConsts_scxRegExprSubrangeOrder 64740
#define cxEditConsts_scxRegExprHexNumberExpected0 64741
#define cxEditConsts_scxRegExprHexNumberExpected 64742
#define cxEditConsts_scxRegExprMissing 64743
#define cxEditConsts_scxRegExprUnnecessary 64744
#define cxEditConsts_scxRegExprIncorrectSpace 64745
#define cxEditConsts_scxRegExprNotCompiled 64746
#define cxEditConsts_scxMaskEditRegExprError 64747
#define cxEditConsts_scxMaskEditInvalidEditValue 64748
#define cxFilterControlStrs_cxSFilterBoolOperatorAnd 64749
#define cxFilterControlStrs_cxSFilterBoolOperatorOr 64750
#define cxFilterControlStrs_cxSFilterBoolOperatorNotAnd 64751
#define cxEditConsts_scxSEditRepositoryMRUItem 64752
#define cxEditConsts_scxSEditRepositoryPopupItem 64753
#define cxEditConsts_scxSEditRepositorySpinItem 64754
#define cxEditConsts_scxSEditRepositoryRadioGroupItem 64755
#define cxEditConsts_scxSEditRepositoryTextItem 64756
#define cxEditConsts_scxSEditRepositoryTimeItem 64757
#define cxEditConsts_scxRegExprLine 64758
#define cxEditConsts_scxRegExprChar 64759
#define cxEditConsts_scxRegExprNotAssignedSourceStream 64760
#define cxEditConsts_scxRegExprEmptySourceStream 64761
#define cxEditConsts_scxRegExprCantUsePlusQuantifier 64762
#define cxEditConsts_scxRegExprCantUseStarQuantifier 64763
#define cxEditConsts_scxRegExprCantCreateEmptyAlt 64764
#define cxEditConsts_scxRegExprCantCreateEmptyBlock 64765
#define cxEditConsts_scxRegExprIllegalSymbol 64766
#define cxEditConsts_scxRegExprIllegalQuantifier 64767
#define cxEditConsts_cxSDateEOM 64768
#define cxEditConsts_cxSDateNow 64769
#define cxEditConsts_scxSCalcError 64770
#define cxEditConsts_scxSEditRepositoryBlobItem 64771
#define cxEditConsts_scxSEditRepositoryButtonItem 64772
#define cxEditConsts_scxSEditRepositoryCalcItem 64773
#define cxEditConsts_scxSEditRepositoryCheckBoxItem 64774
#define cxEditConsts_scxSEditRepositoryComboBoxItem 64775
#define cxEditConsts_scxSEditRepositoryCurrencyItem 64776
#define cxEditConsts_scxSEditRepositoryDateItem 64777
#define cxEditConsts_scxSEditRepositoryHyperLinkItem 64778
#define cxEditConsts_scxSEditRepositoryImageComboBoxItem 64779
#define cxEditConsts_scxSEditRepositoryImageItem 64780
#define cxEditConsts_scxSEditRepositoryLookupComboBoxItem 64781
#define cxEditConsts_scxSEditRepositoryMaskItem 64782
#define cxEditConsts_scxSEditRepositoryMemoItem 64783
#define cxEditConsts_cxSDateTomorrow 64784
#define cxEditConsts_cxSDateSunday 64785
#define cxEditConsts_cxSDateMonday 64786
#define cxEditConsts_cxSDateTuesday 64787
#define cxEditConsts_cxSDateWednesday 64788
#define cxEditConsts_cxSDateThursday 64789
#define cxEditConsts_cxSDateFriday 64790
#define cxEditConsts_cxSDateSaturday 64791
#define cxEditConsts_cxSDateFirst 64792
#define cxEditConsts_cxSDateSecond 64793
#define cxEditConsts_cxSDateThird 64794
#define cxEditConsts_cxSDateFourth 64795
#define cxEditConsts_cxSDateFifth 64796
#define cxEditConsts_cxSDateSixth 64797
#define cxEditConsts_cxSDateSeventh 64798
#define cxEditConsts_cxSDateBOM 64799
#define cxEditConsts_cxSBlobButtonClose 64800
#define cxEditConsts_cxSBlobMemo 64801
#define cxEditConsts_cxSBlobMemoEmpty 64802
#define cxEditConsts_cxSBlobPicture 64803
#define cxEditConsts_cxSBlobPictureEmpty 64804
#define cxEditConsts_cxSMenuItemCaptionCut 64805
#define cxEditConsts_cxSMenuItemCaptionCopy 64806
#define cxEditConsts_cxSMenuItemCaptionPaste 64807
#define cxEditConsts_cxSMenuItemCaptionDelete 64808
#define cxEditConsts_cxSMenuItemCaptionLoad 64809
#define cxEditConsts_cxSMenuItemCaptionSave 64810
#define cxEditConsts_cxSDatePopupToday 64811
#define cxEditConsts_cxSDatePopupClear 64812
#define cxEditConsts_cxSDateError 64813
#define cxEditConsts_cxSDateToday 64814
#define cxEditConsts_cxSDateYesterday 64815
#define cxFilterConsts_cxSFilterBoxAllCaption 64816
#define cxFilterConsts_cxSFilterBoxCustomCaption 64817
#define cxFilterConsts_cxSFilterBoxBlanksCaption 64818
#define cxFilterConsts_cxSFilterBoxNonBlanksCaption 64819
#define cxEditConsts_cxSEditInvalidRepositoryItem 64820
#define cxEditConsts_cxSEditNumericValueConvertError 64821
#define cxEditConsts_cxSEditPopupCircularReferencingError 64822
#define cxEditConsts_cxSEditTimeConvertError 64823
#define cxEditConsts_cxSEditValidateErrorText 64824
#define cxEditConsts_cxSEditValueOutOfBounds 64825
#define cxEditConsts_cxSEditCheckBoxChecked 64826
#define cxEditConsts_cxSEditCheckBoxGrayed 64827
#define cxEditConsts_cxSEditCheckBoxUnchecked 64828
#define cxEditConsts_cxSRadioGroupDefaultCaption 64829
#define cxEditConsts_cxSBlobButtonOK 64830
#define cxEditConsts_cxSBlobButtonCancel 64831
#define cxFilterConsts_cxSFilterOperatorThisYear 64832
#define cxFilterConsts_cxSFilterOperatorNextWeek 64833
#define cxFilterConsts_cxSFilterOperatorNextMonth 64834
#define cxFilterConsts_cxSFilterOperatorNextYear 64835
#define cxFilterConsts_cxSFilterAndCaption 64836
#define cxFilterConsts_cxSFilterOrCaption 64837
#define cxFilterConsts_cxSFilterNotCaption 64838
#define cxFilterConsts_cxSFilterBlankCaption 64839
#define cxFilterConsts_cxSFilterOperatorIsNull 64840
#define cxFilterConsts_cxSFilterOperatorIsNotNull 64841
#define cxFilterConsts_cxSFilterOperatorBeginsWith 64842
#define cxFilterConsts_cxSFilterOperatorDoesNotBeginWith 64843
#define cxFilterConsts_cxSFilterOperatorEndsWith 64844
#define cxFilterConsts_cxSFilterOperatorDoesNotEndWith 64845
#define cxFilterConsts_cxSFilterOperatorContains 64846
#define cxFilterConsts_cxSFilterOperatorDoesNotContain 64847
#define cxFilterConsts_cxSFilterOperatorGreater 64848
#define cxFilterConsts_cxSFilterOperatorGreaterEqual 64849
#define cxFilterConsts_cxSFilterOperatorLike 64850
#define cxFilterConsts_cxSFilterOperatorNotLike 64851
#define cxFilterConsts_cxSFilterOperatorBetween 64852
#define cxFilterConsts_cxSFilterOperatorNotBetween 64853
#define cxFilterConsts_cxSFilterOperatorInList 64854
#define cxFilterConsts_cxSFilterOperatorNotInList 64855
#define cxFilterConsts_cxSFilterOperatorYesterday 64856
#define cxFilterConsts_cxSFilterOperatorToday 64857
#define cxFilterConsts_cxSFilterOperatorTomorrow 64858
#define cxFilterConsts_cxSFilterOperatorLastWeek 64859
#define cxFilterConsts_cxSFilterOperatorLastMonth 64860
#define cxFilterConsts_cxSFilterOperatorLastYear 64861
#define cxFilterConsts_cxSFilterOperatorThisWeek 64862
#define cxFilterConsts_cxSFilterOperatorThisMonth 64863
#define OleConst_SLinkProperties 64864
#define OleConst_SInvalidLinkSource 64865
#define OleConst_SCannotBreakLink 64866
#define OleConst_SPropDlgCaption 64867
#define cxDataConsts_cxSDataReadError 64868
#define cxDataConsts_cxSDataWriteError 64869
#define cxDataConsts_cxSDataItemExistError 64870
#define cxDataConsts_cxSDataRecordIndexError 64871
#define cxDataConsts_cxSDataItemIndexError 64872
#define cxDataConsts_cxSDataRowIndexError 64873
#define cxDataConsts_cxSDBDetailFilterControllerNotFound 64874
#define cxDataConsts_cxSDBNotInGridMode 64875
#define cxFilterConsts_cxSFilterOperatorEqual 64876
#define cxFilterConsts_cxSFilterOperatorNotEqual 64877
#define cxFilterConsts_cxSFilterOperatorLess 64878
#define cxFilterConsts_cxSFilterOperatorLessEqual 64879
#define bdeconst_SNoParameterType 64880
#define bdeconst_SLoginError 64881
#define bdeconst_SInitError 64882
#define bdeconst_SIDAPILangID 64883
#define bdeconst_SBDEError 64884
#define bdeconst_STruncationError 64885
#define bdeconst_SResultName 64886
#define bdeconst_SIndexDoesNotExist 64887
#define bdeconst_SNoTableName 64888
#define bdeconst_SNoDataSetField 64889
#define bdeconst_SNoCachedUpdates 64890
#define bdeconst_SInvalidAliasName 64891
#define bdeconst_SNoFieldAccess 64892
#define bdeconst_SUntitled 64893
#define bdeconst_SUpdateFailed 64894
#define bdeconst_SLocalTransDirty 64895
#define bdeconst_SAutoSessionExists 64896
#define bdeconst_SAutoSessionActive 64897
#define bdeconst_SDuplicateDatabaseName 64898
#define bdeconst_SDuplicateSessionName 64899
#define bdeconst_SInvalidSessionName 64900
#define bdeconst_SDatabaseNameMissing 64901
#define bdeconst_SSessionNameMissing 64902
#define bdeconst_SDatabaseOpen 64903
#define bdeconst_SDatabaseClosed 64904
#define bdeconst_SDatabaseHandleSet 64905
#define bdeconst_SSessionActive 64906
#define bdeconst_SHandleError 64907
#define bdeconst_SNoReferenceTableName 64908
#define bdeconst_SCompositeIndexError 64909
#define bdeconst_SEmptySQLStatement 64910
#define bdeconst_SNoParameterValue 64911
#define RzBorder_sRzColorBtnFace 64912
#define RzBorder_sRzColorBtnShadow 64913
#define RzBorder_sRzColorGrayText 64914
#define RzBorder_sRzColorBtnText 64915
#define RzBorder_sRzColorInactiveCaptionText 64916
#define RzBorder_sRzColorBtnHighlight 64917
#define RzBorder_sRzColor3DDkShadow 64918
#define RzBorder_sRzColor3DLight 64919
#define RzBorder_sRzColorInfoText 64920
#define RzBorder_sRzColorInfoBk 64921
#define RzBorder_sRzColorHotLight 64922
#define RzBorder_sRzColorGradientActiveCaption 64923
#define RzBorder_sRzColorGradientInactiveCaption 64924
#define RzBorder_sRzColorMenuHighlight 64925
#define RzBorder_sRzColorMenuBar 64926
#define bdeconst_SAutoSessionExclusive 64927
#define RzBorder_sRzColorWhite 64928
#define RzBorder_sRzColorScrollBar 64929
#define RzBorder_sRzColorBackground 64930
#define RzBorder_sRzColorActiveCaption 64931
#define RzBorder_sRzColorInactiveCaption 64932
#define RzBorder_sRzColorMenu 64933
#define RzBorder_sRzColorWindow 64934
#define RzBorder_sRzColorWindowFrame 64935
#define RzBorder_sRzColorMenuText 64936
#define RzBorder_sRzColorWindowText 64937
#define RzBorder_sRzColorCaptionText 64938
#define RzBorder_sRzColorActiveBorder 64939
#define RzBorder_sRzColorInactiveBorder 64940
#define RzBorder_sRzColorAppWorkSpace 64941
#define RzBorder_sRzColorHighlight 64942
#define RzBorder_sRzColorHighlightText 64943
#define RzBorder_sRzColorGray40 64944
#define RzBorder_sRzColorPink 64945
#define RzBorder_sRzColorGold 64946
#define RzBorder_sRzColorYellow 64947
#define RzBorder_sRzColorBrightGreen 64948
#define RzBorder_sRzColorTurquoise 64949
#define RzBorder_sRzColorSkyBlue 64950
#define RzBorder_sRzColorPlum 64951
#define RzBorder_sRzColorGray25 64952
#define RzBorder_sRzColorRose 64953
#define RzBorder_sRzColorTan 64954
#define RzBorder_sRzColorLightYellow 64955
#define RzBorder_sRzColorLightGreen 64956
#define RzBorder_sRzColorLightTurquoise 64957
#define RzBorder_sRzColorPaleBlue 64958
#define RzBorder_sRzColorLavender 64959
#define RzBorder_sRzColorGray80 64960
#define RzBorder_sRzColorDarkRed 64961
#define RzBorder_sRzColorOrange 64962
#define RzBorder_sRzColorDarkYellow 64963
#define RzBorder_sRzColorGreen 64964
#define RzBorder_sRzColorTeal 64965
#define RzBorder_sRzColorBlue 64966
#define RzBorder_sRzColorBlueGray 64967
#define RzBorder_sRzColorGray50 64968
#define RzBorder_sRzColorRed 64969
#define RzBorder_sRzColorLightOrange 64970
#define RzBorder_sRzColorLime 64971
#define RzBorder_sRzColorSeaGreen 64972
#define RzBorder_sRzColorAqua 64973
#define RzBorder_sRzColorLightBlue 64974
#define RzBorder_sRzColorViolet 64975
#define ppJvInspector_sppJvInspNoGenReg 64976
#define ppJvInspector_sppJvInspPaintNotActive 64977
#define ppJvInspector_sppJvInspPaintOnlyUsedOnce 64978
#define ppJvInspector_sppJvAssertSetTopIndex 64979
#define ppJvInspector_sppJvAssertInspectorPainter 64980
#define ppJvInspector_sppJvAssertDataParent 64981
#define ppJvInspector_sppJvAssertParent 64982
#define ppJvInspector_sppJvAssertPropInfo 64983
#define ppInspector_sJvInspDataNoSelectionController 64984
#define RzBorder_sRzColorBlack 64985
#define RzBorder_sRzColorBrown 64986
#define RzBorder_sRzColorOliveGreen 64987
#define RzBorder_sRzColorDarkGreen 64988
#define RzBorder_sRzColorDarkTeal 64989
#define RzBorder_sRzColorDarkBlue 64990
#define RzBorder_sRzColorIndigo 64991
#define ppJclResources_ppJclRsRTTIBasedOn 64992
#define ppJclResources_ppJclRsRTTIFloatType 64993
#define ppJvInspector_sppJvInspItemHasParent 64994
#define ppJvInspector_sppJvInspItemValueException 64995
#define ppJvInspector_sppJvInspItemUnInitialized 64996
#define ppJvInspector_sppJvInspItemUnassigned 64997
#define ppJvInspector_sppJvInspItemNoValue 64998
#define ppJvInspector_sppJvInspItemNotAChild 64999
#define ppJvInspector_sppJvInspItemColNotFound 65000
#define ppJvInspector_sppJvInspItemItemIsNotCol 65001
#define ppJvInspector_sppJvInspItemInvalidPropValue 65002
#define ppJvInspector_sppJvInspDataNoAccessAs 65003
#define ppJvInspector_sppJvInspDataNotInit 65004
#define ppJvInspector_sppJvInspDataNotAssigned 65005
#define ppJvInspector_sppJvInspDataNoValue 65006
#define ppJvInspector_sppJvInspDataStrTooLong 65007
#define RBTableGrid_rsReadCellsError 65008
#define RBTableGrid_rsUnsupport 65009
#define RBCheckBox_rsCheckBox 65010
#define RBCheckBox_rsCheckBoxCaption 65011
#define ppJclResources_ppJclRsRTTIValueOutOfRange 65012
#define ppJclResources_ppJclRsRTTIUnknownIdentifier 65013
#define ppJclResources_ppJclRsRTTIOrdinal 65014
#define ppJclResources_ppJclRsRTTITypeError 65015
#define ppJclResources_ppJclRsRTTITypeInfoAt 65016
#define ppJclResources_ppJclRsRTTIName 65017
#define ppJclResources_ppJclRsRTTITypeKind 65018
#define ppJclResources_ppJclRsRTTIOrdinalType 65019
#define ppJclResources_ppJclRsRTTIMinValue 65020
#define ppJclResources_ppJclRsRTTIMaxValue 65021
#define ppJclResources_ppJclRsRTTINameList 65022
#define ppJclResources_ppJclRsRTTIUnitName 65023
#define TXString_SPRNDefaultExt 65024
#define TXString_SPRNDefaultExtFilter 65025
#define TXString_SPRNDeviceDescription 65026
#define ZLibConst_sInvalidStreamOp 65027
#define IdResourceStrings_RSStatusResolving 65028
#define IdResourceStrings_RSStatusConnecting 65029
#define IdResourceStrings_RSStatusConnected 65030
#define IdResourceStrings_RSStatusDisconnecting 65031
#define IdResourceStrings_RSStatusDisconnected 65032
#define IdResourceStrings_RSStatusText 65033
#define IdResourceStrings_RSCoderNoTableEntryNotFound 65034
#define IdResourceStrings_RSTIdMessagePartCreate 65035
#define RBTableGrid_rsGridPack 65036
#define RBTableGrid_rsTableGrid 65037
#define RBTableGrid_rsDBTableGrid 65038
#define RBTableGrid_rsCrossTable 65039
#define TXString_SXTMDefaultExt 65040
#define TXString_SXTMDefaultExtFilter 65041
#define TXString_SXTMDeviceDescription 65042
#define TXString_SHTMDeviceName 65043
#define TXString_SHTMDefaultExt 65044
#define TXString_SHTMDefaultExtFilter 65045
#define TXString_SHTMDeviceDescription 65046
#define TXString_SRTFDeviceName 65047
#define TXString_SRTFDefaultExt 65048
#define TXString_SRTFDefaultExtFilter 65049
#define TXString_SRTFDeviceDescription 65050
#define TXString_SPDFDeviceName 65051
#define TXString_SPDFDefaultExt 65052
#define TXString_SPDFDefaultExtFilter 65053
#define TXString_SPDFDeviceDescription 65054
#define TXString_SPRNDeviceName 65055
#define TXString_SWK1DefaultExt 65056
#define TXString_SWK1DefaultExtFilter 65057
#define TXString_SWK1DeviceDescription 65058
#define TXString_SWQ1DeviceName 65059
#define TXString_SWQ1DefaultExt 65060
#define TXString_SWQ1DefaultExtFilter 65061
#define TXString_SWQ1DeviceDescription 65062
#define TXString_SXLSDeviceName 65063
#define TXString_SXLSDefaultExt 65064
#define TXString_SXLSDefaultExtFilter 65065
#define TXString_SXLSDeviceDescription 65066
#define TXString_SBMPDeviceName 65067
#define TXString_SBMPDefaultExt 65068
#define TXString_SBMPDefaultExtFilter 65069
#define TXString_SBMPDeviceDescription 65070
#define TXString_SXTMDeviceName 65071
#define ppSynEditStrConst_ppSYNS_AttrDelimitedIdentifier 65072
#define ppSynEditStrConst_ppSynS_AttrException 65073
#define ppSynEditStrConst_ppSynS_AttrFunction 65074
#define ppSynEditStrConst_ppSynS_AttrIdentifier 65075
#define ppSynEditStrConst_ppSynS_AttrNumber 65076
#define ppSynEditStrConst_ppSynS_AttrPLSQL 65077
#define ppSynEditStrConst_ppSynS_AttrReservedWord 65078
#define ppSynEditStrConst_ppSynS_AttrSpace 65079
#define ppSynEditStrConst_ppSynS_AttrSQLPlus 65080
#define ppSynEditStrConst_ppSynS_AttrString 65081
#define ppSynEditStrConst_ppSynS_AttrSymbol 65082
#define ppSynEditStrConst_ppSynS_AttrTableName 65083
#define ppSynEditStrConst_ppSynS_AttrVariable 65084
#define ppSynEditStrConst_ppSynS_FilterSQL 65085
#define ppSynEditStrConst_ppSynS_LangSQL 65086
#define TXString_SWK1DeviceName 65087
#define VDBConsts_SInsertRecord 65088
#define VDBConsts_SDeleteRecord 65089
#define VDBConsts_SEditRecord 65090
#define VDBConsts_SPostEdit 65091
#define VDBConsts_SCancelEdit 65092
#define VDBConsts_SRefreshRecord 65093
#define VDBConsts_SDeleteRecordQuestion 65094
#define VDBConsts_SDataSourceFixed 65095
#define VDBConsts_SNotReplicatable 65096
#define VDBConsts_SPropDefByLookup 65097
#define VDBConsts_STooManyColumns 65098
#define VDBConsts_SRemoteLogin 65099
#define ppSynEditStrConst_ppSynS_AttrComment 65100
#define ppSynEditStrConst_ppSYNS_AttrConditionalComment 65101
#define ppSynEditStrConst_ppSynS_AttrDataType 65102
#define ppSynEditStrConst_ppSynS_AttrDefaultPackage 65103
#define ppSt2DBarC_StEBadNumRows 65104
#define ppSt2DBarC_StEBadPostalCode 65105
#define ppSt2DBarC_StEBadQuietZone 65106
#define ppSt2DBarC_StECodeTooLarge 65107
#define ppSt2DBarC_StEGLIOutOfRange 65108
#define ppSt2DBarC_StEInvalidCodeword 65109
#define ppSt2DBarC_StENeedBarHeight 65110
#define ppSt2DBarC_StENeedHorz 65111
#define ppSt2DBarC_StENeedVert 65112
#define JConsts_sChangeJPGSize 65113
#define JConsts_sJPEGError 65114
#define JConsts_sJPEGImageFile 65115
#define VDBConsts_SFirstRecord 65116
#define VDBConsts_SPriorRecord 65117
#define VDBConsts_SNextRecord 65118
#define VDBConsts_SLastRecord 65119
#define ComStrs_sFailSetCalDateTime 65120
#define ComStrs_sFailSetCalMaxSelRange 65121
#define ComStrs_sFailSetCalMinMaxRange 65122
#define ComStrs_sFailsetCalSelRange 65123
#define ppTB2Consts_ppSTBToolbarIndexOutOfBounds 65124
#define ppTB2Consts_ppSTBToolbarItemReinserted 65125
#define ppTB2Consts_ppSTBViewerNotFound 65126
#define ppTB2Consts_ppSTBChevronItemMoreButtonsHint 65127
#define ppTB2Consts_ppSTBMRUListItemDefCaption 65128
#define ppTB2Consts_ppSTBDockParentNotAllowed 65129
#define ppTB2Consts_ppSTBDockCannotChangePosition 65130
#define ppZLib_sInvalidStreamOp 65131
#define ppSt2DBarC_StEBadBarHeight 65132
#define ppSt2DBarC_StEBadBarHeightToWidth 65133
#define ppSt2DBarC_StEBadBarWidth 65134
#define ppSt2DBarC_StEBadNumCols 65135
#define ComStrs_sTabFailGetObject 65136
#define ComStrs_sTabFailSet 65137
#define ComStrs_sTabFailSetObject 65138
#define ComStrs_sTabMustBeMultiLine 65139
#define ComStrs_sInvalidIndex 65140
#define ComStrs_sInsertError 65141
#define ComStrs_sInvalidOwner 65142
#define ComStrs_sRichEditInsertError 65143
#define ComStrs_sRichEditLoadFail 65144
#define ComStrs_sRichEditSaveFail 65145
#define ComStrs_sUDAssociated 65146
#define ComStrs_sPageIndexError 65147
#define ComStrs_sInvalidComCtl32 65148
#define ComStrs_sDateTimeMax 65149
#define ComStrs_sDateTimeMin 65150
#define ComStrs_sNeedAllowNone 65151
#define ADOConst_SNoDetailFilter 65152
#define ADOConst_SBookmarksRequired 65153
#define ADOConst_SMissingCommandText 65154
#define ADOConst_SNoResultSet 65155
#define ADOConst_SADOCreateError 65156
#define ADOConst_SEventsNotSupported 65157
#define ADOConst_SUsupportedFieldType 65158
#define ADOConst_SConnectionRequired 65159
#define ADOConst_SCantRequery 65160
#define ADOConst_SNoFilterOptions 65161
#define ADOConst_SRecordsetNotOpen 65162
#define ADODB_sNameAttr 65163
#define ADODB_sValueAttr 65164
#define ComStrs_sTabFailClear 65165
#define ComStrs_sTabFailDelete 65166
#define ComStrs_sTabFailRetrieve 65167
#define DBConsts_SParameterNotFound 65168
#define DBConsts_SInvalidVersion 65169
#define DBConsts_SBadFieldType 65170
#define DBConsts_SProviderSQLNotSupported 65171
#define DBConsts_SProviderExecuteNotSupported 65172
#define DBConsts_SExprNoAggOnCalcs 65173
#define DBConsts_SDataSetUnidirectional 65174
#define DBConsts_SUnassignedVar 65175
#define DBConsts_SRecordNotFound 65176
#define DBConsts_SBcdOverflow 65177
#define DBConsts_SInvalidBcdValue 65178
#define DBConsts_SInvalidFormatType 65179
#define DBConsts_SCouldNotParseTimeStamp 65180
#define DBConsts_SInvalidSqlTimeStamp 65181
#define ADOConst_SInvalidEnumValue 65182
#define ADOConst_SMissingConnection 65183
#define DBConsts_SExprExpected 65184
#define DBConsts_SExprBadField 65185
#define DBConsts_SExprBadNullTest 65186
#define DBConsts_SExprRangeError 65187
#define DBConsts_SExprIncorrect 65188
#define DBConsts_SExprNothing 65189
#define DBConsts_SExprTypeMis 65190
#define DBConsts_SExprBadScope 65191
#define DBConsts_SExprNoArith 65192
#define DBConsts_SExprNotAgg 65193
#define DBConsts_SExprBadConst 65194
#define DBConsts_SExprNoAggFilter 65195
#define DBConsts_SExprEmptyInList 65196
#define DBConsts_SInvalidKeywordUse 65197
#define DBConsts_STextFalse 65198
#define DBConsts_STextTrue 65199
#define DBConsts_SCircularDataLink 65200
#define DBConsts_SLookupInfoError 65201
#define DBConsts_SDataSourceChange 65202
#define DBConsts_SDataSetOpen 65203
#define DBConsts_SNotEditing 65204
#define DBConsts_SDataSetClosed 65205
#define DBConsts_SDataSetEmpty 65206
#define DBConsts_SDataSetReadOnly 65207
#define DBConsts_SNestedDataSetClass 65208
#define DBConsts_SExprTermination 65209
#define DBConsts_SExprNameError 65210
#define DBConsts_SExprStringError 65211
#define DBConsts_SExprInvalidChar 65212
#define DBConsts_SExprNoLParen 65213
#define DBConsts_SExprNoRParen 65214
#define DBConsts_SExprNoRParenOrComma 65215
#define DBConsts_SInvalidBoolValue 65216
#define DBConsts_SInvalidFloatValue 65217
#define DBConsts_SFieldTypeMismatch 65218
#define DBConsts_SFieldSizeMismatch 65219
#define DBConsts_SInvalidVarByteArray 65220
#define DBConsts_SFieldOutOfRange 65221
#define DBConsts_SFieldRequired 65222
#define DBConsts_SDataSetMissing 65223
#define DBConsts_SInvalidCalcType 65224
#define DBConsts_SFieldReadOnly 65225
#define DBConsts_SFieldIndexError 65226
#define DBConsts_SNoFieldIndexes 65227
#define DBConsts_SNotIndexField 65228
#define DBConsts_SIndexFieldMissing 65229
#define DBConsts_SNoIndexForFields 65230
#define DBConsts_SIndexNotFound 65231
#define Consts_SListBoxMustBeVirtual 65232
#define HelpIntfs_hNoTableOfContents 65233
#define HelpIntfs_hNothingFound 65234
#define HelpIntfs_hNoContext 65235
#define HelpIntfs_hNoTopics 65236
#define DBConsts_SInvalidFieldSize 65237
#define DBConsts_SInvalidFieldKind 65238
#define DBConsts_SUnknownFieldType 65239
#define DBConsts_SFieldNameMissing 65240
#define DBConsts_SDuplicateFieldName 65241
#define DBConsts_SFieldNotFound 65242
#define DBConsts_SFieldAccessError 65243
#define DBConsts_SFieldValueError 65244
#define DBConsts_SFieldRangeError 65245
#define DBConsts_SBcdFieldRangeError 65246
#define DBConsts_SInvalidIntegerValue 65247
#define Consts_SCannotOpenClipboard 65248
#define Consts_SDefault 65249
#define Consts_SInvalidMemoSize 65250
#define Consts_SInvalidPrinterOp 65251
#define Consts_SNoDefaultPrinter 65252
#define Consts_SDuplicateMenus 65253
#define Consts_SPictureLabel 65254
#define Consts_SPictureDesc 65255
#define Consts_SPreviewLabel 65256
#define Consts_SDockedCtlNeedsName 65257
#define Consts_SDockTreeRemoveError 65258
#define Consts_SDockZoneNotFound 65259
#define Consts_SDockZoneHasNoCtl 65260
#define Consts_SMultiSelectRequired 65261
#define Consts_SSeparator 65262
#define Consts_SErrorSettingCount 65263
#define Consts_SmkcHome 65264
#define Consts_SmkcLeft 65265
#define Consts_SmkcUp 65266
#define Consts_SmkcRight 65267
#define Consts_SmkcDown 65268
#define Consts_SmkcIns 65269
#define Consts_SmkcDel 65270
#define Consts_SmkcShift 65271
#define Consts_SmkcCtrl 65272
#define Consts_SmkcAlt 65273
#define Consts_srNone 65274
#define Consts_SOutOfRange 65275
#define Consts_sAllFilter 65276
#define Consts_SInsertLineError 65277
#define Consts_SInvalidClipFmt 65278
#define Consts_SIconToClipboard 65279
#define Consts_SMsgDlgCancel 65280
#define Consts_SMsgDlgHelp 65281
#define Consts_SMsgDlgAbort 65282
#define Consts_SMsgDlgRetry 65283
#define Consts_SMsgDlgIgnore 65284
#define Consts_SMsgDlgAll 65285
#define Consts_SMsgDlgNoToAll 65286
#define Consts_SMsgDlgYesToAll 65287
#define Consts_SmkcBkSp 65288
#define Consts_SmkcTab 65289
#define Consts_SmkcEsc 65290
#define Consts_SmkcEnter 65291
#define Consts_SmkcSpace 65292
#define Consts_SmkcPgUp 65293
#define Consts_SmkcPgDn 65294
#define Consts_SmkcEnd 65295
#define Consts_SAbortButton 65296
#define Consts_SAllButton 65297
#define Consts_SCannotDragForm 65298
#define Consts_SVMetafiles 65299
#define Consts_SVEnhMetafiles 65300
#define Consts_SVIcons 65301
#define Consts_SVBitmaps 65302
#define Consts_SMaskErr 65303
#define Consts_SMaskEditErr 65304
#define Consts_SMsgDlgWarning 65305
#define Consts_SMsgDlgError 65306
#define Consts_SMsgDlgInformation 65307
#define Consts_SMsgDlgConfirm 65308
#define Consts_SMsgDlgYes 65309
#define Consts_SMsgDlgNo 65310
#define Consts_SMsgDlgOK 65311
#define Consts_SNotPrinting 65312
#define Consts_SPrinting 65313
#define Consts_SPrinterIndexError 65314
#define Consts_SInvalidPrinter 65315
#define Consts_SDeviceOnPort 65316
#define Consts_SGroupIndexTooLow 65317
#define Consts_SNoMDIForm 65318
#define Consts_SControlParentSetToSelf 65319
#define Consts_SOKButton 65320
#define Consts_SCancelButton 65321
#define Consts_SYesButton 65322
#define Consts_SNoButton 65323
#define Consts_SHelpButton 65324
#define Consts_SCloseButton 65325
#define Consts_SIgnoreButton 65326
#define Consts_SRetryButton 65327
#define Consts_SImageReadFail 65328
#define Consts_SImageWriteFail 65329
#define Consts_SWindowDCError 65330
#define Consts_SWindowClass 65331
#define Consts_SCannotFocus 65332
#define Consts_SParentRequired 65333
#define Consts_SParentGivenNotAParent 65334
#define Consts_SMDIChildNotVisible 65335
#define Consts_SVisibleChanged 65336
#define Consts_SCannotShowModal 65337
#define Consts_SScrollBarRange 65338
#define Consts_SPropertyOutOfRange 65339
#define Consts_SMenuIndexError 65340
#define Consts_SMenuReinserted 65341
#define Consts_SMenuNotFound 65342
#define Consts_SNoTimers 65343
#define Consts_SInvalidTabStyle 65344
#define Consts_SInvalidBitmap 65345
#define Consts_SInvalidIcon 65346
#define Consts_SInvalidMetafile 65347
#define Consts_SInvalidPixelFormat 65348
#define Consts_SInvalidImage 65349
#define Consts_SScanLine 65350
#define Consts_SChangeIconSize 65351
#define Consts_SUnknownExtension 65352
#define Consts_SUnknownClipboardFormat 65353
#define Consts_SOutOfResources 65354
#define Consts_SNoCanvasHandle 65355
#define Consts_SInvalidImageSize 65356
#define Consts_SInvalidImageList 65357
#define Consts_SReplaceImage 65358
#define Consts_SImageIndexError 65359
#define RTLConsts_SThreadCreateError 65360
#define RTLConsts_SThreadError 65361
#define ComConst_SCreateRegKeyError 65362
#define ComConst_SOleError 65363
#define ComConst_STypeInfoMissing 65364
#define ComConst_SBadTypeInfo 65365
#define ComConst_SDispIntfMissing 65366
#define ComConst_SNoMethod 65367
#define ComConst_SVarNotObject 65368
#define ComConst_STooManyParams 65369
#define ComConst_SDAXError 65370
#define ComConst_SAutomationWarning 65371
#define ComConst_SNoCloseActiveServer1 65372
#define ComConst_SNoCloseActiveServer2 65373
#define Consts_SInvalidTabIndex 65374
#define Consts_SInvalidTabPosition 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
RzTabs_sRzRestoringDCError, "Error restoring device context"
RzTabs_sRzCreateRegionError, "Error creating region"
RzTabs_sRzPageIndexOutOfRange, "%d is an invalid PageIndex value. PageIndex must be between 0 and %d"
RzTabs_sRzInvalidVisibilityChange, "You cannot change the Visible property of a page"
dxGrFCmn_dxSFilterBoxAllCaption, "(All)"
dxGrFCmn_dxSFilterBoxCustomCaption, "(Custom...)"
dxGrFCmn_dxSFilterBoxBlanksCaption, "(Blanks)"
dxGrFCmn_dxSFilterBoxNonBlanksCaption, "(NonBlanks)"
cxPCConsts_scxPCImageListIndexError, "Index (%d) must be between 0 and %d"
cxPCConsts_scxPCNoBaseImages, "BaseImages is not assigned"
cxPCConsts_scxPCNoRegisteredStyles, "There are no styles registered"
cxPCConsts_scxPCPageIndexError, "%d is an invalid PageIndex value. PageIndex must be between 0 and %d"
cxPCConsts_scxPCPainterClassError, "PCPainterClass is nil"
cxPCConsts_scxPCTabCountEqualsZero, "Tabs.Count = 0"
cxPCConsts_scxPCTabIndexError, "Tab's index (%d) out of bounds"
cxPCConsts_scxPCTabVisibleIndexOutsOfBounds, "TabVisibleIndex (%d) must be between 0 and %d"
cxPCConsts_scxPCVisibleTabListEmpty, "There are no visible tabs"
RzTabs_sRzIncorrectNumberOfPoints, "Incorrect number of points in tab shape"
RzTabs_sRzTabRegionCapacityError, "Capacity must be -1 (to cache all regions) or > 0"
RzTabs_sRzSavingDCError, "Error saving device context"
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..."
dxGrFCmn_dxSFilterOperatorEqual, "equals"
dxGrFCmn_dxSFilterOperatorNotEqual, "does not equal"
dxGrFCmn_dxSFilterOperatorGreater, "is greater than"
dxGrFCmn_dxSFilterOperatorGreaterEqual, "is greater than or equal to"
dxGrFCmn_dxSFilterOperatorLess, "is less than"
dxGrFCmn_dxSFilterOperatorLessEqual, "is less than or equal to"
dxGrFCmn_dxSFilterOperatorBlanks, "blanks"
dxGrFCmn_dxSFilterOperatorNonBlanks, "non blanks"
dxGrFCmn_dxSFilterInvalidValue, "Invalid value"
dxGrFCmn_dxSFilterStatusCloseButtonHint, "Clear Filter"
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"
cxFilterControlStrs_cxSFilterControlDialogActionCancelCaption, "Cancel"
cxFilterControlStrs_cxSFilterControlDialogFileExt, "flt"
cxFilterControlStrs_cxSFilterControlDialogFileFilter, "Filters (*.flt)|*.flt"
cxGridStrs_scxGridDeletingConfirmationCaption, "Confirm"
cxGridStrs_scxGridDeletingFocusedConfirmationText, "Delete record?"
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"
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"
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'"
cxEditConsts_scxRegExprUnnecessary, "Unnecessary '%s'"
cxEditConsts_scxRegExprIncorrectSpace, "Incorrect space after '\\'"
cxEditConsts_scxRegExprNotCompiled, "Regular expression does not compiled"
cxEditConsts_scxMaskEditRegExprError, "Regular expression errors:"
cxEditConsts_scxMaskEditInvalidEditValue, "The edit value is invalid"
cxFilterControlStrs_cxSFilterBoolOperatorAnd, "AND"
cxFilterControlStrs_cxSFilterBoolOperatorOr, "OR"
cxFilterControlStrs_cxSFilterBoolOperatorNotAnd, "NOT AND"
cxEditConsts_scxSEditRepositoryMRUItem, "MRUEdit|Represents a text editor displaying the list of most recently used items (MRU) within a dropdown window"
cxEditConsts_scxSEditRepositoryPopupItem, "PopupEdit|Represents an edit control with a dropdown list"
cxEditConsts_scxSEditRepositorySpinItem, "SpinEdit|Represents a spin editor"
cxEditConsts_scxSEditRepositoryRadioGroupItem, "RadioGroup|Represents a group of radio buttons"
cxEditConsts_scxSEditRepositoryTextItem, "TextEdit|Represents a single line text editor"
cxEditConsts_scxSEditRepositoryTimeItem, "TimeEdit|Represents an editor displaying time values"
cxEditConsts_scxRegExprLine, "Line"
cxEditConsts_scxRegExprChar, "Char"
cxEditConsts_scxRegExprNotAssignedSourceStream, "The source stream does not assigned"
cxEditConsts_scxRegExprEmptySourceStream, "The source stream is empty"
cxEditConsts_scxRegExprCantUsePlusQuantifier, "The '+' quantifier can't be applied here"
cxEditConsts_scxRegExprCantUseStarQuantifier, "The '*' quantifier can't be applied here"
cxEditConsts_scxRegExprCantCreateEmptyAlt, "The alternative should not be empty"
cxEditConsts_scxRegExprCantCreateEmptyBlock, "The block should not be empty"
cxEditConsts_scxRegExprIllegalSymbol, "Illegal '%s'"
cxEditConsts_scxRegExprIllegalQuantifier, "Illegal quantifier '%s'"
cxEditConsts_cxSDateEOM, "eom"
cxEditConsts_cxSDateNow, "now"
cxEditConsts_scxSCalcError, "Error"
cxEditConsts_scxSEditRepositoryBlobItem, "BlobEdit|Represents the BLOB editor"
cxEditConsts_scxSEditRepositoryButtonItem, "ButtonEdit|Represents an edit control with embedded buttons"
cxEditConsts_scxSEditRepositoryCalcItem, "CalcEdit|Represents an edit control with a dropdown calculator window"
cxEditConsts_scxSEditRepositoryCheckBoxItem, "CheckBox|Represents a check box control that allows selecting an option"
cxEditConsts_scxSEditRepositoryComboBoxItem, "ComboBox|Represents the combo box editor"
cxEditConsts_scxSEditRepositoryCurrencyItem, "CurrencyEdit|Represents an editor enabling editing currency data"
cxEditConsts_scxSEditRepositoryDateItem, "DateEdit|Represents an edit control with a dropdown calendar"
cxEditConsts_scxSEditRepositoryHyperLinkItem, "HyperLink|Represents a text editor with hyperlink functionality"
cxEditConsts_scxSEditRepositoryImageComboBoxItem, "ImageComboBox|Represents an editor displaying the list of images and text strings within the dropdown window"
cxEditConsts_scxSEditRepositoryImageItem, "Image|Represents an image editor"
cxEditConsts_scxSEditRepositoryLookupComboBoxItem, "LookupComboBox|Represents a lookup combo box control"
cxEditConsts_scxSEditRepositoryMaskItem, "MaskEdit|Represents a generic masked edit control."
cxEditConsts_scxSEditRepositoryMemoItem, "Memo|Represents an edit control that allows editing memo data"
cxEditConsts_cxSDateTomorrow, "tomorrow"
cxEditConsts_cxSDateSunday, "Sunday"
cxEditConsts_cxSDateMonday, "Monday"
cxEditConsts_cxSDateTuesday, "Tuesday"