home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Chip_1997-01_cd.bin / ms95 / disk22 / dir08 / f013700.re_ / f013700.re
Text File  |  1996-04-02  |  3KB  |  131 lines

  1. /*----------------------------------------------------------------------+
  2. |                                    |
  3. |  Copyright (1993-1995) Bentley Systems, Inc., All rights reserved.    |
  4. |                                    |
  5. |  "MicroStation" is a registered trademark and "MDL" and "MicroCSL"    |
  6. |  are trademarks of Bentley Systems, Inc.                    |
  7. |                                    |
  8. |  Limited permission is hereby granted to reproduce and modify this    |
  9. |  copyrighted material provided that the resulting code is used only     |
  10. |  in conjunction with Bentley Systems products under the terms of the    |
  11. |  license agreement provided therein, and that this notice is retained    |
  12. |  in its entirety in any such reproduction or modification.        |
  13. |                                    |
  14. +----------------------------------------------------------------------*/
  15. /*----------------------------------------------------------------------+
  16. |                                    |
  17. |    $Logfile:   J:/mdl/examples/chngtxt/english/chtxthlp.r_v  $
  18. |   $Workfile:   chtxthlp.r  $
  19. |   $Revision:   5.3  $
  20. |       $Date:   16 Jun 1995 15:16:08  $
  21. |                                    |
  22. +----------------------------------------------------------------------*/
  23. /*----------------------------------------------------------------------+
  24. |                                    |
  25. |   Function -                                |
  26. |                                    |
  27. |    Change Text Example Application Help Text            |
  28. |                                    |
  29. +----------------------------------------------------------------------*/
  30. #include <rscdefs.h>
  31. #include <helpdlog.h>
  32. #include "chtxtcmd.h"
  33.  
  34.  
  35. HelpArticle 0x00000000 =
  36. {
  37.     {
  38.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT_SINGLE, -1},
  39.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT_FENCE, -1},
  40.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT_ALL, -1}
  41.     },
  42.     {
  43.     {HELPRSC_COMMAND, CMD_FENCE_CHANGE_TEXT, -1}
  44.     },
  45.     "\200"
  46.     "The Change Text command is used to change old"
  47.     " text strings to new strings.\0"
  48. };
  49.  
  50. HelpArticle 0x00000001 =
  51. {
  52.     {
  53.     {0, 0, -1}
  54.     },
  55.     {
  56.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT_FENCE, -1},
  57.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT_ALL, -1}
  58.     },
  59.     "\200"
  60.     "The Change Text Single command is used to"
  61.     " change a single text string to new strin"
  62.     "g.\0"
  63. };
  64.  
  65. HelpArticle 0x00000002 =
  66. {
  67.     {
  68.     {0, 0, -1}
  69.     },
  70.     {
  71.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT_SINGLE, -1},
  72.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT_ALL, -1}
  73.     },
  74.     "\200"
  75.     "The Change Text Fence command is used to"
  76.     " change any text strings found within "
  77.     "the current fence to a new string.\0"
  78. };
  79.  
  80. HelpArticle 0x00000003 =
  81. {
  82.     {
  83.     {0, 0, -1}
  84.     },
  85.     {
  86.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT_SINGLE, -1},
  87.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT_FENCE, -1}
  88.     },
  89.     "\200"
  90.     "The Change Text All command is used to chan"
  91.     "ge all text strings to a new string.\0"
  92. };
  93.  
  94. HelpArticle 0x00000004 =
  95. {
  96.     {
  97.     {0, 0, -1}
  98.     },
  99.     {
  100.     {HELPRSC_COMMAND, CMD_CHANGE_TEXT, -1}
  101.     },
  102.     "\200"
  103.     "The Change Text All command is used to chan"
  104.     "ge all text strings to a new string.\0"
  105. };
  106.  
  107. HelpIndex 0x0 =
  108. {
  109.   { 0x00000000, 0x00000000},
  110.   { 0x00000004, 0x00000004}
  111. };
  112.  
  113. MessageList RSCID_TITLELIST =
  114. {
  115.   {
  116.     { 0, "Change Text" },
  117.     { 1, "Change a Single Text Field" },
  118.     { 2, "Change Text in a Fence" },
  119.     { 3, "Change All Text" },
  120.     { 4, "Fence Change Text" },
  121.   }
  122. };
  123.  
  124. HelpCommand CMD_CHANGE_TEXT = { 0, 0x00000000};
  125. HelpCommand CMD_CHANGE_TEXT_SINGLE = { 1, 0x00000001};
  126. HelpCommand CMD_CHANGE_TEXT_FENCE = { 2, 0x00000002};
  127. HelpCommand CMD_CHANGE_TEXT_ALL = { 3, 0x00000003};
  128. HelpCommand CMD_FENCE_CHANGE_TEXT = { 4, 0x00000004};
  129.  
  130.  
  131.