forked from MSH/RxSolution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxSolution.drc
2202 lines (2199 loc) · 106 KB
/
RxSolution.drc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* VER140
Generated by the Borland Delphi Pascal Compiler
because -GD or --drc was supplied to the compiler.
This file contains compiler-generated resources that
were bound to the executable.
If this file is empty, then no compiler-generated
resources were bound to the produced executable.
*/
#define RzShellConsts_SShKey_Copy 64432
#define RzShellConsts_SShKey_Cut 64433
#define RzShellConsts_SShKey_Paste 64434
#define RzShellConsts_SShKey_Refresh 64435
#define RzShellConsts_SShKey_Edit 64436
#define RzShellConsts_SDialogFontName 64437
#define RzShellConsts_SColumnSize 64448
#define RzShellConsts_SColumnType 64449
#define RzShellConsts_SColumnModified 64450
#define RzShellConsts_SSystemFolder 64451
#define RzShellConsts_SPropertiesContext 64452
#define RzShellConsts_SPasteContext 64453
#define RzShellConsts_SViewContext 64454
#define RzShellConsts_SViewLargeIconsContext 64455
#define RzShellConsts_SViewSmallIconsContext 64456
#define RzShellConsts_SViewListContext 64457
#define RzShellConsts_SViewDetailsContext 64458
#define RzShellConsts_SViewListHint 64459
#define RzShellConsts_SViewDetailsHint 64460
#define RzShellConsts_SShowTreeHint 64461
#define RzShellConsts_SShKey_SelectAll 64462
#define RzShellConsts_SShKey_Delete 64463
#define RzShellConsts_SOpenAsReadOnly 64464
#define RzShellConsts_SViewLargeIconsMenu 64465
#define RzShellConsts_SViewSmallIconsMenu 64466
#define RzShellConsts_SViewListMenu 64467
#define RzShellConsts_SViewDetailsMenu 64468
#define RzShellConsts_SEditPasteMenu 64469
#define RzShellConsts_SPropertiesMenu 64470
#define RzShellConsts_SViewMenu 64471
#define RzShellConsts_SNewMenu 64472
#define RzShellConsts_SNewFolderMenu 64473
#define RzShellConsts_SCreateFolderContext 64474
#define RzShellConsts_SFilesizeKB 64475
#define RzShellConsts_SNewFolder 64476
#define RzShellConsts_SNewPopupContext 64477
#define RzShellConsts_SUnableToCreateFolder 64478
#define RzShellConsts_SColumnName 64479
#define RzTabs_sRzInvalidVisibilityChange 64480
#define RzShellConsts_SFileExistsReplace 64481
#define RzShellConsts_SOpenCaption 64482
#define RzShellConsts_SFileNotFound 64483
#define RzShellConsts_SFilenameIsInvalid 64484
#define RzShellConsts_SExistsAndIsReadOnly 64485
#define RzShellConsts_SDoesNotExistCreate 64486
#define RzShellConsts_SThereCanBeOnlyOne 64487
#define RzShellConsts_SUpOneLevelHint 64488
#define RzShellConsts_SCreateNewFolderHint 64489
#define RzShellConsts_SLookIn 64490
#define RzShellConsts_SFileName 64491
#define RzShellConsts_SFilesOfType 64492
#define RzShellConsts_SOpenButton 64493
#define RzShellConsts_SCancelButton 64494
#define RzShellConsts_SHelpButton 64495
#define cxFilterControlStrs_cxSFilterControlDialogFileExt 64496
#define cxFilterControlStrs_cxSFilterControlDialogFileFilter 64497
#define cxGridStrs_scxGridDeletingConfirmationCaption 64498
#define cxGridStrs_scxGridDeletingFocusedConfirmationText 64499
#define cxGridStrs_scxGridDeletingSelectedConfirmationText 64500
#define cxGridStrs_scxGridFilterIsEmpty 64501
#define cxGridStrs_scxGridCustomizationFormCaption 64502
#define cxGridStrs_scxGridCustomizationFormColumnsPageCaption 64503
#define cxGridStrs_scxGridGroupByBoxCaption 64504
#define cxGridStrs_scxGridFilterCustomizeButtonCaption 64505
#define RzTabs_sRzIncorrectNumberOfPoints 64506
#define RzTabs_sRzTabRegionCapacityError 64507
#define RzTabs_sRzSavingDCError 64508
#define RzTabs_sRzRestoringDCError 64509
#define RzTabs_sRzCreateRegionError 64510
#define RzTabs_sRzPageIndexOutOfRange 64511
#define cxFilterControlStrs_cxSFilterDialogInvalidValue 64512
#define cxFilterControlStrs_cxSFilterDialogUse 64513
#define cxFilterControlStrs_cxSFilterDialogSingleCharacter 64514
#define cxFilterControlStrs_cxSFilterDialogCharactersSeries 64515
#define cxFilterControlStrs_cxSFilterDialogOperationAnd 64516
#define cxFilterControlStrs_cxSFilterDialogOperationOr 64517
#define cxFilterControlStrs_cxSFilterDialogRows 64518
#define cxFilterControlStrs_cxSFilterControlDialogCaption 64519
#define cxFilterControlStrs_cxSFilterControlDialogNewFile 64520
#define cxFilterControlStrs_cxSFilterControlDialogOpenDialogCaption 64521
#define cxFilterControlStrs_cxSFilterControlDialogSaveDialogCaption 64522
#define cxFilterControlStrs_cxSFilterControlDialogActionSaveCaption 64523
#define cxFilterControlStrs_cxSFilterControlDialogActionOpenCaption 64524
#define cxFilterControlStrs_cxSFilterControlDialogActionApplyCaption 64525
#define cxFilterControlStrs_cxSFilterControlDialogActionOkCaption 64526
#define cxFilterControlStrs_cxSFilterControlDialogActionCancelCaption 64527
#define cxEditConsts_scxMaskEditInvalidEditValue 64528
#define cxFilterControlStrs_cxSFilterBoolOperatorAnd 64529
#define cxFilterControlStrs_cxSFilterBoolOperatorOr 64530
#define cxFilterControlStrs_cxSFilterBoolOperatorNotAnd 64531
#define cxFilterControlStrs_cxSFilterBoolOperatorNotOr 64532
#define cxFilterControlStrs_cxSFilterRootButtonCaption 64533
#define cxFilterControlStrs_cxSFilterAddCondition 64534
#define cxFilterControlStrs_cxSFilterAddGroup 64535
#define cxFilterControlStrs_cxSFilterRemoveRow 64536
#define cxFilterControlStrs_cxSFilterClearAll 64537
#define cxFilterControlStrs_cxSFilterFooterAddCondition 64538
#define cxFilterControlStrs_cxSFilterGroupCaption 64539
#define cxFilterControlStrs_cxSFilterRootGroupCaption 64540
#define cxFilterControlStrs_cxSFilterControlNullString 64541
#define cxFilterControlStrs_cxSFilterErrorBuilding 64542
#define cxFilterControlStrs_cxSFilterDialogCaption 64543
#define cxEditConsts_scxRegExprCantCreateEmptyAlt 64544
#define cxEditConsts_scxRegExprCantCreateEmptyBlock 64545
#define cxEditConsts_scxRegExprIllegalSymbol 64546
#define cxEditConsts_scxRegExprIllegalQuantifier 64547
#define cxEditConsts_scxRegExprNotSupportQuantifier 64548
#define cxEditConsts_scxRegExprIllegalIntegerValue 64549
#define cxEditConsts_scxRegExprTooBigReferenceNumber 64550
#define cxEditConsts_scxRegExprCantCreateEmptyEnum 64551
#define cxEditConsts_scxRegExprSubrangeOrder 64552
#define cxEditConsts_scxRegExprHexNumberExpected0 64553
#define cxEditConsts_scxRegExprHexNumberExpected 64554
#define cxEditConsts_scxRegExprMissing 64555
#define cxEditConsts_scxRegExprUnnecessary 64556
#define cxEditConsts_scxRegExprIncorrectSpace 64557
#define cxEditConsts_scxRegExprNotCompiled 64558
#define cxEditConsts_scxMaskEditRegExprError 64559
#define cxEditConsts_scxSEditRepositoryImageItem 64560
#define cxEditConsts_scxSEditRepositoryLookupComboBoxItem 64561
#define cxEditConsts_scxSEditRepositoryMaskItem 64562
#define cxEditConsts_scxSEditRepositoryMemoItem 64563
#define cxEditConsts_scxSEditRepositoryMRUItem 64564
#define cxEditConsts_scxSEditRepositoryPopupItem 64565
#define cxEditConsts_scxSEditRepositorySpinItem 64566
#define cxEditConsts_scxSEditRepositoryRadioGroupItem 64567
#define cxEditConsts_scxSEditRepositoryTextItem 64568
#define cxEditConsts_scxSEditRepositoryTimeItem 64569
#define cxEditConsts_scxRegExprLine 64570
#define cxEditConsts_scxRegExprChar 64571
#define cxEditConsts_scxRegExprNotAssignedSourceStream 64572
#define cxEditConsts_scxRegExprEmptySourceStream 64573
#define cxEditConsts_scxRegExprCantUsePlusQuantifier 64574
#define cxEditConsts_scxRegExprCantUseStarQuantifier 64575
#define cxEditConsts_cxSDateFifth 64576
#define cxEditConsts_cxSDateSixth 64577
#define cxEditConsts_cxSDateSeventh 64578
#define cxEditConsts_cxSDateBOM 64579
#define cxEditConsts_cxSDateEOM 64580
#define cxEditConsts_cxSDateNow 64581
#define cxEditConsts_scxSCalcError 64582
#define cxEditConsts_scxSEditRepositoryBlobItem 64583
#define cxEditConsts_scxSEditRepositoryButtonItem 64584
#define cxEditConsts_scxSEditRepositoryCalcItem 64585
#define cxEditConsts_scxSEditRepositoryCheckBoxItem 64586
#define cxEditConsts_scxSEditRepositoryComboBoxItem 64587
#define cxEditConsts_scxSEditRepositoryCurrencyItem 64588
#define cxEditConsts_scxSEditRepositoryDateItem 64589
#define cxEditConsts_scxSEditRepositoryHyperLinkItem 64590
#define cxEditConsts_scxSEditRepositoryImageComboBoxItem 64591
#define cxEditConsts_cxSDatePopupClear 64592
#define cxEditConsts_cxSDateError 64593
#define cxEditConsts_cxSDateToday 64594
#define cxEditConsts_cxSDateYesterday 64595
#define cxEditConsts_cxSDateTomorrow 64596
#define cxEditConsts_cxSDateSunday 64597
#define cxEditConsts_cxSDateMonday 64598
#define cxEditConsts_cxSDateTuesday 64599
#define cxEditConsts_cxSDateWednesday 64600
#define cxEditConsts_cxSDateThursday 64601
#define cxEditConsts_cxSDateFriday 64602
#define cxEditConsts_cxSDateSaturday 64603
#define cxEditConsts_cxSDateFirst 64604
#define cxEditConsts_cxSDateSecond 64605
#define cxEditConsts_cxSDateThird 64606
#define cxEditConsts_cxSDateFourth 64607
#define cxEditConsts_cxSEditCheckBoxUnchecked 64608
#define cxEditConsts_cxSRadioGroupDefaultCaption 64609
#define cxEditConsts_cxSBlobButtonOK 64610
#define cxEditConsts_cxSBlobButtonCancel 64611
#define cxEditConsts_cxSBlobButtonClose 64612
#define cxEditConsts_cxSBlobMemo 64613
#define cxEditConsts_cxSBlobMemoEmpty 64614
#define cxEditConsts_cxSBlobPicture 64615
#define cxEditConsts_cxSBlobPictureEmpty 64616
#define cxEditConsts_cxSMenuItemCaptionCut 64617
#define cxEditConsts_cxSMenuItemCaptionCopy 64618
#define cxEditConsts_cxSMenuItemCaptionPaste 64619
#define cxEditConsts_cxSMenuItemCaptionDelete 64620
#define cxEditConsts_cxSMenuItemCaptionLoad 64621
#define cxEditConsts_cxSMenuItemCaptionSave 64622
#define cxEditConsts_cxSDatePopupToday 64623
#define cxFilterConsts_cxSFilterOperatorEndsWith 64624
#define cxFilterConsts_cxSFilterOperatorDoesNotEndWith 64625
#define cxFilterConsts_cxSFilterOperatorContains 64626
#define cxFilterConsts_cxSFilterOperatorDoesNotContain 64627
#define cxFilterConsts_cxSFilterBoxAllCaption 64628
#define cxFilterConsts_cxSFilterBoxCustomCaption 64629
#define cxFilterConsts_cxSFilterBoxBlanksCaption 64630
#define cxFilterConsts_cxSFilterBoxNonBlanksCaption 64631
#define cxEditConsts_cxSEditInvalidRepositoryItem 64632
#define cxEditConsts_cxSEditNumericValueConvertError 64633
#define cxEditConsts_cxSEditPopupCircularReferencingError 64634
#define cxEditConsts_cxSEditTimeConvertError 64635
#define cxEditConsts_cxSEditValidateErrorText 64636
#define cxEditConsts_cxSEditValueOutOfBounds 64637
#define cxEditConsts_cxSEditCheckBoxChecked 64638
#define cxEditConsts_cxSEditCheckBoxGrayed 64639
#define cxFilterConsts_cxSFilterOperatorLastMonth 64640
#define cxFilterConsts_cxSFilterOperatorLastYear 64641
#define cxFilterConsts_cxSFilterOperatorThisWeek 64642
#define cxFilterConsts_cxSFilterOperatorThisMonth 64643
#define cxFilterConsts_cxSFilterOperatorThisYear 64644
#define cxFilterConsts_cxSFilterOperatorNextWeek 64645
#define cxFilterConsts_cxSFilterOperatorNextMonth 64646
#define cxFilterConsts_cxSFilterOperatorNextYear 64647
#define cxFilterConsts_cxSFilterAndCaption 64648
#define cxFilterConsts_cxSFilterOrCaption 64649
#define cxFilterConsts_cxSFilterNotCaption 64650
#define cxFilterConsts_cxSFilterBlankCaption 64651
#define cxFilterConsts_cxSFilterOperatorIsNull 64652
#define cxFilterConsts_cxSFilterOperatorIsNotNull 64653
#define cxFilterConsts_cxSFilterOperatorBeginsWith 64654
#define cxFilterConsts_cxSFilterOperatorDoesNotBeginWith 64655
#define cxFilterConsts_cxSFilterOperatorEqual 64656
#define cxFilterConsts_cxSFilterOperatorNotEqual 64657
#define cxFilterConsts_cxSFilterOperatorLess 64658
#define cxFilterConsts_cxSFilterOperatorLessEqual 64659
#define cxFilterConsts_cxSFilterOperatorGreater 64660
#define cxFilterConsts_cxSFilterOperatorGreaterEqual 64661
#define cxFilterConsts_cxSFilterOperatorLike 64662
#define cxFilterConsts_cxSFilterOperatorNotLike 64663
#define cxFilterConsts_cxSFilterOperatorBetween 64664
#define cxFilterConsts_cxSFilterOperatorNotBetween 64665
#define cxFilterConsts_cxSFilterOperatorInList 64666
#define cxFilterConsts_cxSFilterOperatorNotInList 64667
#define cxFilterConsts_cxSFilterOperatorYesterday 64668
#define cxFilterConsts_cxSFilterOperatorToday 64669
#define cxFilterConsts_cxSFilterOperatorTomorrow 64670
#define cxFilterConsts_cxSFilterOperatorLastWeek 64671
#define TeeConst_TeeMsg_ValuesX 64672
#define TeeConst_TeeMsg_ValuesY 64673
#define TeeConst_TeeMsg_ValuesPie 64674
#define TeeConst_TeeMsg_ValuesBar 64675
#define TeeConst_TeeMsg_ValuesAngle 64676
#define ElList_rs_ListIndexOutOfBounds 64677
#define lmdconst_IDS_INVALIDOWNER 64678
#define lmdconst_IDS_INTERVALNOTFIT 64679
#define cxDataConsts_cxSDataReadError 64680
#define cxDataConsts_cxSDataWriteError 64681
#define cxDataConsts_cxSDataItemExistError 64682
#define cxDataConsts_cxSDataRecordIndexError 64683
#define cxDataConsts_cxSDataItemIndexError 64684
#define cxDataConsts_cxSDataRowIndexError 64685
#define cxDataConsts_cxSDBDetailFilterControllerNotFound 64686
#define cxDataConsts_cxSDBNotInGridMode 64687
#define TeeConst_TeeMsg_PieSample7 64688
#define TeeConst_TeeMsg_PieSample8 64689
#define TeeConst_TeeMsg_GalleryStandard 64690
#define TeeConst_TeeMsg_GalleryFunctions 64691
#define TeeConst_TeeMsg_DefaultFontSize 64692
#define TeeConst_TeeMsg_FunctionAdd 64693
#define TeeConst_TeeMsg_FunctionSubtract 64694
#define TeeConst_TeeMsg_FunctionMultiply 64695
#define TeeConst_TeeMsg_FunctionDivide 64696
#define TeeConst_TeeMsg_FunctionHigh 64697
#define TeeConst_TeeMsg_FunctionLow 64698
#define TeeConst_TeeMsg_FunctionAverage 64699
#define TeeConst_TeeMsg_DefaultFontName 64700
#define TeeConst_TeeMsg_CheckPointerSize 64701
#define TeeConst_TeeMsg_FunctionPeriod 64702
#define TeeConst_TeeMsg_PieOther 64703
#define TeeConst_TeeMsg_RefreshInterval 64704
#define TeeConst_TeeMsg_SeriesParentNoSelf 64705
#define TeeConst_TeeMsg_GalleryLine 64706
#define TeeConst_TeeMsg_GalleryPoint 64707
#define TeeConst_TeeMsg_GalleryArea 64708
#define TeeConst_TeeMsg_GalleryBar 64709
#define TeeConst_TeeMsg_GalleryHorizBar 64710
#define TeeConst_TeeMsg_GalleryPie 64711
#define TeeConst_TeeMsg_GalleryFastLine 64712
#define TeeConst_TeeMsg_Rotation 64713
#define TeeConst_TeeMsg_PieSample1 64714
#define TeeConst_TeeMsg_PieSample2 64715
#define TeeConst_TeeMsg_PieSample3 64716
#define TeeConst_TeeMsg_PieSample4 64717
#define TeeConst_TeeMsg_PieSample5 64718
#define TeeConst_TeeMsg_PieSample6 64719
#define TeeConst_TeeMsg_AxisLogNotPositive 64720
#define TeeConst_TeeMsg_AxisLabelSep 64721
#define TeeConst_TeeMsg_AxisIncrementNeg 64722
#define TeeConst_TeeMsg_AxisMinMax 64723
#define TeeConst_TeeMsg_AxisMaxMin 64724
#define TeeConst_TeeMsg_AxisLogBase 64725
#define TeeConst_TeeMsg_MaxPointsPerPage 64726
#define TeeConst_TeeMsg_3dPercent 64727
#define TeeConst_TeeMsg_CircularSeries 64728
#define TeeConst_TeeMsg_BarWidthPercent 64729
#define TeeConst_TeeMsg_BarOffsetPercent 64730
#define TeeConst_TeeMsg_DefaultPercentOf 64731
#define TeeConst_TeeMsg_DefPercentFormat 64732
#define TeeConst_TeeMsg_DefValueFormat 64733
#define TeeConst_TeeMsg_AxisTitle 64734
#define TeeConst_TeeMsg_AxisLabels 64735
#define OleConst_SPropDlgCaption 64736
#define OleConst_sNoRunningObject 64737
#define TB2Consts_STBToolbarIndexOutOfBounds 64738
#define TB2Consts_STBToolbarItemReinserted 64739
#define TB2Consts_STBToolbarItemParentInvalid 64740
#define TB2Consts_STBChevronItemMoreButtonsHint 64741
#define TB2Consts_STBDockParentNotAllowed 64742
#define TB2Consts_STBDockCannotChangePosition 64743
#define TeeConst_TeeMsg_LegendTopPos 64744
#define TeeConst_TeeMsg_LegendFirstValue 64745
#define TeeConst_TeeMsg_LegendColorWidth 64746
#define TeeConst_TeeMsg_SeriesSetDataSource 64747
#define TeeConst_TeeMsg_SeriesInvDataSource 64748
#define TeeConst_TeeMsg_FillSample 64749
#define TeeConst_TeeMsg_Angle 64750
#define TeeConst_TeeMsg_AxisLogDateTime 64751
#define ppJvInspector_sppJvInspDataNotInit 64752
#define ppJvInspector_sppJvInspDataNotAssigned 64753
#define ppJvInspector_sppJvInspDataNoValue 64754
#define ppJvInspector_sppJvInspDataStrTooLong 64755
#define ppJvInspector_sppJvInspNoGenReg 64756
#define ppJvInspector_sppJvInspPaintNotActive 64757
#define ppJvInspector_sppJvInspPaintOnlyUsedOnce 64758
#define ppJvInspector_sppJvAssertSetTopIndex 64759
#define ppJvInspector_sppJvAssertInspectorPainter 64760
#define ppJvInspector_sppJvAssertDataParent 64761
#define ppJvInspector_sppJvAssertParent 64762
#define ppJvInspector_sppJvAssertPropInfo 64763
#define ppInspector_sJvInspDataNoSelectionController 64764
#define OleConst_SLinkProperties 64765
#define OleConst_SInvalidLinkSource 64766
#define OleConst_SCannotBreakLink 64767
#define ppJclResources_ppJclRsRTTIMinValue 64768
#define ppJclResources_ppJclRsRTTIMaxValue 64769
#define ppJclResources_ppJclRsRTTINameList 64770
#define ppJclResources_ppJclRsRTTIUnitName 64771
#define ppJclResources_ppJclRsRTTIBasedOn 64772
#define ppJclResources_ppJclRsRTTIFloatType 64773
#define ppJvInspector_sppJvInspItemHasParent 64774
#define ppJvInspector_sppJvInspItemValueException 64775
#define ppJvInspector_sppJvInspItemUnInitialized 64776
#define ppJvInspector_sppJvInspItemUnassigned 64777
#define ppJvInspector_sppJvInspItemNoValue 64778
#define ppJvInspector_sppJvInspItemNotAChild 64779
#define ppJvInspector_sppJvInspItemColNotFound 64780
#define ppJvInspector_sppJvInspItemItemIsNotCol 64781
#define ppJvInspector_sppJvInspItemInvalidPropValue 64782
#define ppJvInspector_sppJvInspDataNoAccessAs 64783
#define RBTableGrid_rsGridPack 64784
#define RBTableGrid_rsTableGrid 64785
#define RBTableGrid_rsDBTableGrid 64786
#define RBTableGrid_rsCrossTable 64787
#define RBTableGrid_rsReadCellsError 64788
#define RBTableGrid_rsUnsupport 64789
#define RBCheckBox_rsCheckBox 64790
#define RBCheckBox_rsCheckBoxCaption 64791
#define ppJclResources_ppJclRsRTTIValueOutOfRange 64792
#define ppJclResources_ppJclRsRTTIUnknownIdentifier 64793
#define ppJclResources_ppJclRsRTTIOrdinal 64794
#define ppJclResources_ppJclRsRTTITypeError 64795
#define ppJclResources_ppJclRsRTTITypeInfoAt 64796
#define ppJclResources_ppJclRsRTTIName 64797
#define ppJclResources_ppJclRsRTTITypeKind 64798
#define ppJclResources_ppJclRsRTTIOrdinalType 64799
#define TXString_SPDFDefaultExt 64800
#define TXString_SPDFDefaultExtFilter 64801
#define TXString_SPDFDeviceDescription 64802
#define TXString_SPRNDeviceName 64803
#define TXString_SPRNDefaultExt 64804
#define TXString_SPRNDefaultExtFilter 64805
#define TXString_SPRNDeviceDescription 64806
#define ZLibConst_sInvalidStreamOp 64807
#define IdResourceStrings_RSStatusResolving 64808
#define IdResourceStrings_RSStatusConnecting 64809
#define IdResourceStrings_RSStatusConnected 64810
#define IdResourceStrings_RSStatusDisconnecting 64811
#define IdResourceStrings_RSStatusDisconnected 64812
#define IdResourceStrings_RSStatusText 64813
#define IdResourceStrings_RSCoderNoTableEntryNotFound 64814
#define IdResourceStrings_RSTIdMessagePartCreate 64815
#define TXString_SBMPDefaultExt 64816
#define TXString_SBMPDefaultExtFilter 64817
#define TXString_SBMPDeviceDescription 64818
#define TXString_SXTMDeviceName 64819
#define TXString_SXTMDefaultExt 64820
#define TXString_SXTMDefaultExtFilter 64821
#define TXString_SXTMDeviceDescription 64822
#define TXString_SHTMDeviceName 64823
#define TXString_SHTMDefaultExt 64824
#define TXString_SHTMDefaultExtFilter 64825
#define TXString_SHTMDeviceDescription 64826
#define TXString_SRTFDeviceName 64827
#define TXString_SRTFDefaultExt 64828
#define TXString_SRTFDefaultExtFilter 64829
#define TXString_SRTFDeviceDescription 64830
#define TXString_SPDFDeviceName 64831
#define JConsts_sChangeJPGSize 64832
#define JConsts_sJPEGError 64833
#define JConsts_sJPEGImageFile 64834
#define TXString_SWK1DeviceName 64835
#define TXString_SWK1DefaultExt 64836
#define TXString_SWK1DefaultExtFilter 64837
#define TXString_SWK1DeviceDescription 64838
#define TXString_SWQ1DeviceName 64839
#define TXString_SWQ1DefaultExt 64840
#define TXString_SWQ1DefaultExtFilter 64841
#define TXString_SWQ1DeviceDescription 64842
#define TXString_SXLSDeviceName 64843
#define TXString_SXLSDefaultExt 64844
#define TXString_SXLSDefaultExtFilter 64845
#define TXString_SXLSDeviceDescription 64846
#define TXString_SBMPDeviceName 64847
#define bdeconst_SInitError 64848
#define bdeconst_SIDAPILangID 64849
#define bdeconst_SBDEError 64850
#define bdeconst_SLookupSourceError 64851
#define bdeconst_SLookupTableError 64852
#define bdeconst_STruncationError 64853
#define bdeconst_SResultName 64854
#define bdeconst_SIndexDoesNotExist 64855
#define bdeconst_SNoTableName 64856
#define bdeconst_SNoDataSetField 64857
#define bdeconst_SNoCachedUpdates 64858
#define bdeconst_SInvalidAliasName 64859
#define bdeconst_SNoFieldAccess 64860
#define bdeconst_SUntitled 64861
#define bdeconst_SUpdateFailed 64862
#define bdeconst_SLocalTransDirty 64863
#define bdeconst_SDuplicateSessionName 64864
#define bdeconst_SInvalidSessionName 64865
#define bdeconst_SDatabaseNameMissing 64866
#define bdeconst_SSessionNameMissing 64867
#define bdeconst_SDatabaseOpen 64868
#define bdeconst_SDatabaseClosed 64869
#define bdeconst_SDatabaseHandleSet 64870
#define bdeconst_SSessionActive 64871
#define bdeconst_SHandleError 64872
#define bdeconst_STableMismatch 64873
#define bdeconst_SNoReferenceTableName 64874
#define bdeconst_SCompositeIndexError 64875
#define bdeconst_SEmptySQLStatement 64876
#define bdeconst_SNoParameterValue 64877
#define bdeconst_SNoParameterType 64878
#define bdeconst_SLoginError 64879
#define ppSynEditStrConst_ppSynS_AttrIdentifier 64880
#define ppSynEditStrConst_ppSynS_AttrNumber 64881
#define ppSynEditStrConst_ppSynS_AttrPLSQL 64882
#define ppSynEditStrConst_ppSynS_AttrReservedWord 64883
#define ppSynEditStrConst_ppSynS_AttrSpace 64884
#define ppSynEditStrConst_ppSynS_AttrSQLPlus 64885
#define ppSynEditStrConst_ppSynS_AttrString 64886
#define ppSynEditStrConst_ppSynS_AttrSymbol 64887
#define ppSynEditStrConst_ppSynS_AttrTableName 64888
#define ppSynEditStrConst_ppSynS_AttrVariable 64889
#define ppSynEditStrConst_ppSynS_FilterSQL 64890
#define ppSynEditStrConst_ppSynS_LangSQL 64891
#define bdeconst_SAutoSessionExclusive 64892
#define bdeconst_SAutoSessionExists 64893
#define bdeconst_SAutoSessionActive 64894
#define bdeconst_SDuplicateDatabaseName 64895
#define ppSt2DBarC_StEBadNumRows 64896
#define ppSt2DBarC_StEBadPostalCode 64897
#define ppSt2DBarC_StEBadQuietZone 64898
#define ppSt2DBarC_StECodeTooLarge 64899
#define ppSt2DBarC_StEGLIOutOfRange 64900
#define ppSt2DBarC_StEInvalidCodeword 64901
#define ppSt2DBarC_StENeedBarHeight 64902
#define ppSt2DBarC_StENeedHorz 64903
#define ppSt2DBarC_StENeedVert 64904
#define ppSynEditStrConst_ppSynS_AttrComment 64905
#define ppSynEditStrConst_ppSYNS_AttrConditionalComment 64906
#define ppSynEditStrConst_ppSynS_AttrDataType 64907
#define ppSynEditStrConst_ppSynS_AttrDefaultPackage 64908
#define ppSynEditStrConst_ppSYNS_AttrDelimitedIdentifier 64909
#define ppSynEditStrConst_ppSynS_AttrException 64910
#define ppSynEditStrConst_ppSynS_AttrFunction 64911
#define dxGrFCmn_dxSFilterBoxCustomCaption 64912
#define dxGrFCmn_dxSFilterBoxBlanksCaption 64913
#define dxGrFCmn_dxSFilterBoxNonBlanksCaption 64914
#define dxPageControlStrs_sdxPageIndexError 64915
#define ppTB2Consts_ppSTBToolbarIndexOutOfBounds 64916
#define ppTB2Consts_ppSTBToolbarItemReinserted 64917
#define ppTB2Consts_ppSTBViewerNotFound 64918
#define ppTB2Consts_ppSTBChevronItemMoreButtonsHint 64919
#define ppTB2Consts_ppSTBMRUListItemDefCaption 64920
#define ppTB2Consts_ppSTBDockParentNotAllowed 64921
#define ppTB2Consts_ppSTBDockCannotChangePosition 64922
#define ppZLib_sInvalidStreamOp 64923
#define ppSt2DBarC_StEBadBarHeight 64924
#define ppSt2DBarC_StEBadBarHeightToWidth 64925
#define ppSt2DBarC_StEBadBarWidth 64926
#define ppSt2DBarC_StEBadNumCols 64927
#define VDBConsts_SDataSourceFixed 64928
#define VDBConsts_SNotReplicatable 64929
#define VDBConsts_SPropDefByLookup 64930
#define VDBConsts_STooManyColumns 64931
#define VDBConsts_SRemoteLogin 64932
#define dxGrFCmn_dxSFilterOperatorEqual 64933
#define dxGrFCmn_dxSFilterOperatorNotEqual 64934
#define dxGrFCmn_dxSFilterOperatorGreater 64935
#define dxGrFCmn_dxSFilterOperatorGreaterEqual 64936
#define dxGrFCmn_dxSFilterOperatorLess 64937
#define dxGrFCmn_dxSFilterOperatorLessEqual 64938
#define dxGrFCmn_dxSFilterOperatorBlanks 64939
#define dxGrFCmn_dxSFilterOperatorNonBlanks 64940
#define dxGrFCmn_dxSFilterInvalidValue 64941
#define dxGrFCmn_dxSFilterStatusCloseButtonHint 64942
#define dxGrFCmn_dxSFilterBoxAllCaption 64943
#define RzPanel_sRzTextOptions 64944
#define RzPanel_sRzNoTextLabels 64945
#define RzPanel_sRzShowTextLabels 64946
#define RzPanel_sRzSelectiveTextOnRight 64947
#define VDBConsts_SFirstRecord 64948
#define VDBConsts_SPriorRecord 64949
#define VDBConsts_SNextRecord 64950
#define VDBConsts_SLastRecord 64951
#define VDBConsts_SInsertRecord 64952
#define VDBConsts_SDeleteRecord 64953
#define VDBConsts_SEditRecord 64954
#define VDBConsts_SPostEdit 64955
#define VDBConsts_SCancelEdit 64956
#define VDBConsts_SRefreshRecord 64957
#define VDBConsts_SDeleteRecordQuestion 64958
#define VDBConsts_SDeleteMultipleRecordsQuestion 64959
#define RzBorder_sRzColorInactiveCaptionText 64960
#define RzBorder_sRzColorBtnHighlight 64961
#define RzBorder_sRzColor3DDkShadow 64962
#define RzBorder_sRzColor3DLight 64963
#define RzBorder_sRzColorInfoText 64964
#define RzBorder_sRzColorInfoBk 64965
#define RzBorder_sRzColorHotLight 64966
#define RzBorder_sRzColorGradientActiveCaption 64967
#define RzBorder_sRzColorGradientInactiveCaption 64968
#define RzBorder_sRzColorMenuHighlight 64969
#define RzBorder_sRzColorMenuBar 64970
#define RzPanel_sRzCustomizeTitle 64971
#define RzPanel_sRzHint 64972
#define RzPanel_sRzMoveUp 64973
#define RzPanel_sRzMoveDown 64974
#define RzPanel_sRzClose 64975
#define RzBorder_sRzColorInactiveCaption 64976
#define RzBorder_sRzColorMenu 64977
#define RzBorder_sRzColorWindow 64978
#define RzBorder_sRzColorWindowFrame 64979
#define RzBorder_sRzColorMenuText 64980
#define RzBorder_sRzColorWindowText 64981
#define RzBorder_sRzColorCaptionText 64982
#define RzBorder_sRzColorActiveBorder 64983
#define RzBorder_sRzColorInactiveBorder 64984
#define RzBorder_sRzColorAppWorkSpace 64985
#define RzBorder_sRzColorHighlight 64986
#define RzBorder_sRzColorHighlightText 64987
#define RzBorder_sRzColorBtnFace 64988
#define RzBorder_sRzColorBtnShadow 64989
#define RzBorder_sRzColorGrayText 64990
#define RzBorder_sRzColorBtnText 64991
#define RzBorder_sRzColorBrightGreen 64992
#define RzBorder_sRzColorTurquoise 64993
#define RzBorder_sRzColorSkyBlue 64994
#define RzBorder_sRzColorPlum 64995
#define RzBorder_sRzColorGray25 64996
#define RzBorder_sRzColorRose 64997
#define RzBorder_sRzColorTan 64998
#define RzBorder_sRzColorLightYellow 64999
#define RzBorder_sRzColorLightGreen 65000
#define RzBorder_sRzColorLightTurquoise 65001
#define RzBorder_sRzColorPaleBlue 65002
#define RzBorder_sRzColorLavender 65003
#define RzBorder_sRzColorWhite 65004
#define RzBorder_sRzColorScrollBar 65005
#define RzBorder_sRzColorBackground 65006
#define RzBorder_sRzColorActiveCaption 65007
#define RzBorder_sRzColorGreen 65008
#define RzBorder_sRzColorTeal 65009
#define RzBorder_sRzColorBlue 65010
#define RzBorder_sRzColorBlueGray 65011
#define RzBorder_sRzColorGray50 65012
#define RzBorder_sRzColorRed 65013
#define RzBorder_sRzColorLightOrange 65014
#define RzBorder_sRzColorLime 65015
#define RzBorder_sRzColorSeaGreen 65016
#define RzBorder_sRzColorAqua 65017
#define RzBorder_sRzColorLightBlue 65018
#define RzBorder_sRzColorViolet 65019
#define RzBorder_sRzColorGray40 65020
#define RzBorder_sRzColorPink 65021
#define RzBorder_sRzColorGold 65022
#define RzBorder_sRzColorYellow 65023
#define RzPopups_sRzCaptionAM 65024
#define RzPopups_sRzCaptionPM 65025
#define RzPopups_sRzCaptionSet 65026
#define RzPopups_sRzCaptionClearBtn 65027
#define RzPopups_sRzCaptionTodayBtn 65028
#define RzBorder_sRzColorBlack 65029
#define RzBorder_sRzColorBrown 65030
#define RzBorder_sRzColorOliveGreen 65031
#define RzBorder_sRzColorDarkGreen 65032
#define RzBorder_sRzColorDarkTeal 65033
#define RzBorder_sRzColorDarkBlue 65034
#define RzBorder_sRzColorIndigo 65035
#define RzBorder_sRzColorGray80 65036
#define RzBorder_sRzColorDarkRed 65037
#define RzBorder_sRzColorOrange 65038
#define RzBorder_sRzColorDarkYellow 65039
#define ADOConst_SInvalidEnumValue 65040
#define ADOConst_SMissingConnection 65041
#define ADOConst_SNoDetailFilter 65042
#define ADOConst_SBookmarksRequired 65043
#define ADOConst_SMissingCommandText 65044
#define ADOConst_SNoResultSet 65045
#define ADOConst_SADOCreateError 65046
#define ADOConst_SEventsNotSupported 65047
#define ADOConst_SUsupportedFieldType 65048
#define ADOConst_SConnectionRequired 65049
#define ADOConst_SCantRequery 65050
#define ADOConst_SNoFilterOptions 65051
#define ADOConst_SRecordsetNotOpen 65052
#define ADODB_sNameAttr 65053
#define ADODB_sValueAttr 65054
#define RzPopups_sRzHowToSelectTime 65055
#define DBConsts_SProviderSQLNotSupported 65056
#define DBConsts_SProviderExecuteNotSupported 65057
#define DBConsts_SExprNoAggOnCalcs 65058
#define DBConsts_SDataSetUnidirectional 65059
#define DBConsts_SUnassignedVar 65060
#define DBConsts_SRecordNotFound 65061
#define DBConsts_SBcdOverflow 65062
#define DBConsts_SInvalidBcdValue 65063
#define DBConsts_SInvalidFormatType 65064
#define DBConsts_SCouldNotParseTimeStamp 65065
#define DBConsts_SInvalidSqlTimeStamp 65066
#define ComConst_SOleError 65067
#define ComConst_SNoMethod 65068
#define ComConst_SVarNotObject 65069
#define ComConst_STooManyParams 65070
#define ComConst_SDCOMNotInstalled 65071
#define DBConsts_SExprRangeError 65072
#define DBConsts_SExprIncorrect 65073
#define DBConsts_SExprNothing 65074
#define DBConsts_SExprTypeMis 65075
#define DBConsts_SExprBadScope 65076
#define DBConsts_SExprNoArith 65077
#define DBConsts_SExprNotAgg 65078
#define DBConsts_SExprBadConst 65079
#define DBConsts_SExprNoAggFilter 65080
#define DBConsts_SExprEmptyInList 65081
#define DBConsts_SInvalidKeywordUse 65082
#define DBConsts_STextFalse 65083
#define DBConsts_STextTrue 65084
#define DBConsts_SParameterNotFound 65085
#define DBConsts_SInvalidVersion 65086
#define DBConsts_SBadFieldType 65087
#define DBConsts_SDataSetOpen 65088
#define DBConsts_SNotEditing 65089
#define DBConsts_SDataSetClosed 65090
#define DBConsts_SDataSetEmpty 65091
#define DBConsts_SDataSetReadOnly 65092
#define DBConsts_SNestedDataSetClass 65093
#define DBConsts_SExprTermination 65094
#define DBConsts_SExprNameError 65095
#define DBConsts_SExprStringError 65096
#define DBConsts_SExprInvalidChar 65097
#define DBConsts_SExprNoLParen 65098
#define DBConsts_SExprNoRParen 65099
#define DBConsts_SExprNoRParenOrComma 65100
#define DBConsts_SExprExpected 65101
#define DBConsts_SExprBadField 65102
#define DBConsts_SExprBadNullTest 65103
#define DBConsts_SFieldSizeMismatch 65104
#define DBConsts_SInvalidVarByteArray 65105
#define DBConsts_SFieldOutOfRange 65106
#define DBConsts_SFieldRequired 65107
#define DBConsts_SDataSetMissing 65108
#define DBConsts_SInvalidCalcType 65109
#define DBConsts_SFieldReadOnly 65110
#define DBConsts_SFieldIndexError 65111
#define DBConsts_SNoFieldIndexes 65112
#define DBConsts_SNotIndexField 65113
#define DBConsts_SIndexFieldMissing 65114
#define DBConsts_SNoIndexForFields 65115
#define DBConsts_SIndexNotFound 65116
#define DBConsts_SCircularDataLink 65117
#define DBConsts_SLookupInfoError 65118
#define DBConsts_SDataSourceChange 65119
#define kcompress_SDestNotDefined 65120
#define kcompress_SWrongStreamFormat 65121
#define DBConsts_SInvalidFieldSize 65122
#define DBConsts_SInvalidFieldKind 65123
#define DBConsts_SUnknownFieldType 65124
#define DBConsts_SFieldNameMissing 65125
#define DBConsts_SDuplicateFieldName 65126
#define DBConsts_SFieldNotFound 65127
#define DBConsts_SFieldAccessError 65128
#define DBConsts_SFieldValueError 65129
#define DBConsts_SFieldRangeError 65130
#define DBConsts_SBcdFieldRangeError 65131
#define DBConsts_SInvalidIntegerValue 65132
#define DBConsts_SInvalidBoolValue 65133
#define DBConsts_SInvalidFloatValue 65134
#define DBConsts_SFieldTypeMismatch 65135
#define LocConst_ErrMapViewFailed 65136
#define LocConst_ErrUnrecognizedFormat 65137
#define LocConst_ErrNotPEFile 65138
#define LocConst_ErrNoResources 65139
#define LocConst_ErrItemNotList 65140
#define LocConst_ErrAddLanguage 65141
#define LocConst_ErrRemoveLanguage 65142
#define LocConst_ErrEmptyDictionary 65143
#define LocConst_ErrFileNotExist 65144
#define LocConst_ErrInvalidFileFormat 65145
#define LocConst_ErrNewerFileFormat 65146
#define LocConst_ErrInvalidNativeDLL 65147
#define LocConst_ErrInvalidLocStorage 65148
#define LocConst_ErrSAVEDLL 65149
#define LocConst_ErrInvalidIndex 65150
#define kcompress_SSourceNotDefined 65151
#define ComStrs_sInvalidComCtl32 65152
#define ComStrs_sDateTimeMax 65153
#define ComStrs_sDateTimeMin 65154
#define ComStrs_sNeedAllowNone 65155
#define ComStrs_sFailSetCalDateTime 65156
#define ComStrs_sFailSetCalMaxSelRange 65157
#define ComStrs_sFailSetCalMinMaxRange 65158
#define ComStrs_sFailsetCalSelRange 65159
#define LocConst_ErrLangFileNotFound 65160
#define LocConst_ErrPathNotExist 65161
#define LocConst_ErrNotIntitialized 65162
#define LocConst_ErrLanguageNotFound 65163
#define LocConst_ErrFileDelete 65164
#define LocConst_ErrInvalidResource 65165
#define LocConst_ErrCantFindRCDATA 65166
#define LocConst_ErrCanNotOpenFile 65167
#define HelpIntfs_hNoTopics 65168
#define ComStrs_sTabFailClear 65169
#define ComStrs_sTabFailDelete 65170
#define ComStrs_sTabFailRetrieve 65171
#define ComStrs_sTabFailGetObject 65172
#define ComStrs_sTabFailSet 65173
#define ComStrs_sTabFailSetObject 65174
#define ComStrs_sTabMustBeMultiLine 65175
#define ComStrs_sInvalidIndex 65176
#define ComStrs_sInsertError 65177
#define ComStrs_sInvalidOwner 65178
#define ComStrs_sRichEditInsertError 65179
#define ComStrs_sRichEditLoadFail 65180
#define ComStrs_sRichEditSaveFail 65181
#define ComStrs_sUDAssociated 65182
#define ComStrs_sPageIndexError 65183
#define Consts_SNoDefaultPrinter 65184
#define Consts_SDuplicateMenus 65185
#define Consts_SPictureLabel 65186
#define Consts_SPictureDesc 65187
#define Consts_SPreviewLabel 65188
#define Consts_SDockedCtlNeedsName 65189
#define Consts_SDockTreeRemoveError 65190
#define Consts_SDockZoneNotFound 65191
#define Consts_SDockZoneHasNoCtl 65192
#define Consts_SMultiSelectRequired 65193
#define Consts_SSeparator 65194
#define Consts_SErrorSettingCount 65195
#define Consts_SListBoxMustBeVirtual 65196
#define HelpIntfs_hNoTableOfContents 65197
#define HelpIntfs_hNothingFound 65198
#define HelpIntfs_hNoContext 65199
#define Consts_SmkcIns 65200
#define Consts_SmkcDel 65201
#define Consts_SmkcShift 65202
#define Consts_SmkcCtrl 65203
#define Consts_SmkcAlt 65204
#define Consts_srUnknown 65205
#define Consts_srNone 65206
#define Consts_SOutOfRange 65207
#define Consts_sAllFilter 65208
#define Consts_SInsertLineError 65209
#define Consts_SInvalidClipFmt 65210
#define Consts_SIconToClipboard 65211
#define Consts_SCannotOpenClipboard 65212
#define Consts_SDefault 65213
#define Consts_SInvalidMemoSize 65214
#define Consts_SInvalidPrinterOp 65215
#define Consts_SMsgDlgAll 65216
#define Consts_SMsgDlgNoToAll 65217
#define Consts_SMsgDlgYesToAll 65218
#define Consts_SmkcBkSp 65219
#define Consts_SmkcTab 65220
#define Consts_SmkcEsc 65221
#define Consts_SmkcEnter 65222
#define Consts_SmkcSpace 65223
#define Consts_SmkcPgUp 65224
#define Consts_SmkcPgDn 65225
#define Consts_SmkcEnd 65226
#define Consts_SmkcHome 65227
#define Consts_SmkcLeft 65228
#define Consts_SmkcUp 65229
#define Consts_SmkcRight 65230
#define Consts_SmkcDown 65231
#define Consts_SVIcons 65232
#define Consts_SVBitmaps 65233
#define Consts_SMaskErr 65234
#define Consts_SMaskEditErr 65235
#define Consts_SMsgDlgWarning 65236
#define Consts_SMsgDlgError 65237
#define Consts_SMsgDlgInformation 65238
#define Consts_SMsgDlgConfirm 65239
#define Consts_SMsgDlgYes 65240
#define Consts_SMsgDlgNo 65241
#define Consts_SMsgDlgOK 65242
#define Consts_SMsgDlgCancel 65243
#define Consts_SMsgDlgHelp 65244
#define Consts_SMsgDlgAbort 65245
#define Consts_SMsgDlgRetry 65246
#define Consts_SMsgDlgIgnore 65247
#define Consts_SGroupIndexTooLow 65248
#define Consts_SNoMDIForm 65249
#define Consts_SControlParentSetToSelf 65250
#define Consts_SOKButton 65251
#define Consts_SCancelButton 65252
#define Consts_SYesButton 65253
#define Consts_SNoButton 65254
#define Consts_SHelpButton 65255
#define Consts_SCloseButton 65256
#define Consts_SIgnoreButton 65257
#define Consts_SRetryButton 65258
#define Consts_SAbortButton 65259
#define Consts_SAllButton 65260
#define Consts_SCannotDragForm 65261
#define Consts_SVMetafiles 65262
#define Consts_SVEnhMetafiles 65263
#define Consts_SParentRequired 65264
#define Consts_SParentGivenNotAParent 65265
#define Consts_SMDIChildNotVisible 65266
#define Consts_SVisibleChanged 65267
#define Consts_SCannotShowModal 65268
#define Consts_SScrollBarRange 65269
#define Consts_SPropertyOutOfRange 65270
#define Consts_SMenuIndexError 65271
#define Consts_SMenuReinserted 65272
#define Consts_SMenuNotFound 65273
#define Consts_SNoTimers 65274
#define Consts_SNotPrinting 65275
#define Consts_SPrinting 65276
#define Consts_SPrinterIndexError 65277
#define Consts_SInvalidPrinter 65278
#define Consts_SDeviceOnPort 65279
#define Consts_SChangeIconSize 65280
#define Consts_SOleGraphic 65281
#define Consts_SUnknownExtension 65282
#define Consts_SUnknownClipboardFormat 65283
#define Consts_SOutOfResources 65284
#define Consts_SNoCanvasHandle 65285
#define Consts_SInvalidImageSize 65286
#define Consts_STooManyImages 65287
#define Consts_SInvalidImageList 65288
#define Consts_SReplaceImage 65289
#define Consts_SImageIndexError 65290
#define Consts_SImageReadFail 65291
#define Consts_SImageWriteFail 65292
#define Consts_SWindowDCError 65293
#define Consts_SWindowClass 65294
#define Consts_SCannotFocus 65295
#define PrjConst_SRequisitionHasBeenCheckedOut 65296
#define PrjConst_SAreYouSureYouWantToUnlock 65297
#define PrjConst_SRequisitionHasBeenUnlocked 65298
#define PrjConst_SNoPatientAvailable 65299
#define PrjConst_SDoYouWantToDelet 65300
#define PrjConst_SErrorLoadinPaabIn 65301
#define PrjConst_SDoYouWantToCopy 65302
#define Consts_SInvalidTabIndex 65303
#define Consts_SInvalidTabPosition 65304
#define Consts_SInvalidTabStyle 65305
#define Consts_SInvalidBitmap 65306
#define Consts_SInvalidIcon 65307
#define Consts_SInvalidMetafile 65308
#define Consts_SInvalidPixelFormat 65309
#define Consts_SInvalidImage 65310
#define Consts_SScanLine 65311
#define PrjConst_SAutoLevelingProductStockSigl 65312
#define PrjConst_SItemsHaveAlreadyBeenIssuedO 65313
#define PrjConst_SDELETESUPPLIER 65314
#define PrjConst_SCannotDeleteSupplier 65315
#define PrjConst_SSUPPLIERS 65316
#define PrjConst_SSUPPLIERSActive 65317
#define PrjConst_SSUPPLIERSInactive 65318
#define PrjConst_SDeleteSupplierContact 65319
#define PrjConst_SPosted 65320
#define PrjConst_SLockedByAnotherUser 65321
#define PrjConst_SERRORMainDataModuleNotAvai 65322
#define PrjConst_SDeleteALLItemsProductsOnThi 65323
#define PrjConst_SNoProcedureHasBeenCalled 65324
#define PrjConst_SERRORRequisitionOrMainData 65325
#define PrjConst_SBalance 65326
#define PrjConst_SBalanceBeforeTransaction 65327
#define PrjConst_SA3 65328
#define PrjConst_SDays12 65329
#define PrjConst_SB3 65330
#define PrjConst_SDays13 65331
#define PrjConst_SC3 65332
#define PrjConst_SDays14 65333
#define PrjConst_SD3 65334
#define PrjConst_SDays15 65335
#define PrjConst_SShowingTransactionSBetween1 65336
#define PrjConst_STo2 65337
#define PrjConst_SOn 65338
#define PrjConst_SYouCannotDoAVarianceRightN 65339
#define PrjConst_SPleaseMakeSureThatItemIsNo 65340
#define PrjConst_SDELETEPRODUCT 65341
#define PrjConst_SCannotDeleteProduct 65342
#define PrjConst_SValidatingProductsForDispensi 65343
#define PrjConst_SIssued1 65344
#define PrjConst_SReceived1 65345
#define PrjConst_SVariance1 65346
#define PrjConst_SStocktake1 65347
#define PrjConst_SALLPRODUCTS1 65348
#define PrjConst_SINSTITUTIONALE1 65349
#define PrjConst_SPROVINCIALEDL1 65350
#define PrjConst_SNATIONALEDL1 65351
#define PrjConst_SA2 65352
#define PrjConst_SDays8 65353
#define PrjConst_SB2 65354
#define PrjConst_SDays9 65355
#define PrjConst_SC2 65356
#define PrjConst_SDays10 65357
#define PrjConst_SD2 65358
#define PrjConst_SDays11 65359
#define RTLConsts_SUnknownProperty 65360
#define RTLConsts_SWriteError 65361
#define RTLConsts_SThreadCreateError 65362
#define RTLConsts_SThreadError 65363
#define RTLConsts_SMissingDateTimeField 65364
#define PrjConst_SDEMANDERS 65365
#define PrjConst_SDEMANDERS1 65366
#define PrjConst_SDEMANDERS2 65367
#define PrjConst_SName_str 65368
#define PrjConst_SDeleteStaffMember 65369
#define PrjConst_SAddAllItemsFromI 65370
#define PrjConst_SDeleteAllItemsFro 65371
#define PrjConst_SDemanderIssuesFrom 65372
#define PrjConst_STo 65373
#define PrjConst_SShowAll1 65374
#define PrjConst_SOrdered1 65375
#define RTLConsts_SMemoryStreamError 65376
#define RTLConsts_SNumberExpected 65377
#define RTLConsts_SParseError 65378
#define RTLConsts_SPropertyException 65379
#define RTLConsts_SReadError 65380
#define RTLConsts_SReadOnlyProperty 65381
#define RTLConsts_SRegCreateFailed 65382
#define RTLConsts_SRegGetDataFailed 65383
#define RTLConsts_SRegSetDataFailed 65384
#define RTLConsts_SResNotFound 65385
#define RTLConsts_SSeekNotImplemented 65386
#define RTLConsts_SSortedListError 65387
#define RTLConsts_SStringExpected 65388
#define RTLConsts_SSymbolExpected 65389
#define RTLConsts_STooManyDeleted 65390
#define RTLConsts_SUnknownGroup 65391
#define RTLConsts_SInvalidBinary 65392
#define RTLConsts_SInvalidDateTime 65393
#define RTLConsts_SInvalidImage 65394
#define RTLConsts_SInvalidName 65395
#define RTLConsts_SInvalidProperty 65396
#define RTLConsts_SInvalidPropertyElement 65397
#define RTLConsts_SInvalidPropertyPath 65398
#define RTLConsts_SInvalidPropertyType 65399
#define RTLConsts_SInvalidPropertyValue 65400
#define RTLConsts_SInvalidRegType 65401
#define RTLConsts_SInvalidString 65402
#define RTLConsts_SInvalidStringGridOp 65403
#define RTLConsts_SLineTooLong 65404
#define RTLConsts_SListCapacityError 65405
#define RTLConsts_SListCountError 65406
#define RTLConsts_SListIndexError 65407
#define RTLConsts_SCantWriteResourceStreamError 65408
#define RTLConsts_SCharExpected 65409
#define RTLConsts_SCheckSynchronizeError 65410
#define RTLConsts_SClassNotFound 65411
#define RTLConsts_SDuplicateClass 65412
#define RTLConsts_SDuplicateItem 65413
#define RTLConsts_SDuplicateName 65414
#define RTLConsts_SDuplicateString 65415
#define RTLConsts_SFCreateError 65416
#define RTLConsts_SFixedColTooBig 65417
#define RTLConsts_SFixedRowTooBig 65418
#define RTLConsts_SFOpenError 65419
#define RTLConsts_SGridTooLarge 65420
#define RTLConsts_SIdentifierExpected 65421
#define RTLConsts_SIndexOutOfRange 65422
#define RTLConsts_SIniFileWriteError 65423
#define SysConst_SShortDayNameTue 65424
#define SysConst_SShortDayNameWed 65425
#define SysConst_SShortDayNameThu 65426
#define SysConst_SShortDayNameFri 65427
#define SysConst_SShortDayNameSat 65428
#define SysConst_SLongDayNameSun 65429
#define SysConst_SLongDayNameMon 65430
#define SysConst_SLongDayNameTue 65431