forked from OpenTM2/opentm2-source
-
Notifications
You must be signed in to change notification settings - Fork 1
/
EQFHELP.ID
executable file
·2915 lines (2672 loc) · 155 KB
/
EQFHELP.ID
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
/*+----------------------------------------------------------------------------+
| EQFHELP.ID - RESIDs for Dave and IPF help manager |
+----------------------------------------------------------------------------+
| Copyright Notice: |
| |
| Copyright (C) 1990-2012, International Business Machines |
| Corporation and others. All rights reserved |
+----------------------------------------------------------------------------+
| ID Ranges: |
| 1 - 999 Helps for messages |
| 1000 - 1999 Hypertext Links |
| 2000 - 2999 TWB window and actionbar |
| 3000 - 3999 Folder list window |
| 4000 - 4999 Document list window |
| 5000 - 5099 New folder dialog |
| 5100 - 5199 Folder Properties Dialog |
| 5200 - 5299 New Folder - Select Model Folder dialog |
| 6000 - 6999 Analysis (1) dialog |
| 7000 - 7099 free |
| 7100 - 7199 Tag Table List Window |
| 7200 - 7299 Tag Table Export Window |
| 7300 - 7399 Tag Table Import Window |
| 7400 - 7499 Tag Table Export Dialog |
| 7500 - 7599 Tag Table Import Dialog |
| 7600 - 7699 Word Count Dialog |
| 7700 - 7799 Word Count Window |
| 7800 - 7829 Folder Export Dialog |
| 7830 - 7859 Folder Export Note Dialog |
| 7860 - 7869 Folder Export Window |
| 7900 - 7929 Folder Import Dialog |
| 7930 - 7959 Folder Import Info Dialog |
| 7960 - 7969 Folder Import Window |
| 8000 - 8999 Document import dialog |
| 9000 - 9999 Document export dialog |
| 10000 - 10999 New translation memory / Create TM dialog |
| 11000 - 11999 Translation memory import dialog |
| 12000 - 12999 Translation memory window |
| 13000 - 13299 Dictionary window |
| 13300 - 13699 Dictionary Export Dialog |
| 13700 - 13899 Dictionary Import Dialog |
| 13900 - 13949 Dictionary Export Window |
| 13950 - 13999 Dictionary Import Window |
| 14000 - 14199 Translation memory export dialog |
| 14200 - 14399 Translation memory merge dialog |
| 15000 - 15099 Drives Dialog |
| 15100 - 15999 free |
| 16000 - 16099 File/View Pulldown + View Dialogs for Folderlist |
| 16100 - 16199 File/View Pulldown + View Dialogs for Document List |
| 16200 - 16299 File/View Pulldown + View Dialogs for Translation Memory |
| 16300 - 16399 File/View Pulldown + View Dialogs for Dictioanry |
| 17000 - 17099 Translation Processor - Actionbar Items |
| 17100 - 17199 Translation Processor - Find Dialog |
| 17200 - 17299 Translation Processor - Key Assignment Dialog |
| 17300 - 17399 Translation Processor - Color/Font Dialog |
| 17400 - 17499 Translation Processor - Open File Dialog |
| 17500 - 17599 Translation Processor - Test Sentence Dialog |
| 17600 - 17699 Translation Processor - Right Margine Dialog |
| 18100 - 18199 Dictionary Entry Display Dialog |
| 18200 - 18299 Dictionary Lookup Dialog |
| 18300 - 18399 Dictionary Edit Dialog |
| 18400 - 18499 Dictionary Properties Dialog |
| 18500 - 18599 Select Model Dictionary Dialog |
| 18600 - 18649 Dictionary Field Name Dialog |
| 18650 - 18699 Dictionary Change Name Dialog |
| 18700 - 18799 Delete Exported Folder Dialog |
| 18800 - 18899 Include Remote TM Dialog |
| 18900 - 18999 Maintain Server List Dialog |
| 19000 - 19099 Dictionary Create Dialog |
| 19100 - 19199 Dictionary Query Password Dialog |
| 19200 - 19299 Dictionary Enter Password Dialog |
| 19300 - 19399 Translation Processor - Spellcheck Dialog |
| 19400 - 19499 Dictionary Merge Dialog |
| 19500 - 19599 Analysis 2 Dialog (alias List Settings Dialog) |
| 19600 - new dialogs |
| 30000 - 30999 WP/TM IF dialogs |
+----------------------------------------------------------------------------+
| PVCS Section |
//
// $CMVC
//
// $Revision: 1.1 $ ----------- 14 Dec 2009
// -- New Release TM6.2.0!!
//
//
// $Revision: 1.1 $ ----------- 1 Oct 2009
// -- New Release TM6.1.8!!
//
//
// $Revision: 1.2 $ ----------- 20 Jul 2009
// GQ: - added HID_WCOUNT_FORMAT_CB (7623)
//
//
// $Revision: 1.1 $ ----------- 2 Jun 2009
// -- New Release TM6.1.7!!
//
//
// $Revision: 1.2 $ ----------- 1 Apr 2009
// GQ: - added help ID HID_SYSPROP_ENTITY_CHK (6227)
//
//
// $Revision: 1.1 $ ----------- 8 Dec 2008
// -- New Release TM6.1.6!!
//
//
// $Revision: 1.3 $ ----------- 7 Nov 2008
// GQ:- corrected/removed superfluos help IDs for analysis profile dialog
//
//
// $Revision: 1.2 $ ----------- 7 Nov 2008
// GQ: - added help IDs for analyiss profile dialog
//
//
// $Revision: 1.1 $ ----------- 23 Sep 2008
// -- New Release TM6.1.5!!
//
//
// $Revision: 1.3 $ ----------- 1 Aug 2008
// GQ: - added HID_WCOUNT_DUPMEMMATCH_CHK
//
//
// $Revision: 1.2 $ ----------- 31 Jul 2008
// GQ: - added IDs: HID_AN_PROFILE_CHK, HID_AN_PROFILE_CB, and HID_AN_PROFILE_PB
// - added IDs: HID_ANA_PROF_EXTHELP, HID_ANAPROF_GROUP_CB, HID_ANAPROF_AVAIL_LB, HID_ANAPROF_SELECT_PB,
// HID_ANAPROF_DESELECT_PB, HID_ANAPROF_SELECTED_LB, HID_ANAPROF_AUTOSUBST_CHK, HID_ANAPROF_NOMATCHSEGS_CHK,
// HID_ANAPROF_MEMMATCH_CHK, HID_ANAPROF_REDUND_CHK, HID_ANAPROF_LEADINGWS_CHK, HID_ANAPROF_TRAILINGWS_CHK,
// HID_ANAPROF_RESPECTCRLF_CHK, HID_ANAPROF_AUTOJOIN_CHK
//
//
// $Revision: 1.1 $ ----------- 23 Apr 2008
// -- New Release TM6.1.4!!
//
//
// $Revision: 1.1 $ ----------- 13 Dec 2007
// -- New Release TM6.1.3!!
//
//
// $Revision: 1.3 $ ----------- 14 Nov 2007
// GQ: - modified help IDs for concordance search dialog: from 23100-23130 to 25200-25230
//
//
// $Revision: 1.2 $ ----------- 13 Nov 2007
// GQ: - added help IDs for concordance search dialog: HID_TB_CFIND_EXTHELP (23100) up to
// HID_TB_CFIND_RESFIND_PB (23130)
//
//
// $Revision: 1.1 $ ----------- 29 Aug 2007
// -- New Release TM6.1.2!!
//
//
// $Revision: 1.2 $ ----------- 18 Jul 2007
// GQ: - added HID_FOLIMP_FORMAT_CB (7920) and HID_FOLEXP_FORMAT_CB (7817)
//
//
// $Revision: 1.1 $ ----------- 20 Apr 2007
// -- New Release TM6.1.1!!
//
//
// $Revision: 1.1 $ ----------- 20 Dec 2006
// -- New Release TM6.1.0!!
//
//
// $Revision: 1.2 $ ----------- 7 Nov 2006
// GQ: - added id for duplicate words radio button of count dialog (HID_WCOUNT_DUPLICATE_RB)
//
//
// $Revision: 1.1 $ ----------- 9 May 2006
// -- New Release TM6.0.11!!
//
//
// $Revision: 1.2 $ ----------- 11 Apr 2006
// GQ: - added help ID for system properties SGML/DITA checkbox (HID_SYSPROP_SGMLDITA_CHK)
//
//
// $Revision: 1.1 $ ----------- 20 Dec 2005
// -- New Release TM6.0.10!!
//
//
// $Revision: 1.3 $ ----------- 7 Dec 2005
// GQ: - removed duplicate Help IDs (_MEMSEL_... + _DICSEL_... )
//
//
// $Revision: 1.2 $ ----------- 5 Dec 2005
// GQ: - added help IDs for folder memory and dictionary selection dialog
//
//
// $Revision: 1.1 $ ----------- 16 Sep 2005
// -- New Release TM6.0.9!!
//
//
// $Revision: 1.3 $ ----------- 23 Aug 2005
// GQ: - added help IDs for folder import password dialog (HID_FOLIMPPW_...)
//
//
// $Revision: 1.2 $ ----------- 20 Jul 2005
// GQ: - added the help IDs: HID_NFOL_MEMCHANGE_PB, HID_NFOL_DICCHANGE_PB
// - added help IDs for memory (HID_FOLMEMSEL...) selection dialog
// - added help IDs for dictionary (HID_FOLDICSEL...) selection dialog
//
//
// $Revision: 1.1 $ ----------- 18 May 2005
// -- New Release TM6.0.8!!
//
//
// $Revision: 1.2 $ ----------- 20 Dec 2004
// --RJ: GLobal Find and Replace Dlg: add HID_FOLFIND_WHOLEWORD_CHK
//
//
// $Revision: 1.1 $ ----------- 29 Nov 2004
// -- New Release TM6.0.7!!
//
//
// $Revision: 1.3 $ ----------- 15 Nov 2004
// GQ: - adde dhelp IDs for MT Job dialog
//
//
// $Revision: 1.2 $ ----------- 30 Sep 2004
// --RJ: accessibility: add HIDs for ID_FILT2_DLG, ID_SORT_DLG, ID_SUBFOLDERNEW_DLG
//
//
// $Revision: 1.1 $ ----------- 31 Aug 2004
// -- New Release TM6.0.6!!
//
//
// $Revision: 1.1 $ ----------- 3 May 2004
// -- New Release TM6.0.5!!
//
//
// $Revision: 1.2 $ ----------- 2 Apr 2004
// -- RJ: add new HID_SYSPROP_LKUP_FUZZYSMALL_EF, HID_SYSPROP_LKUP_FUZZYMEDIUM_EF, HID_SYSPROP_LKUP_FUZZYLARGE_EF,
// -- add new HID_FOLEXP_MASTER_CHK
//
//
// $Revision: 1.1 $ ----------- 15 Dec 2003
// -- New Release TM6.0.4!!
//
//
// $Revision: 1.4 $ ----------- 5 Nov 2003
// --RJ: R007563: change wording to LKUPSINGLEOFCOMPOUNDS
//
//
// $Revision: 1.3 $ ----------- 29 Oct 2003
// --RJ: R007563: add HID_TB_PROFONE_NOLKUPSINGLEOFCOMPOUNDS
//
//
// $Revision: 1.2 $ ----------- 8 Oct 2003
// --RJ: P018279: add HID_MUPROP_GEN_REFLOW_CB
//
//
// $Revision: 1.1 $ ----------- 6 Oct 2003
// -- New Release TM6.0.3!!
//
//
// $Revision: 1.1 $ ----------- 26 Jun 2003
// -- New Release TM6.0.2!!
//
//
// $Revision: 1.1 $ ----------- 20 Feb 2003
// -- New Release TM6.0.1!!
//
//
// $Revision: 1.2 $ ----------- 2 Oct 2002
// --RJ: add HID_SYSPROP_DEFTGTLANG_CB
//
//
// $Revision: 1.1 $ ----------- 25 Jul 2002
// -- New Release TM6.0!!
//
//
// $Revision: 1.3 $ ----------- 31 Oct 2001
// GQ: - Added help ID for output conversion combobox of document export
//
//
// $Revision: 1.2 $ ----------- 19 Oct 2001
// GQ: - Added help IDs for fuyyiness levels in system preferences dialog
// - Added help IDs for markup table properties dialogs and ...pages
//
//
// $Revision: 1.1 $ ----------- 20 Aug 2001
// -- New Release TM2.7.2!!
//
//
// $Revision: 1.7 $ ----------- 7 May 2001
// GQ: Added help ID for 'search in translatable text only' checkbox
// -- RJ: add help ids for PROFILE settings new fields
//
//
// $Revision: 1.6 $ ----------- 16 Oct 2000
// -- add help id's for new items in editor and ITM
//
//
// $Revision: 1.5 $ ----------- 10 Jul 2000
// added folder import property sheet
//
//
// $Revision: 1.4 $ ----------- 14 Feb 2000
// - added help IDs for analysis whitespace handling and new folder export flags
//
//
// $Revision: 1.3 $ ----------- 10 Jan 2000
// - added help IDs for new analysis options
// - added help IDs for system property dialog
//
//
//
// $Revision: 1.2 $ ----------- 7 Dec 1999
// -- Initial Revision!!
//
*
* $Header: K:\DATA\EQFHELP.IV_ 1.36 01 Oct 1999 17:09:06 BUILD $
*
* $Log: K:\DATA\EQFHELP.IV_ $
*
* Rev 1.36 01 Oct 1999 17:09:06 BUILD
* - added help IDs for counting report and archive TM menu item
*
* Rev 1.35 26 Jul 1999 11:48:32 BUILD
* -- R004422_BACKSAVE: add IDs for HID_TB_PPROP_BACKTASKS_EXTHELP
*
* Rev 1.34 05 Jul 1999 10:15:28 BUILD
* -- add various help ids
*
* Rev 1.33 07 Jun 1999 10:29:50 BUILD
* - added help IDs for analysis property sheet
*
* Rev 1.32 17 May 1999 13:32:52 BUILD
* - added help IDs for conversion fields of document and folder properties
*
* Rev 1.31 03 May 1999 09:17:46 BUILD
* -- R004357_HLMISSPELLED: add HID_TP_MAIN_AUTOSPELL, HID_TP_MAIN_NEXTMISSPELL
*
* Rev 1.30 22 Feb 1999 14:13:08 BUILD
* -- add help ids for property sheet dialog
*
* Rev 1.29 07 Dec 1998 11:39:36 BUILD
* added help for counting report
*
* Rev 1.28 16 Nov 1998 16:25:48 BUILD
* - added help IDs for with relative path radiobuttons
*
* Rev 1.27 12 Oct 1998 17:49:48 BUILD
* add MT property help
*
* Rev 1.26 14 Sep 1998 15:28:48 BUILD
* added hid_offeset_file_kill_mi
*
* Rev 1.25 06 Mar 1998 15:46:08 BUILD
* new counting report
*
* Rev 1.24 24 Nov 1997 10:59:16 BUILD
* -- A48: add help for trnote
*
* Rev 1.23 12 Nov 1997 13:42:48 BUILD
* - added help offset IDs for print list and rename menu item
* - added help IDs for rename dialog
*
* Rev 1.22 04 Nov 1997 11:15:52 BUILD
* - added help ID for TM replace match checkbox of word count dialog
*
* Rev 1.21 08 Sep 1997 10:40:30 BUILD
* -- TOP97_A50: automatic linewrap within ITM
*
* Rev 1.20 19 Aug 1997 14:01:56 BUILD
* - A.57c "Special handling for document TMs"
* added help ID for "With document TM" checkbox of folder export dialog
*
* Rev 1.19 28 Jul 1997 10:23:18 BUILD
* - A57g: added help IDs for TM property dialog
*
* Rev 1.18 30 Jun 1997 14:22:04 BUILD
* -- A50: add HID_TB_PROFONE_ACTLINE_EF / RMARGIN_CBS, TMWND_CBS
*
* Rev 1.17 23 Jun 1997 10:08:28 BUILD
* -- add HID_IDM_NEXTBAD_MI 17965, HID_IDM_PREVBAD_MI 17970
*
* Rev 1.16 11 Jun 1997 17:18:26 BUILD
* - added help IDs for TM Match counting
*
* Rev 1.15 05 Mar 1997 09:45:10 BUILD
* - added help IDs for new controls in document properties and new document
* dialog
* - added help IDs for "Specify short document name" dialog
*
* Rev 1.14 25 Feb 1997 10:36:10 BUILD
* -- Compiler defines for _POE22, _TKT21, and NEWTCSTUFF eliminated
*
* Rev 1.13 24 Feb 1997 11:27:38 BUILD
* -- add id for Show Translation window
*
* Rev 1.12 20 Jan 1997 09:13:06 BUILD
* - added help IDs for "Set document processing options" dialog
*
* Rev 1.11 20 Dec 1996 15:18:20 BUILD
* - added help IDs for archive TM dialog and process window
*
* Rev 1.10 16 Dec 1996 09:41:42 BUILD
* -- add support for exact context match
*
* Rev 1.9 11 Dec 1996 16:10:40 BUILD
* - added help IDs for report handler list window
* -- add R/O memory avail and selected LBs
* - added help ID for "With search TMs" checkbox of folder export
*
* Rev 1.8 02 Dec 1996 10:34:42 BUILD
* - added help IDs for "Create counting report" dialog
*
* Rev 1.7 03 Sep 1996 09:43:08 BUILD
* - added help ID for "rename" checkbox and "newname" combobox of folder
* import dialog
* - added help ID for "original name" entryfield of folder properties dialog
* - added help id for "Connect shared resources" menu item and for
* "Terminology Lists" submenu
*
* Rev 1.6 28 Mar 1996 15:47:12 BUILD
* - added tile and cascade
*
* Rev 1.5 12 Feb 1996 10:32:02 BUILD
* - added help IDs for TMM function
*
* Rev 1.4 29 Jan 1996 17:11:50 BUILD
* - removed IDs for REMOTE items of utility pulldown
*
* Rev 1.3 24 Jan 1996 10:09:20 BUILD
* - corrected IDs of HID_LISTEDIT_EDI_ABR_HELP_PB and
* HID_LISTEDIT_EDI_ADD_HELP_PB
* - added help IDs for aut.lookup checkbox of DICNAME and DICPROP dialog
* - added IDs for global-find-and-change
*
* Rev 1.2 13 Jan 1996 14:05:02 BUILD
* - added help ID for autojoin checkbox of analysis 1 dialog
*
* Rev 1.1 10 Jan 1996 19:37:30 BUILD
* - added IDs for edit addenda dictionary
*
* Rev 1.0 09 Jan 1996 10:07:52 BUILD
* Initial revision.
+----------------------------------------------------------------------------+
*/
/*+----------------------------------------------------------------------------+
| help resids for error messages |
+----------------------------------------------------------------------------+
*/
/* The resids for error messages are the error message numbers. */
/* See file EQFMSG.H for these numbers and the associated help text. */
/* For the error messages the help resid range 1 to 999 has been reserved */
/*+----------------------------------------------------------------------------+
| help resid for NO HELP. This id is used when an option is not availabel |
| for the selected dialog. For this id no help should be defined. |
+----------------------------------------------------------------------------+
*/
#define HID_NO_HELP 0 // no help available
/*+----------------------------------------------------------------------------+
| help resids for troja user controls |
+----------------------------------------------------------------------------+
*/
#define HID_FILTER_CHECKBOX 1630 // filter checkbox
#define HID_FILTER_EDIT_PB 1631 // filter edit pushbutton
#define HID_FILTER_COMBO 1632 // filter combobox
#define HID_FILTER_DESCR_EF 1633 // filter description field
/*+----------------------------------------------------------------------------+
| help resids for troja main window ( = translation workbench ) |
| and TWB AAB except IDs for FILE and VIEW pulldown |
+----------------------------------------------------------------------------+
*/
#define HID_TWBM_EXTHELP 2000 // extended help for twb
#define HID_TWBM_HELP_SM 2800 // 'Help' submenu
#define HID_HELP_HELPFORHELP_MI 2805 // 'Help for Help' menu item
#define HID_HELP_EXTENDEDHELP_MI 2810 // 'Extended Help' menu item
#define HID_HELP_KEYSHELP_MI 2815 // 'Keys Help' menu item
#define HID_HELP_HELPINDEX_MI 2820 // 'Help Index' menu item
#define HID_HELP_TUTORIAL_MI 2825 // 'Tutorial' menu item
#define HID_HELP_PRODUCTINFO_MI 2830 // 'Productinfo' menu item
#define HID_TWBM_WINDOWS_SM 2900 // 'Windows' submenu
#define HID_WIND_MINALL_MI 2905 // 'Minimize All' menu item
#define HID_WIND_RESTOREALL_MI 2910 // 'Restore All' menu item
#define HID_WIND_ACTWIN_MI 2915 // menu items for act. windows
#define HID_WIND_TILE_MI 2920 // 'Tile' menu item
#define HID_WIND_CASCADE_MI 2925 // 'Cascade' menu item
/*+----------------------------------------------------------------------------+
| help resids for folderlist window |
+----------------------------------------------------------------------------+
*/
#define HID_FLL_EXTHELP 3000 // extended help for folderlist
/*+----------------------------------------------------------------------------+
| help resids for documentlist window |
+----------------------------------------------------------------------------+
*/
#define HID_DOCL_EXTHELP 4000 // extended help for folderlist
/*+----------------------------------------------------------------------------+
| help resids for new folder dialog |
+----------------------------------------------------------------------------+
*/
// Create New Folder Dialog
#define HID_NFOL_EXTHELP 5000 // ext. help for new folder
#define HID_NFOL_NAME_EF 5005 // folder name
#define HID_NFOL_DESCR_EF 5010 // folder description
#define HID_NFOL_DRIVE_PB 5012 // drive icon push buttons
#define HID_NFOL_BASEFOLDER_PB 5015 // 'base details on' pushbutton
#define HID_NFOL_MEMORY_CB 5020 // 'memory DB' combo box
#define HID_NFOL_FORMAT_CB 5023 // 'format' combo box
#define HID_NFOL_EDITOR_CB 5024 // 'editor' combo box
#define HID_NFOL_DICTAVAIL_LB 5025 // 'available dict' listbox
#define HID_NFOL_DICTSEL_LB 5035 // 'selected dict' listbox
#define HID_NFOL_RO_TM_AVAIL_LB 5037 // 'available TMs' listbox
#define HID_NFOL_RO_TM_SEL_LB 5039 // 'selected TMs' listbox
#define HID_NFOL_CREATE_PB 5040 // 'Create' push button
#define HID_NFOL_CANCEL_PB 5050 // 'Cancel' push button
#define HID_NFOL_HELP_PB 5055 // 'Help' push button
#define HID_NFOL_SOURCELANG_CB 5057 // source language combobox
#define HID_NFOL_TARGETLANG_CB 5059 // target language combobox
#define HID_NFOL_CONV_CB 5060 // conversion combobox
#define HID_NFOL_MEMCHANGE_PB 5061 // button "Select..." for memories
#define HID_NFOL_DICCHANGE_PB 5062 // button "Select..." for dictionaries
// Folder Properties Dialog
#define HID_FOLPROP_EXTHELP 5100 // ext. help for new folder
#define HID_FOLPROP_NAME_EF 5105 // folder name
#define HID_FOLPROP_DESCR_EF 5110 // folder description
#define HID_FOLPROP_DRIVE_PB 5112 // drive icon push buttons
#define HID_FOLPROP_BASEFOLDER_PB 5115 // 'base on' pushbutton
#define HID_FOLPROP_ORGNAME_EF 5117
#define HID_FOLPROP_MEMORY_CB 5120 // 'memory DB' combo box
#define HID_FOLPROP_FORMAT_CB 5123 // 'format' combo box
#define HID_FOLPROP_EDITOR_CB 5124 // 'editor' combo box
#define HID_FOLPROP_DICTAVAIL_LB 5125 // 'available dict' listbox
#define HID_FOLPROP_DICTSEL_LB 5135 // 'selected dict' listbox
#define HID_FOLPROP_RO_TM_AVAIL_LB 5137 // 'available TMs' listbox
#define HID_FOLPROP_RO_TM_SEL_LB 5139 // 'selected TMs' listbox
#define HID_FOLPROP_CREATE_PB 5140 // 'Change' push button
#define HID_FOLPROP_INFO_PB 5145 // 'Info' push button
#define HID_FOLPROP_CANCEL_PB 5150 // 'Cancel' push button
#define HID_FOLPROP_HELP_PB 5155 // 'Help' push button
#define HID_FOLPROP_SOURCELANG_CB 5157 // source language combobox
#define HID_FOLPROP_TARGETLANG_CB 5159 // target language combobox
#define HID_FOLPROP_CONV_CB 5160 // conversion combobox
#define HID_FOLPROP_MEMCHANGE_PB 5161 // button "Select..." for memories
#define HID_FOLPROP_DICCHANGE_PB 5162 // button "Select..." for dictionaries
// Folder Model Dialog
#define HID_FOLMODEL_EXTHELP 5200 // ext. help for folder model
#define HID_FOLMODEL_FOLDER_LB 5205 // folder listbox
#define HID_FOLMODEL_SELECT_PB 5210 // 'Select' push button
#define HID_FOLMODEL_CANCEL_PB 5215 // 'Cancel' push button
#define HID_FOLMODEL_HELP_PB 5220 // 'Help' push button
/*+----------------------------------------------------------------------------+
| help resids for analysis (1) dialog |
+----------------------------------------------------------------------------+
*/
#define HID_ANA1_EXTHELP 6000 // ext. help for analysis (1)
#define HID_ANA1_ANALYZE_LB 6005 // 'analyze files' listbox
#define HID_ANA1_MEMAVAIL_LB 6020 // available memdb listbox
#define HID_ANA1_MEMSEL_LB 6025 // selected memdb listbox
#define HID_ANA1_ADDTO_CHK 6030 // 'add to memdb' checkbox
#define HID_ANA1_ADDTO_CB 6035 // 'add to memdb' combobox
#define HID_ANA1_ADDMATCH_CHK 6040 // 'add exact match' checkbox
#define HID_ANA1_AUTOJOIN_CHK 6041 // 'autojoin segs' checkbox
#define HID_ANA1_ADDLATESTMATCH_CHK 6042 // 'add latest match' checkbox
#define HID_ANA1_ADDTONEWFILE_CHK 6043 // 'add not found segments' checkbox
#define HID_ANA1_ADDEXACTCONTEXT_CHK 6044 // 'add exact context match' checkbox
#define HID_ANA1_OK_PB 6045 // 'OK' push button
#define HID_ANA1_TMMATCH_CHK 6046 // 'TM match' checkbox
#define HID_ANA1_MORE_PB 6050 // 'More' push button
#define HID_ANA1_CANCEL_PB 6055 // 'Cancel' push button
#define HID_ANA1_HELP_PB 6060 // 'Help' push button
#define HID_ANA1_CREATELIST_CHK 6065 // 'Create lists' checkbox
/*+----------------------------------------------------------------------------+
| help resids for analysis profile dialog |
+----------------------------------------------------------------------------+
*/
#define HID_ANA_PROF_EXTHELP 6070
#define HID_ANAPROF_GROUP_CB 6071 // markup groub combobox
#define HID_ANAPROF_AVAIL_LB 6072 // available markups listbox
#define HID_ANAPROF_SELECT_PB 6073 // select markup push button
#define HID_ANAPROF_DESELECT_PB 6074 // deselect markup pushbutton
#define HID_ANAPROF_SELECTED_LB 6075 // selected markups listbox
#define HID_ANAPROF_AUTOSUBST_CHK 6076 // auto substitution checkbox
#define HID_ANAPROF_NOMATCHSEGS_CHK 6077 // create file containing untranslated segments checkbox
#define HID_ANAPROF_MEMMATCH_CHK 6078 // count memory match info checkbox
#define HID_ANAPROF_REDUND_CHK 6079 // prepare redundancy report
#define HID_ANAPROF_LEADINGWS_CHK 6080 // adjust leading whitespace checkbox
#define HID_ANAPROF_TRAILINGWS_CHK 6081 // adjust trailing whitespace checkbox
#define HID_ANAPROF_RESPECTCRLF_CHK 6082 // respect CRLF checkbox
#define HID_ANAPROF_AUTOJOIN_CHK 6083 // use joined segments when found checkbox
#define HID_ANAPROF_PROTECT_PB 6086
#define HID_ANAPROF_NOBLANK_CHK 6087 // "No blank at segment end even if source segment has one" checkbox
/*+----------------------------------------------------------------------------+
| help resids for analysis property pages |
+----------------------------------------------------------------------------+
*/
#define HID_ANA_PROP_EXTHELP 6100
#define HID_ANA_PROP_ANALYZE_PB 6101
#define HID_ANA_PROP_CANCEL_PB 6102
#define HID_ANA_PROP_HELP_PB 6103
#define HID_ANA_PROP_TABCTRL 6104
#define HID_ANA_PROP_GENERAL_EXTHELP 6110
#define HID_ANA_PROP_ANALYZE_LB 6111 // 'analyze files' listbox
#define HID_ANA_PROP_ADDTO_CB 6112 // 'add to memdb' combobox
#define HID_ANA_PROP_ADDMATCH_CHK 6113 // 'add exact match' checkbox
#define HID_ANA_PROP_ADDTONEWFILE_CHK 6114 // 'add not found segments' checkbox
#define HID_ANA_PROP_TMMATCH_CHK 6115 // 'TM match' checkbox
#define HID_ANA_PROP_CREATELIST_CHK 6116 // 'Create lists' checkbox
#define HID_AN_PROFILE_CHK 6117 // analysis profile checkbox
#define HID_AN_PROFILE_CB 6118 // analysis profile combobox
#define HID_AN_PROFILE_PB 6119 // analysis profile edit push button
#define HID_ANA_PROP_AUTSUBST_EXTHELP 6120
#define HID_ANA_PROP_AUTOJOIN_CHK 6121 // 'autojoin segs' checkbox
#define HID_ANA_PROP_ADDLATESTMATCH_CHK 6122 // 'add latest match' checkbox
#define HID_ANA_PROP_ADDEXACTCONTEXT_CHK 6123 // 'add exact context match' checkbox
#define HID_ANA_PROP_IGNORE_IDENTICAL_CHK 6124 // 'ignore identical segs' checkbox
#define HID_ANA_PROP_IGNORE_PATH_CHK 6125 // 'ignore document path' checkbox
#define HID_ANA1_LEADINGWS_CHK 6126 // 'Leading whitespace adjustment' checkbox
#define HID_ANA1_TRAILINGWS_CHK 6127 // 'Trailing whitespace adjustment' checkbox
#define HID_ANA_PROP_MISC_EXTHELP 6130
#define HID_ANA_PROP_MEMAVAIL_LB 6131 // available memdb listbox
#define HID_ANA_PROP_MEMSEL_LB 6132 // selected memdb listbox
#define HID_ANA_PROP_ADDTO_CHK 6133 // 'add to memdb' checkbox
#define HID_ANA_PROP_LIST_EXTHELP 6140
#define HID_ANA_PROP_ADDTERM_CHK 6141
#define HID_ANA_PROP_ADDTERMDIC_CB 6142
#define HID_ANA_PROP_NEWTERM_CHK 6143
#define HID_ANA_PROP_NEWTERMDIC_CB 6144
#define HID_ANA_PROP_NEWMINOCCUR_EF 6145
#define HID_ANA_PROP_NEWLISTINFO_CHK 6146
#define HID_ANA_PROP_FOUNDTERM_CHK 6147
#define HID_ANA_PROP_FOUNDTERMDIC_CB 6148
#define HID_ANA_PROP_FOUNDLISTINFO_CHK 6149
#define HID_ANA_PROP_FOUNDMINOCCUR_EF 6150
#define HID_ANA_PROP_DICTAVA_LB 6151
#define HID_ANA_PROP_DICTSEL_LB 6152
#define HID_ANA_PROP_EXTERMSINLIST_CHK 6153
#define HID_ANA_PROP_EXTERMSINLIST_CB 6154
#define HID_ANA_PROP_EXTERMSINDIC_CHK 6155
#define HID_ANA_PROP_EXTERMSINDIC_CB 6156
/*+----------------------------------------------------------------------------+
| help resids for system property pages |
+----------------------------------------------------------------------------+
*/
#define HID_SYSPROP_EXTHELP 6200
#define HID_SYSPROP_SET_PB 6201
#define HID_SYSPROP_CANCEL_PB 6202
#define HID_SYSPROP_HELP_PB 6203
#define HID_SYSPROP_TABCTRL 6204
#define HID_SYSPROP_GENERAL_EXTHELP 6210
#define HID_SYSPROP_BROWSER_EF 6211
#define HID_SYSPROP_LOGOTIME_EF 6212
#define HID_SYSPROP_GENTAGGING_CHK 6213
#define HID_SYSPROP_BROWSE_PB 6214
#define HID_SYSPROP_USEIELIKELIST_CHK 6215
#define HID_SYSPROP_FUZZYSMALL_EF 6216
#define HID_SYSPROP_FUZZYSMALL_SB 6217
#define HID_SYSPROP_FUZZYMEDIUM_EF 6218
#define HID_SYSPROP_FUZZYMEDIUM_SB 6219
#define HID_SYSPROP_FUZZYLARGE_EF 6220
#define HID_SYSPROP_FUZZYLARGE_SB 6221
#define HID_SYSPROP_DEFTGTLANG_CB 6222
#define HID_SYSPROP_LKUP_FUZZYSMALL_EF 6223
#define HID_SYSPROP_LKUP_FUZZYMEDIUM_EF 6224
#define HID_SYSPROP_LKUP_FUZZYLARGE_EF 6225
#define HID_SYSPROP_MARKUP_EXTHELP 6228
#define HID_SYSPROP_SGMLDITA_CHK 6226
#define HID_SYSPROP_ENTITY_CHK 6227
/*+----------------------------------------------------------------------------+
| help resids for tag table list window |
+----------------------------------------------------------------------------+
*/
#define HID_TAGLIST_EXTHELP 7100 // ext. help for tag table list
#define HID_TAGLIST_TAGTABLE_LB 7105 // tag table listbox
/*+----------------------------------------------------------------------------+
| help resids for tag table export window |
+----------------------------------------------------------------------------+
*/
#define HID_TAGEXPW_EXTHELP 7200 // ext. help for tag export window
/*+----------------------------------------------------------------------------+
| help resids for tag table import window |
+----------------------------------------------------------------------------+
*/
#define HID_TAGIMPW_EXTHELP 7300 // ext. help for tag import window
/*+----------------------------------------------------------------------------+
| help resids for tag table export dialog |
+----------------------------------------------------------------------------+
*/
#define HID_TAGEXP_EXTHELP 7400 // ext. help for tag export dlg
#define HID_TAGEXP_TROJA_BTN 7405
#define HID_TAGEXP_EXTERNAL_BTN 7410
#define HID_TAGEXP_EXPORT_SLE 7415
#define HID_TAGEXP_DRIVE_BTN 7420
#define HID_TAGEXP_NAME_SLE 7425
#define HID_TAGEXP_DIR_LB 7430
#define HID_TAGEXP_EXPORT_BTN 7435
#define HID_TAGEXP_CANCEL_BTN 7440
#define HID_TAGEXP_HELP_BTN 7445
/*+----------------------------------------------------------------------------+
| help resids for tag table import dialog |
+----------------------------------------------------------------------------+
*/
#define HID_TAGIMP_EXTHELP 7500 // ext. help for tag import dlg
#define HID_TAGIMP_ASCII_BTN 7505
#define HID_TAGIMP_INTERNAL_BTN 7510
#define HID_TAGIMP_DRIVE_BTN 7515
#define HID_TAGIMP_PATH_SLE 7520
#define HID_TAGIMP_DIR_LB 7525
#define HID_TAGIMP_FILES_LB 7530
#define HID_TAGIMP_TO_SLE 7535
#define HID_TAGIMP_OK_BTN 7540
#define HID_TAGIMP_CANCEL_BTN 7545
#define HID_TAGIMP_HELP_BTN 7550
/*+----------------------------------------------------------------------------+
| help resids for word count dialog |
+----------------------------------------------------------------------------+
*/
#define HID_WCOUNT_EXTHELP 7600 // ext. help for word count dlg
#define HID_WCOUNT_LISTBOX 7605
#define HID_WCOUNT_ORIGINAL_RB 7610
#define HID_WCOUNT_TRANSLATION_RB 7615
#define HID_WCOUNT_TMMATCH_RB 7617
#define HID_WCOUNT_TMREPLMATCH_CHK 7618
#define HID_WCOUNT_DUPLICATE_RB 7619
#define HID_WCOUNT_FILE_CB 7620
#define HID_WCOUNT_DUPMEMMATCH_CHK 7622
#define HID_WCOUNT_FORMAT_CB 7623
#define HID_WCOUNT_FILE_EF 7625
#define HID_WCOUNT_FILE_SET_PB 7630
#define HID_WCOUNT_SCREEN_CHK 7635
#define HID_WCOUNT_COUNT_PB 7640
#define HID_WCOUNT_CANCEL_PB 7645
#define HID_WCOUNT_HELP_PB 7650
/*+----------------------------------------------------------------------------+
| help resids for word count window |
+----------------------------------------------------------------------------+
*/
#define HID_WCOUNTW_EXTHELP 7700 // ext. help for word count win
#define HID_CNT00_COUNT_LB 7702 // wordcount listbox
/*+----------------------------------------------------------------------------+
| help resids for folder export dialog |
+----------------------------------------------------------------------------+
*/
#define HID_FOLEXP_EXTHELP 7800 // ext. help for folder export
#define HID_FOLEXP_NOTE_CHK 7802
#define HID_FOLEXP_DRIVE_PB 7804
#define HID_FOLEXP_DELETE_CHK 7806
#define HID_FOLEXP_WITHMEM_CHK 7808
#define HID_FOLEXP_WITHROMEM_CHK 7809
#define HID_FOLEXP_WITHDICT_CHK 7810
#define HID_FOLEXP_WITHDOCMEM_CHK 7811
#define HID_FOLEXP_HELP_PB 7812
#define HID_FOLEXP_CANCEL_PB 7814
#define HID_FOLEXP_EXPORT_PB 7816
#define HID_FOLEXP_SELDOCS_CHK 7818 // select documents checkbox
#define HID_FOLEXP_SELALL_PB 7820 // select all docs pushbutton
#define HID_FOLEXP_DESELALL_PB 7822 // deselect all docs pushb.
#define HID_FOLEXP_DOCS_LB 7824 // document listbox
#define HID_FOLEXP_OLDVERS_CHK 7825 // export-in-version-1-format
#define HID_FOLEXP_EXPORTAS_CHK 7827 // export-as checkbox
#define HID_FOLEXP_EXPORTAS_EF 7828 // export-as entryfield
#define HID_FOLEXP_EXPORTSHORT_CHK 7829 // export-using folder short name
#define HID_FOLEXP_MASTER_CHK 7815
#define HID_FOLEXP_FORMAT_CB 7817
/*+----------------------------------------------------------------------------+
| help resids for folder export note dialog |
+----------------------------------------------------------------------------+
*/
#define HID_FOLNOTE_EXTHELP 7830 // help for folder note dlg
#define HID_FOLNOTE_NOTE_MLE 7832
#define HID_FOLNOTE_HELP_PB 7834
#define HID_FOLNOTE_CANCEL_PB 7836
#define HID_FOLNOTE_NOTE_PB 7838
/*+----------------------------------------------------------------------------+
| help resids for folder export window |
+----------------------------------------------------------------------------+
*/
#define HID_FOLEXPW_EXTHELP 7860 // help for folder export win
// help IDs for folder memory selection dialog
#define HID_FOLMEMSEL_EXTHELP 7870 // help for memory selection dlg
#define HID_FOLMEMSEL_AVAILABLE_LB 7871
#define HID_FOLMEMSEL_SELECTED_LB 7872
#define HID_FOLMEMSEL_OK_PB 7873
#define HID_FOLMEMSEL_HELP_PB 7874
#define HID_FOLMEMSEL_CANCEL_PB 7875
// help IDs for folder dictionary selection dialog
#define HID_FOLDICSEL_EXTHELP 7880 // help for dictionary selection dlg
#define HID_FOLDICSEL_AVAILABLE_LB 7881
#define HID_FOLDICSEL_SELECTED_LB 7882
#define HID_FOLDICSEL_OK_PB 7883
#define HID_FOLDICSEL_HELP_PB 7884
#define HID_FOLDICSEL_CANCEL_PB 7885
/*+----------------------------------------------------------------------------+
| help resids for folder import dialog |
+----------------------------------------------------------------------------+
*/
#define HID_FOLIMP_EXTHELP 7900 // EXT. help for folder import
#define HID_FOLIMP_FROMDRIVE_PB 7902
#define HID_FOLIMP_FOLDER_LB 7904
#define HID_FOLIMP_WITHDICT_CHK 7906
#define HID_FOLIMP_WITHMEM_CHK 7908
#define HID_FOLIMP_RENAME_CHK 7909
#define HID_FOLIMP_TODRIVE_PB 7910
#define HID_FOLIMP_NEWNAME_CB 7911
#define HID_FOLIMP_HELP_PB 7912
#define HID_FOLIMP_CANCEL_PB 7914
#define HID_FOLIMP_INFO_PB 7916
#define HID_FOLIMP_IMPORT_PB 7918
#define HID_FOLIMP_FORMAT_CB 7920
/*+----------------------------------------------------------------------------+
| help resids for folder import info dialog |
+----------------------------------------------------------------------------+
*/
#define HID_FOLINFO_EXTHELP 7930 // help for folder info dlg
#define HID_FOLINFO_NOTE_MLE 7932
#define HID_FOLINFO_HELP_PB 7934
#define HID_FOLINFO_OK_PB 7936
#define HID_FOLINFO_DICTS_LB 7938
#define HID_FOLINFO_PRINT_PB 7940
#define HID_FOLINFO_DOCS_LB 7942 // help for document listbox
/*+----------------------------------------------------------------------------+
| help resids for folder import password dialog |
+----------------------------------------------------------------------------+
*/
#define HID_FOLIMPPW_EXTHELP 7950
#define HID_FOLIMPPW_PSW_EF 7951
#define HID_FOLIMPPW_ENTER_PB 7952
#define HID_FOLIMPPW_CANCEL_PB 7953
#define HID_FOLIMPPW_HELP_PB 7954
/*+----------------------------------------------------------------------------+
| help resids for folder import window |
+----------------------------------------------------------------------------+
*/
#define HID_FOLIMPW_EXTHELP 7960 // help for folder import win
/*+----------------------------------------------------------------------------+
| help resids for document import dialog |
+----------------------------------------------------------------------------+
*/
#define HID_FIMP_EXTHELP 8000 // ext. help for file import
#define HID_FIMP_ASCIIFORMAT_RB 8005 // 'ASCII Format' radio button
#define HID_FIMP_TROJAFORMAT_RB 8010 // 'Troja Format' radio button
#define HID_FIMP_IMPPATH_RB 8011 // 'relative path' radio button
#define HID_FIMP_DRIVE_PB 8025 // drive pushbuttons
#define HID_FIMP_FILENAME_EF 8030 // file name entryfield
#define HID_FIMP_DIRECTORY_LB 8035 // 'directories' listbox
#define HID_FIMP_FILES_LB 8040 // 'files' listbox
#define HID_FIMP_SELALL_PB 8045
#define HID_FIMP_DESALL_PB 8047
#define HID_FIMP_OK_PB 8050 // 'OK' pushbutton
#define HID_FIMP_CANCEL_PB 8055 // 'Cancel' pushbutton
#define HID_FIMP_HELP_PB 8060 // 'Help' push button
/*+----------------------------------------------------------------------------+
| help resids for file export dialog |
+----------------------------------------------------------------------------+
*/
#define HID_FEXP_EXTHELP 9000 // ext. help for file export
#define HID_FEXP_TROJAFORMAT_RB 9005 // 'Troja Format' radio button
#define HID_FEXP_ASCIIFORMAT_RB 9017 // 'ASCII Format' radio button
#define HID_FEXP_IMPPATH_RB 9018 // 'relative path' radio button
#define HID_FEXP_TARGFILE_CHK 9020 // 'Exp. Target' checkbox
#define HID_FEXP_TARGPATH_CB 9025 // 'Target Path' combobox
#define HID_FEXP_CONV_CB 9026 // 'Output conversion' combobox
#define HID_FEXP_REVMARK_CHK 9027
#define HID_FEXP_REVEDIT_PB 9028
#define HID_FEXP_REVMARKNAME_TEXT 9029
#define HID_FEXP_SOURCEFILE_CHK 9030 // 'Exp. Source' checkbox
#define HID_FEXP_SOURCEPATH_CB 9035 // 'Source Path' combobox
#define HID_FEXP_FILES_LB 9040 // 'files' listbox
#define HID_FEXP_SNOMATCH_CHK 9042 // 'Nomatch' checkbox
#define HID_FEXP_SNOMATCHPATH_EF 9044 // 'Nomatch' entryfield
#define HID_FEXP_DRIVE_PB 9045 // drive pushbuttons
#define HID_FEXP_OK_PB 9050 // 'OK' pushbutton
#define HID_FEXP_CANCEL_PB 9055 // 'Cancel' pushbutton
#define HID_FEXP_HELP_PB 9060 // 'Help' push button
/*+----------------------------------------------------------------------------+
| help resids for create memory dialog ('New memory') |
+----------------------------------------------------------------------------+
*/
#define HID_MEMCR_EXTHELP 10000 // ext help for new memory dlg
#define HID_MEMCR_NAME_EF 10005 // 'Memory Name' entry field
#define HID_MEMCR_DESCR_EF 10010 // 'Description' entry field
#define HID_MEMCR_DRIVE_PB 10015 // drive pushbuttons
#define HID_MEMCR_FORMAT_CB 10020 // 'Format' combobox
#define HID_MEMCR_SOURCE_CB 10030 // 'Source' combobox
#define HID_MEMCR_TARGET_CB 10035 // 'Target' combobox
#define HID_MEMCR_OK_PB 10040 // 'OK' pushbutton
#define HID_MEMCR_CANCEL_PB 10045 // 'Cancel' pushbutton
#define HID_MEMCR_HELP_PB 10050 // 'Help' push button
#define HID_MEMCR_LOCAL_RB 10060
#define HID_MEMCR_SHARED_RB 10065
#define HID_MEMCR_REMOTE_RB 10070
#define HID_MEMCR_SERVER_LB 10080
/*+----------------------------------------------------------------------------+
| help resids for TM property dialog |
+----------------------------------------------------------------------------+
*/
#define HID_TMPROP_EXTHELP 10100 // ext help for TM property dlg
#define HID_TMPROP_DESCR_EF 10105 // description entry field
#define HID_TMPROP_DOC_LB 10110 // document listbox
#define HID_TMPROP_MARKUP_LB 10115 // markup listbox
#define HID_TMPROP_CHANGE_PB 10120 // change pushbutton
#define HID_TMPROP_CANCEL_PB 10125 // cancel pushbutton
#define HID_TMPROP_HELP_PB 10130 // help push button
/*+----------------------------------------------------------------------------+
| help resids for memory import dialog |
+----------------------------------------------------------------------------+
*/
#define HID_MEMIMP_EXTHELP 11000 // ext help for import memory
#define HID_MEMIMP_ASCIIFORMAT_RB 11005 // 'ASCII Format' radio button
#define HID_MEMIMP_TROJAFORMAT_RB 11010 // 'Troja Format' radio button
#define HID_MEMIMP_DRIVE_PB 11015 // drive pushbuttons
#define HID_MEMIMP_FILENAME_EF 11020 // file name entryfield
#define HID_MEMIMP_DIRECTORY_LB 11025 // 'directories' listbox
#define HID_MEMIMP_FILES_LB 11030 // 'files' listbox
#define HID_MEMIMP_OK_PB 11035 // 'OK' pushbutton
#define HID_MEMIMP_CANCEL_PB 11040 // 'Cancel' pushbutton
#define HID_MEMIMP_HELP_PB 11045 // 'Help' push button
/*+----------------------------------------------------------------------------+
| help resids for memory window |
+----------------------------------------------------------------------------+
*/
#define HID_MEM_EXTHELP 12000 // extended help for memory
/*+----------------------------------------------------------------------------+
| help resids for dictionary window |
+----------------------------------------------------------------------------+
*/
#define HID_DICT_EXTHELP 13000 // extended help for dictionary
/*+----------------------------------------------------------------------------+
| help resids for dictionary export dialog |
+----------------------------------------------------------------------------+
*/
#define HID_DEXP_EXTHELP 13300 // extended help for dictexp
#define HID_DEXP_TROJA_BTN 13305
#define HID_DEXP_EXTERNAL_BTN 13310
#define HID_DEXP_EXPORT_SLE 13315
#define HID_DEXP_DRIVE_BTN 13320
#define HID_DEXP_NAME_SLE 13325
#define HID_DEXP_DIR_LB 13330
#define HID_DEXP_EXPORT_BTN 13335
#define HID_DEXP_CANCEL_BTN 13340
#define HID_DEXP_HELP_BTN 13345
/*+----------------------------------------------------------------------------+
| help resids for dictionary import dialog |
+----------------------------------------------------------------------------+
*/
#define HID_DIMP_EXTHELP 13700 // extended help for dictimp
#define HID_DICTIMP_ASCII_BTN 13705
#define HID_DICTIMP_INTERNAL_BTN 13710
#define HID_DICTIMP_DRIVE_BTN 13715
#define HID_DICTIMP_PATH_SLE 13720