home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / book / pm5.inf (.txt) < prev    next >
OS/2 Help File  |  1999-05-12  |  504KB  |  19,716 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. Notebook Controls ΓòÉΓòÉΓòÉ
  3.  
  4. A notebook control (WC_NOTEBOOK window class) is a visual component that 
  5. organizes information on individual pages so that a user can find and display 
  6. that information quickly and easily. This chapter explains how to use notebook 
  7. controls in PM applications. 
  8.  
  9.  
  10. ΓòÉΓòÉΓòÉ 1.1. About Notebook Controls ΓòÉΓòÉΓòÉ
  11.  
  12. This notebook control component simulates a real notebook but improves on it by 
  13. overcoming a notebook's natural limitations. A user can select and display 
  14. pages by using a pointing device or the keyboard. 
  15.  
  16. The notebook can be customized to meet varying application requirements, while 
  17. providing a user interface component that can be used easily to develop 
  18. products that conform to the Common User Access (CUA) user interface 
  19. guidelines. The application can specify different colors, sizes, and 
  20. orientations for its notebooks and whether an old notebook or a new style 
  21. notebook is desired, but the underlying function of the control remains the 
  22. same. 
  23.  
  24.  
  25. ΓòÉΓòÉΓòÉ 1.1.1. Notebook Styles for an Old Notebook ΓòÉΓòÉΓòÉ
  26.  
  27. This section describes the notebook style components associated with an 
  28. old-style notebook: 
  29.  
  30.      Page buttons 
  31.      Major and minor tabs 
  32.      Status line 
  33.      Binding 
  34.      Intersection of back pages 
  35.      Tab shapes 
  36.  
  37.  
  38. ΓòÉΓòÉΓòÉ 1.1.1.1. Page Buttons ΓòÉΓòÉΓòÉ
  39.  
  40. In the bottom-right corner of the notebook are the page buttons. These buttons 
  41. let you bring one page of the notebook into view at a time. They are a standard 
  42. component that is automatically provided with every old notebook. However, the 
  43. application can change the default width and height of the page buttons by 
  44. using the BKM_SETDIMENSIONS message. The page buttons always are located in the 
  45. corner where the recessed edges of the notebook intersect. 
  46.  
  47. Selecting the forward page button (the arrow pointing to the right) causes the 
  48. next page to be displayed and selecting the backward page button (the arrow 
  49. pointing to the left) causes the previous page to be displayed. Prior to 
  50. inserting pages in the notebook, the page buttons are displayed with 
  51. unavailable-state emphasis;  therefore, selecting either page button would not 
  52. bring a page into view. 
  53.  
  54.  
  55. ΓòÉΓòÉΓòÉ 1.1.1.2. Major Tabs ΓòÉΓòÉΓòÉ
  56.  
  57. Major and minor tabs are used to organize related pages into sections. Minor 
  58. tabs define subsections within major tab sections. The content of each section 
  59. has a common theme, which is represented to the user by a tabbed divider that 
  60. is similar to a tabbed page in a notebook, an address book, or a large 
  61. dictionary. 
  62.  
  63. The BKS_MAJORTABRIGHT style bit specifies that major tabs are to be placed on 
  64. the right side of the notebook. This is the default major tab placement when 
  65. the back pages intersect at the bottom-right corner of the notebook. The 
  66. binding is located on the left, because it is always located on the opposite 
  67. side of the notebook from the major tabs. 
  68.  
  69. The placement of the major tabs is limited to one of the two edges on which 
  70. there are recessed pages. For example, if the application specifies the back 
  71. pages intersection at the bottom-right corner (BKS_BACKPAGESBR, the default), 
  72. the major tabs can be placed on either the bottom edge (BKS_MAJORTABBOTTOM) or 
  73. the right edge (BKS_MAJORTABRIGHT) of the notebook. In this situation, if the 
  74. application specifies that major tabs are to be placed on the left or top edges 
  75. of the notebook, the notebook control places them on the right edge anyway-the 
  76. default placement for back pages intersecting at the bottom-right corner. 
  77.  
  78. When major tabs are defined at the creation of the notebook they are not 
  79. displayed on screen. Major tab attributes only show at the time a page is 
  80. inserted into the notebook. This is done by specifying the BKA_MAJOR attribute 
  81. in the BKM_INSERTPAGE message. 
  82.  
  83.  
  84. ΓòÉΓòÉΓòÉ 1.1.1.3. Minor Tabs ΓòÉΓòÉΓòÉ
  85.  
  86. Minor tabs are specified using the BKA_MINOR attribute. Minor tabs always are 
  87. placed perpendicular to the major tabs, based on the intersection of the back 
  88. pages and the major tab placement. Only one major or minor tab attribute can be 
  89. specified for each notebook page. Minor tabs are displayed only if the 
  90. associated major tab page is selected or if the notebook has no major tab 
  91. pages. 
  92.  
  93. The placement of the minor tabs depends entirely on the placement of the back 
  94. pages and major tabs, respectively. The minor tabs always are located on the 
  95. recessed page side that has no major tabs. 
  96.  
  97.  
  98. ΓòÉΓòÉΓòÉ 1.1.1.4. Status Line ΓòÉΓòÉΓòÉ
  99.  
  100. To the left of the page buttons in the default old notebook style setting is 
  101. the status line, which enables the application to provide information to the 
  102. user about the page currently displayed. The notebook does not supply any 
  103. default text for the status line. 
  104.  
  105. The application is responsible for associating a text string with the status 
  106. line of each page on which a text string is to be displayed.  The status line 
  107. can be used in addition to the major and minor tabs to provide the user with 
  108. additional information on a particular page in the notebook.  It is commonly 
  109. used in large notebooks to assist the user in navigating, by indicating that 
  110. this page is page 1 of n. 
  111.  
  112. The status text is drawn left-justified by default, but it can be drawn 
  113. centered or right-justified. The same status text justification applies to all 
  114. pages in the notebook. This setting is specified by the BKS_STATUSTEXTLEFT 
  115. style bit. The location of the back pages intersection and the major tabs has 
  116. no effect on the specification of the status line position. This style bit can 
  117. be set for the entire notebook. 
  118.  
  119.  
  120. ΓòÉΓòÉΓòÉ 1.1.1.5. Binding ΓòÉΓòÉΓòÉ
  121.  
  122. The notebook control resembles a real notebook in its general appearance. The 
  123. default binding is solid and is placed on the left side. This binding is used 
  124. if the BKS_SOLIDBIND style bit is specified or if no style bit is specified. 
  125.  
  126. Two styles are provided for the notebook binding: solid and spiral. The 
  127. notebook is displayed with a solid binding by default, but the application can 
  128. specify BKS_SPIRALBIND to display a spiral binding. 
  129.  
  130. The placement of the binding depends entirely on the placement of the back 
  131. pages and major tabs, respectively. The binding always is located on the 
  132. opposite side of the notebook from the major tabs. 
  133.  
  134.  
  135. ΓòÉΓòÉΓòÉ 1.1.1.6. Intersection of Back Pages ΓòÉΓòÉΓòÉ
  136.  
  137. The recessed edges that intersect near the page buttons are called the back 
  138. pages. The default notebook's back pages intersect in the bottom-right corner, 
  139. which means the recessed pages are on the bottom and right edges. This setting 
  140. is specified by the BKS_BACKPAGESBR style bit. The back pages are important 
  141. because their intersection determines where the major tabs can be placed, which 
  142. in turn determines the placement of the binding and the minor tabs. 
  143.  
  144. The following table describes the available notebook control styles for a old 
  145. notebook: 
  146.  
  147. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  148. ΓöéBack Pages            ΓöéMajor Tabs       ΓöéMinor Tabs   ΓöéBinding Γöé
  149. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  150. ΓöéBottom-right (default)ΓöéBottom           ΓöéRight        ΓöéTop     Γöé
  151. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  152. ΓöéBottom-right (default)ΓöéRight (default)  ΓöéBottom       ΓöéLeft    Γöé
  153. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  154. ΓöéBottom-left           ΓöéBottom (default) ΓöéLeft         ΓöéTop     Γöé
  155. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  156. ΓöéBottom-left           ΓöéLeft             ΓöéBottom       ΓöéRight   Γöé
  157. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  158. ΓöéTop-right             ΓöéTop (default)    ΓöéRight        ΓöéBottom  Γöé
  159. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  160. ΓöéTop-right             ΓöéRight            ΓöéTop          ΓöéLeft    Γöé
  161. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  162. ΓöéTop-left              ΓöéTop              ΓöéLeft         ΓöéBottom  Γöé
  163. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  164. ΓöéTop-left              ΓöéLeft (default)   ΓöéTop          ΓöéRight   Γöé
  165. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  166.  
  167.  
  168. ΓòÉΓòÉΓòÉ 1.1.1.7. Tab Shapes and Contents ΓòÉΓòÉΓòÉ
  169.  
  170. The default shape of the tabs used on notebook divider pages is square. This 
  171. setting is specified by the BKS_SQUARETABS style bit. The shape of the tabs can 
  172. be square, rounded, or polygonal. The tab text can be drawn left-justified, 
  173. right-justified, or centered. Once set, these styles apply to the major and 
  174. minor tabs for all pages in the notebook. The location of the back pages 
  175. intersection and the major tabs has no effect on the specification of the 
  176. tab-shape position. As with the page buttons, the application can change the 
  177. default width and height of the major and minor tabs by using the 
  178. BKM_SETDIMENSIONS message. 
  179.  
  180. A notebook tab can contain text, a bitmap, or be owner-drawn. Text is 
  181. associated with a tab page by using the BKM_SETTABTEXT message. Notebook tab 
  182. text is centered by default or by specifying the BKS_TABTEXTCENTER style when 
  183. creating the notebook window. A bitmap is placed on a tab by using the 
  184. BKM_SETTABBITMAP message.  Since the bitmap stretches to fill the rectangular 
  185. area of the tab, no style bits are needed for bitmap positioning. If neither a 
  186. BKM_SETTABTEXT nor a BKM_SETTABBITMAP message is used, the notebook owner is 
  187. responsible for drawing the tab when a WM_DRAWITEM message is received for the 
  188. tab. 
  189.  
  190.  
  191. ΓòÉΓòÉΓòÉ 1.1.1.8. Summary of Notebook Styles for Old Notebook ΓòÉΓòÉΓòÉ
  192.  
  193. The old notebook control provides style bits so that your application can 
  194. specify or change the default style settings. One style bit from each of the 
  195. following groups can be specified. If you specify more than one style bit, you 
  196. must use an OR operator (|) to combine them. 
  197.  
  198.      Type of binding 
  199.  
  200.       BKS_SOLIDBIND                      Solid (default) 
  201.       BKS_SPIRALBIND                     Spiral 
  202.  
  203.      Intersection of back pages 
  204.  
  205.       BKS_BACKPAGESBR                    Bottom-right corner (default) 
  206.       BKS_BACKPAGESBL                    Bottom-left corner 
  207.       BKS_BACKPAGESTR                    Top-right corner 
  208.       BKS_BACKPAGESTL                    Top-left corner 
  209.  
  210.      Location of major tabs 
  211.  
  212.       BKS_MAJORTABRIGHT                  Right edge (default) 
  213.       BKS_MAJORTABLEFT                   Left edge 
  214.       BKS_MAJORTABTOP                    Top edge 
  215.       BKS_MAJORTABBOTTOM                 Bottom edge 
  216.  
  217.      Shape of tabs 
  218.  
  219.       BKS_SQUARETABS                     Square (default) 
  220.       BKS_ROUNDEDTABS                    Rounded 
  221.       BKS_POLYGONTABS                    Polygonal 
  222.  
  223.      Alignment of text associated with tabs 
  224.  
  225.       BKS_TABTEXTCENTER                  Centered (default) 
  226.       BKS_TABTEXTLEFT                    Left-justified 
  227.       BKS_TABTEXTRIGHT                   Right-justified 
  228.  
  229.      Alignment of status-line text 
  230.  
  231.       BKS_STATUSTEXTLEFT                 Left-justified (default) 
  232.       BKS_STATUSTEXTRIGHT                Right-justified 
  233.       BKS_STATUSTEXTCENTER               Centered 
  234.  
  235.      Styles not applicable to an Old Notebook 
  236.  
  237.       BKS_TABBEDDIALOG                   Indicates a new-style notebook is 
  238.                                          desired. 
  239.       BKS_BUTTONAREA                     Creates common button area for a new 
  240.                                          notebook.  (This style uses the same 
  241.                                          area as BKS_POLYGONTABS, so it may 
  242.                                          generate unexpected results if used.) 
  243.  
  244.  
  245. ΓòÉΓòÉΓòÉ 1.1.2. Notebook Styles for a New Notebook ΓòÉΓòÉΓòÉ
  246.  
  247. This section describes the notebook style components associated with a 
  248. new-style notebook: 
  249.  
  250.      Dog-eared tab 
  251.      Major tabs 
  252.      Scroll tabs 
  253.      Status line 
  254.      Minor tabs and the Page List 
  255.      Common button area 
  256.  
  257.  A new-style notebook will reformat itself if a new font is dropped on the 
  258.  notebook window. 
  259.  
  260.  
  261. ΓòÉΓòÉΓòÉ 1.1.2.1. Dog-Eared Tab ΓòÉΓòÉΓòÉ
  262.  
  263. The page buttons in the old notebook control have been replaced by a dog-eared 
  264. tab in the upper-right hand corner of the control. Selecting the area behind 
  265. the dog-eared tab causes the next page to be displayed and selecting the 
  266. dog-eared tab itself causes the previous page to be displayed. Plus and minus 
  267. symbols emphasize the directions the user can travel in the notebook. A + 
  268. symbol in the area behind the dog-eared tab indicates the user can page 
  269. forward, and a - symbol in the dog-eared tab indicates the user can page 
  270. backward. The symbol disappears when there are no more pages to turn in that 
  271. direction. 
  272.  
  273.  
  274. ΓòÉΓòÉΓòÉ 1.1.2.2. Major Tabs ΓòÉΓòÉΓòÉ
  275.  
  276. Major tabs are used to organize related pages in sections.  Major tabs in a new 
  277. notebook may appear along the bottom of the notebook by specifying the 
  278. BKS_MAJORTABBOTTOM style, or they may appear along the top of the notebook by 
  279. default or by explicitly specifying the BKS_MAJORTABTOP style.  The application 
  280. can control whether the tabs are ordered from left to right or right to left by 
  281. using the appropriate style. Minor tabs are no longer displayed as tabs on the 
  282. new notebook. Minor tabs are shown as part of the page list.  The following 
  283. table describes the available notebook control styles: 
  284.  
  285. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  286. ΓöéStyle                       ΓöéLeft to Right     ΓöéRight to Left     Γöé
  287. Γöé                            Γöé(default)         Γöé                  Γöé
  288. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  289. ΓöéBKS_MAJORTABTOP (default)   ΓöéBKS_BACKPAGESTR   ΓöéBKS_BACKPAGESTL   Γöé
  290. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  291. ΓöéBKS_MAJORTABBOTTOM          ΓöéBKS_BACKPAGESBR   ΓöéBKS_BACKPAGESBL   Γöé
  292. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  293.  
  294.  
  295. ΓòÉΓòÉΓòÉ 1.1.2.3. Status line ΓòÉΓòÉΓòÉ
  296.  
  297. To the left of the dog-eared tab is the status line, which enables the 
  298. application to provide information to the user about the page being displayed. 
  299. The notebook does not supply any default text for this line, thus the 
  300. application is responsible for associating a text string with the status line 
  301. on each page of the notebook. 
  302.  
  303. The status line is always next to the dog-eared tab, thus the 
  304. BKS_STATUSTEXTLEFT, BKS_STATUSTEXTRIGHT, and BKS_STATUSTEXTMIDDLE styles are 
  305. ignored. 
  306.  
  307.  
  308. ΓòÉΓòÉΓòÉ 1.1.2.4. Left and Right Scroll Tabs ΓòÉΓòÉΓòÉ
  309.  
  310. Left and right scroll tabs appear as necessary on either side of the major 
  311. tabs. Click on the appropriate scroll tab until the tab you want scrolls into 
  312. view. 
  313.  
  314.  
  315. ΓòÉΓòÉΓòÉ 1.1.2.5. Page List ΓòÉΓòÉΓòÉ
  316.  
  317. The page list is a popup menu that lists all the pages in the notebook. To 
  318. display the page list, position the pointer on a notebook tab or border and 
  319. click mouse button 2. If a major tab in the page list has more than one page 
  320. associated with it, its pages are placed in a submenu. 
  321.  
  322. The text displayed in the page list for a given page is determined by the minor 
  323. tab, major tab, and status text associated with the page. If a minor tab is 
  324. associated with a page, its text is used. If only a major tab is associated 
  325. with a page, the major tab text is used.  If no tab is associated with the 
  326. page, the status line text is used for the page list.  If no status text is 
  327. provided for the page, the page list entry is left blank. 
  328.  
  329.  
  330. ΓòÉΓòÉΓòÉ 1.1.2.6. Common Button Area ΓòÉΓòÉΓòÉ
  331.  
  332. When the BKS_BUTTONAREA style is set, a common button area is created to 
  333. contain a set of push buttons which is the same on each notebook page.  These 
  334. buttons are children of the notebook window.  Buttons common to all pages in 
  335. the notebook can be added, and specific buttons for a given notebook page may 
  336. also be added as needed.  The button area is placed opposite the major tabs of 
  337. the notebook. 
  338.  
  339. Common buttons behave exactly like ordinary push buttons except that they are 
  340. positioned and sized automatically by the notebook control.  Notification 
  341. messages from the buttons are sent to the current notebook page.  Buttons 
  342. common to all notebook pages are handled by the BKM_SETNOTEBOOKBUTTONS message. 
  343. Buttons specific to a notebook page can be created as children of that notebook 
  344. page using the BS_NOTEBOOKBUTTON style. 
  345.  
  346. If you create BS_NOTEBOOKBUTTON style buttons for a notebook page, they will 
  347. override the common buttons created by BKM_SETNOTEBOOKBUTTONS.  For instance, 
  348. if you want to have buttons Help and Default available on all pages but one, 
  349. use the BKM_SETNOTEBOOKBUTTONS message to create them, but create 
  350. BS_NOTEBOOKBUTTON style buttons on the page requiring special buttons, and they 
  351. will be the ones shown when that particular notebook page is displayed. 
  352.  
  353. The states of the buttons created using BKM_SETNOTEBOOKBUTTONS are not changed 
  354. when the notebook page turns. 
  355.  
  356.  
  357. ΓòÉΓòÉΓòÉ 1.1.2.7. Summary of Notebook Styles for New Notebook ΓòÉΓòÉΓòÉ
  358.  
  359. The new notebook control provides style bits so that your application can 
  360. specify or change the default style settings. One style bit from each of the 
  361. following groups can be specified. If you specify more than one style bit, you 
  362. must use an OR operator (|) to combine them. 
  363.  
  364.      New Notebook 
  365.  
  366.       BKS_TABBEDDIALOG                   Indicates a new notebook control is 
  367.                                          desired.  (The default is an old 
  368.                                          notebook.) 
  369.  
  370.      Location of major tabs 
  371.  
  372.       BKS_MAJORTABTOP                    Top edge (default) 
  373.       BKS_MAJORTABBOTTOM                 Bottom edge 
  374.  
  375.      Ordering of major tabs 
  376.  
  377.       BKS_BACKPAGESTR                    Left-to-right when BKS_MAJORTABTOP 
  378.                                          (default) 
  379.       BKS_BACKPAGESTL                    Right to left when BKS_MAJORTABTOP 
  380.       BKS_BACKPAGESBR                    Left-to-right when BKS_MAJORTABBOTTOM 
  381.                                          (default) 
  382.       BKS_BACKPAGESBL                    Right-to-left when BKS_MAJORTABBOTTOM 
  383.  
  384.      Button Area 
  385.  
  386.       BKS_BUTTONAREA                     Creates space above or below the 
  387.                                          notebook page for a set of push 
  388.                                          buttons. 
  389.  
  390.      Styles ignored by New Notebook 
  391.  
  392.       BKS_SOLIDBIND                      Solid binding 
  393.       BKS_SPIRALBIND                     Spiral binding 
  394.       BKS_TABTEXTCENTER                  Centered tab text 
  395.       BKS_TABTEXTLEFT                    Left-justified tab text 
  396.       BKS_TABTEXTRIGHT                   Right-justified tab text 
  397.       BKS_STATUSTEXTLEFT                 Left-justified status text 
  398.       BKS_STATUSTEXTRIGHT                Right-justified status text 
  399.       BKS_STATUSTEXTCENTER               Centered status text 
  400.       BKS_MAJORTABRIGHT                  Major tabs on right edge 
  401.       BKS_MAJORTABLEFT                   Major tabs on left edge 
  402.       BKS_SQUARETABS                     Square tabs 
  403.       BKS_ROUNDEDTABS                    Rounded tabs 
  404.       BKS_POLYGONTABS                    Polygonal tabs (Do not specify with 
  405.                                          BKS_TABBEDDIALOG because this style 
  406.                                          overlaps BKS_BUTTONAREA and you might 
  407.                                          get unexpected results.) 
  408.  
  409.  
  410. ΓòÉΓòÉΓòÉ 1.2. Using Notebook Controls ΓòÉΓòÉΓòÉ
  411.  
  412. The following sections describe how to create pages, insert pages into, create 
  413. and associate windows for, and delete pages from a notebook. 
  414.  
  415.  
  416. ΓòÉΓòÉΓòÉ 1.2.1. Notebook Creation ΓòÉΓòÉΓòÉ
  417.  
  418. You create a notebook by using the WC_NOTEBOOK window class name in the 
  419. ClassName parameter of WinCreateWindow. The following sample code shows the 
  420. creation of the notebook. The style set in the ulNotebookStyles variable (the 
  421. BKS_* values) specifies that the notebook is to be created with a solid binding 
  422. and the back pages intersecting at the bottom-right corner, major tabs placed 
  423. on the right edge, shape tab square, tab text centered, and status-line text 
  424. left-justified These are the default settings and are given here only to show 
  425. how notebook styles are set. 
  426.  
  427. HWND    hwndNotebook;            /* Notebook window handle            */
  428. ULONG   ulNotebookStyles;        /* Notebook window styles            */
  429. ULONG   x, y, cx, cy;            /* Coordinates                       */
  430.  
  431. /**********************************************************************/
  432. /* Set the BKS_style flags to customize the notebook.                 */
  433. /**********************************************************************/
  434. ulNotebookStyles =
  435.   BKS_SOLIDBIND     |          /* Use solid binding                   */
  436.   BKS_BACKPAGESBR   |          /* Set back pages to intersect at the  */
  437.                                /* bottom-right corner                 */
  438.   BKS_MAJORTABRIGHT |          /* Position major tabs on right side   */
  439.   BKS_SQUARETABS    |          /* Make tabs square                    */
  440.   BKS_TABTEXTCENTER |          /* Center tab text                     */
  441.   BKS_STATUSTEXTLEFT;          /* Left-justified status-line text     */
  442.  
  443. /**********************************************************************/
  444. /* Create the notebook control window.                                */
  445. /**********************************************************************/
  446. hwndNotebook =
  447.   WinCreateWindow(
  448.     hwndParent,                /* Parent window handle                */
  449.     WC_NOTEBOOK,               /* Notebook window class               */
  450.     NULL,                      /* No window text                      */
  451.     ulNotebookStyles,          /* Notebook window styles              */
  452.     x, y, cx, cy,              /* Origin and size                     */
  453.     hwndOwner,                 /* Owner window handle                 */
  454.     HWND_TOP,                  /* Sibling window handle               */
  455.     ID_BOOK,                   /* Notebook window ID                  */
  456.     NULL,                      /* No control data                     */
  457.     NULL);                     /* No presentation parameters          */
  458.  
  459. /**********************************************************************/
  460. /* Make the notebook control visible.                                 */
  461. /**********************************************************************/
  462. WinShowWindow(
  463.   hwndNotebook,                /* Notebook window handle              */
  464.   TRUE);                       /* Make the window visible             */
  465.  
  466.  
  467. ΓòÉΓòÉΓòÉ 1.2.2. Changing Notebook Styles ΓòÉΓòÉΓòÉ
  468.  
  469. The following figure shows some sample code fragments for setting the notebook 
  470. style to spiral binding, back pages intersecting at the bottom-left corner, 
  471. major tabs placed on the bottom edge, tab shape rounded, tab text 
  472. left-justified, and status-line text centered. 
  473.  
  474. /**********************************************************************/
  475. /* Query for the existing notebook window style settings.             */
  476. /**********************************************************************/
  477. ulNotebookStyles =
  478.   WinQueryWindowULong(hwndNotebook,    /* Notebook window handle      */
  479.                       QWL_STYLE);      /* Set notebook style          */
  480.  
  481. /**********************************************************************/
  482. /* Reset notebook window style flags, leaving window flags unchanged. */
  483. /**********************************************************************/
  484. ulNotebookStyles &= 0xFFFF0000;
  485.  
  486. /**********************************************************************/
  487. /* Setup the new notebook window style flags.                         */
  488. /**********************************************************************/
  489. ulNotebookStyles |=
  490.   BKS_SPIRALBIND     |         /* Use spiral binding                  */
  491.   BKS_BACKPAGESBL    |         /* Set back pages to intersect at the  */
  492.                                /* bottom-left corner                  */
  493.   BKS_MAJORTABBOTTOM |         /* Position major tabs on bottom edge  */
  494.   BKS_ROUNDEDTABS    |         /* Make tabs rounded                   */
  495.   BKS_TABTEXTLEFT    |         /* Left-justified tab text             */
  496.   BKS_STATUSTEXTCENTER;        /* Center status-line text             */
  497.  
  498. /**********************************************************************/
  499. /* Set the new notebook style.                                        */
  500. /**********************************************************************/
  501. WinSetWindowULong(
  502.   hwndNotebook,                /* Notebook window handle              */
  503.   QWL_STYLE,                   /* Window style                        */
  504.   ulNotebookStyles);           /* Set notebook style                  */
  505.  
  506. /**********************************************************************/
  507. /* Invalidate to force a repaint.                                     */
  508. /**********************************************************************/
  509. WinInvalidateRect(
  510.   hwndNotebook,                /* Notebook window handle              */
  511.   NULL,                        /* Invalidate entire window,           */
  512.   TRUE);                       /* including children                  */
  513.  
  514.  
  515. ΓòÉΓòÉΓòÉ 1.2.3. Inserting Notebook Pages ΓòÉΓòÉΓòÉ
  516.  
  517. After a notebook is created, pages can be inserted into the notebook by using 
  518. the BKM_INSERTPAGE message. BKM_INSERTPAGE provides several attributes that can 
  519. affect the inserted pages. When inserting pages into either a new notebook or 
  520. an existing one, consider carefully how the user expects those pages to be 
  521. organized. 
  522.  
  523.  
  524. ΓòÉΓòÉΓòÉ 1.2.3.1. Major and Minor Tabs ΓòÉΓòÉΓòÉ
  525.  
  526. The two attributes that have the most impact on how notebook pages are 
  527. organized are BKA_MAJOR and BKA_MINOR, which specify major and minor tabs, 
  528. respectively. Major tab pages define the beginning of major sections in the 
  529. notebook, while minor tab pages define the beginning of subsections within a 
  530. major section. Major sections should begin with a page that has a BKA_MAJOR 
  531. attribute. Within major sections, information can be organized into minor 
  532. sections, each of which should begin with a page that has a BKA_MINOR 
  533. attribute. 
  534.  
  535. For an existing notebook, the underlying hierarchy, if one exists, must be 
  536. observed when inserting new pages, to provide efficient organization and 
  537. navigation of the information in the notebook. For example, if the notebook has 
  538. minor sections but no major sections, you could confuse the user if you 
  539. inserted a page with a major tab attribute between related minor sections or at 
  540. the end of the notebook. 
  541.  
  542. If you insert pages without specifying tab attributes, those pages become part 
  543. of the section in which they are inserted. For example, if page 7 of your 
  544. notebook has a minor tab and you insert a new page 8 without specifying a tab 
  545. attribute, page 8 becomes part of the section that begins with the minor tab on 
  546. page 7. 
  547.  
  548. Because tab pages are not mandatory, the application can create a notebook that 
  549. contains no major or minor tab pages. That style would be similar to that of a 
  550. composition notebook. 
  551.  
  552. Another group of attributes that can affect the organization of pages being 
  553. inserted into a notebook consists of BKA_FIRST, BKA_LAST, BKA_NEXT, and 
  554. BKA_PREV. These attributes cause pages to be inserted at the end, at the 
  555. beginning, after a specified page, and before a specified page of a notebook, 
  556. respectively. 
  557.  
  558.  
  559. ΓòÉΓòÉΓòÉ 1.2.3.2. Status Line ΓòÉΓòÉΓòÉ
  560.  
  561. Each page has an optional status line that can be used to display information 
  562. for the user. To include this status line, the application must specify the 
  563. BKA_STATUSTEXTON attribute when inserting the page. If the application inserts 
  564. the page without specifying this attribute, the status line is not available 
  565. for that page. 
  566.  
  567. To display text on the status line of the specified page, the application must 
  568. use the BKM_SETSTATUSLINETEXT message to associate a text string with the page. 
  569. A separate message must be sent for each page that is to display status-line 
  570. text. If the application does not send a BKM_SETSTATUSLINETEXT message for a 
  571. page, no text is displayed in the status line of that page. The application can 
  572. send this message to the notebook at any time to change the status-line text. 
  573. The status line can be cleared by setting the text to NULL. 
  574.  
  575. The following sample code shows how to insert a page into a notebook, where the 
  576. inserted page has a major tab attribute, the status line is available, and the 
  577. page is inserted after the last page in the notebook. This sample code also 
  578. shows how to associate a text string with the status line of the inserted page. 
  579.  
  580. HWND  hwndNotebook;            /* Notebook window handle               */
  581. ULONG ulPageId;                /* Page identifier                      */
  582.  
  583. /***********************************************************************/
  584. /* Insert a new page into a notebook.                                  */
  585. /***********************************************************************/
  586. ulPageId = (ULONG) WinSendMsg(
  587.   hwndNotebook,                /* Notebook window handle               */
  588.   BKM_INSERTPAGE,              /* Message for inserting a page         */
  589.   (MPARAM)NULL,                /* NULL for page ID                     */
  590.  
  591.   MPFROM2SHORT(
  592.     BKA_MAJOR |                /* Insert page with a major tab         */
  593.                                /* attribute                            */
  594.     BKA_STATUSTEXTON),         /* Make status-line text visible        */
  595.     BKA_LAST));                /* Insert this page at end of notebook  */
  596.  
  597. /***********************************************************************/
  598. /* Set the status-line text.                                           */
  599. /***********************************************************************/
  600. WinSendMsg(
  601.   hwndNotebook,                /* Notebook window handle               */
  602.   BKM_SETSTATUSLINETEXT,       /* Message for setting status-line      */
  603.                                /* text                                 */
  604.   (MPARAM)ulPageId,            /* ID of page to receive status-line    */
  605.                                /* text                                 */
  606.   MPFROMP("Page 1 of 2"));     /* Text string to put on status line    */
  607.  
  608.  
  609. ΓòÉΓòÉΓòÉ 1.2.4. Setting and Querying Page Information ΓòÉΓòÉΓòÉ
  610.  
  611. The information for a page in the notebook can be set and queried with 
  612. BKM_SETPAGEINFO and BKM_QUERYPAGEINFO respectively. By using these messages, 
  613. all the information associated with a page can be accessed at once. In 
  614. addition, BKM_SETPAGEINFO can be used to delay the loading of a page until it 
  615. is turned to, by setting the bLoadDlg field to FALSE. By doing this for all 
  616. pages in a notebook, the notebook is created much more quickly. 
  617.  
  618.  
  619. ΓòÉΓòÉΓòÉ 1.2.5. Associating Application Page Windows with Notebook Pages ΓòÉΓòÉΓòÉ
  620.  
  621. After a page is inserted into a notebook, you must facilitate the display of 
  622. information for this page when it is brought to the top of the book. The 
  623. notebook provides a top page area in which the application can display windows 
  624. or dialogs for the topmost page. For each inserted page, the application must 
  625. associate the handle of a window or dialog that is to be invalidated when the 
  626. page is brought to the top of the book. The application can associate the same 
  627. handle with different pages, if desired. 
  628.  
  629. The application must send a BKM_SETPAGEWINDOWHWND message to the notebook in 
  630. order to associate the application page window or dialog handle with the 
  631. notebook page being inserted.  Once done, the notebook invalidates this window 
  632. or dialog whenever the notebook page is brought to the top of the book. If no 
  633. application page window handle is specified for an inserted page, no 
  634. invalidation can be done by the notebook for that page. However, the 
  635. application receives a BKN_PAGESELECTED notification code when a new page is 
  636. brought to the top of the notebook, at which time the application can 
  637. invalidate the page. 
  638.  
  639. The notebook also sends a BKN_PAGESELECTEDPENDING notification code to the 
  640. application before the new page is selected. The application can use this 
  641. message to prevent the page from being turned to. This is useful when the 
  642. application wants to validate a page's contents. 
  643.  
  644. The following sections describe how to associate either a window handle or a 
  645. dialog handle with an inserted page. 
  646.  
  647.  
  648. ΓòÉΓòÉΓòÉ 1.2.5.1. Associating a Window with a Notebook Page ΓòÉΓòÉΓòÉ
  649.  
  650.  
  651. A calendar example is used to show how a page can be implemented as a window. A 
  652. calendar is divided into four years (major tabs). Within each year are months 
  653. (minor tabs) grouped into quarters. The top page has a window associated with 
  654. it. The window paint processing displays the days for the currently selected 
  655. month and year. 
  656.  
  657. The sample code in the following figure shows how the window procedure for the 
  658. calendar is registered with the application. Also, it shows how the window is 
  659. created and associated with the notebook page. The example ends by showing the 
  660. window procedure for the associated window. 
  661.  
  662. /*********************************************************************/
  663. /* Registration of window procedure for calendar.                    */
  664. /*********************************************************************/
  665. WinRegisterClass(hab,               /* Register a page window class  */
  666.                  "Calendar Page",   /* Class name                    */
  667.                  PageWndProc,       /* Window procedure              */
  668.                  CS_SIZEREDRAW,     /* Class style                   */
  669.                  0);                /* No extra bytes reserved       */
  670.  
  671. /*********************************************************************/
  672. /* Create the window.                                                */
  673. /*********************************************************************/
  674. hwndPage = WinCreateWindow(hwndNotebook,       /* Parent             */
  675.                            "Calendar Page",    /* Class              */
  676.                            NULL,               /* Title text         */
  677.                            0L,                 /* Style              */
  678.                            0, 0, 0, 0,         /* Origin and size    */
  679.                            hwndNotebook,       /* Owner              */
  680.                            HWND_TOP,           /* Z-order            */
  681.                            ID_WIN_CALENDAR_PAGE,   /* ID             */
  682.                            NULL,               /* Control data       */
  683.                            NULL);              /* Presparams         */
  684.  
  685. /*********************************************************************/
  686. /* Associate window with the inserted notebook page.                 */
  687. /*********************************************************************/
  688. WinSendMsg(hwndBook,
  689.            BKM_SETPAGEWINDOWHWND,
  690.            MPFROMLONG(ulPageId),
  691.            MPFROMHWND(hwndPage));
  692.  
  693. /*********************************************************************/
  694. /* Window procedure.                                                 */
  695. /*********************************************************************/
  696. MRESULT EXPENTRY PageWndProc(HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2)
  697. {
  698. HPS hps;
  699.  
  700. switch (msg)
  701. {
  702.  
  703.   /*******************************************************************/
  704.   /* WM_CREATE is sent when the window is created.                   */
  705.   /*******************************************************************/
  706.   case  WM_CREATE:
  707.  
  708.     /*****************************************************************/
  709.     /* Place window initialization code here.                        */
  710.     /*****************************************************************/
  711.     break;
  712.  
  713.   case  WM_PAINT:
  714.     hps = WinBeginPaint(hwnd, NULL, NULL);
  715.     /*****************************************************************/
  716.     /* Draw the calendar for the selected year and month.            */
  717.     /*****************************************************************/
  718.     .
  719.     .
  720.     .
  721.     WinEndPaint(hps);
  722.     break;
  723.  
  724.   default:
  725.     return (WinDefWindowProc(hwnd, msg, mp1, mp2));
  726.     break;
  727. }
  728.  
  729. return (FALSE);
  730. }
  731.  
  732.  
  733. ΓòÉΓòÉΓòÉ 1.2.5.2. Associating a Dialog with a Notebook Page ΓòÉΓòÉΓòÉ
  734.  
  735.  
  736. To understand the notebook implemented as a dialog, a Properties Notebook is 
  737. used. The various objects whose properties can be changed or updated are 
  738. displayed as major tabs. Included are sections that represent a folder, 
  739. printer, and display (major tabs). The printer object is currently selected. 
  740. Within the printer object, the user can choose to "View" or "Update" (minor 
  741. tabs) the printer settings. The topmost page is a printer dialog from which the 
  742. user can update the printer name, type, and device information. 
  743.  
  744. The following sample code shows how the printer dialog is created and 
  745. associated with a notebook page. The example ends by showing the dialog 
  746. procedure for the associated dialog. 
  747.  
  748. #define INCL_DOSRESOURCES
  749.  
  750. APIRET       dlgret;
  751. HWND         hwndPage, hwndNotebook;
  752. PDLGTEMPLATE pDlgt;
  753. SEL          sel = NULL;
  754.  
  755. /**********************************************************************/
  756. /* Allocate memory.                                                   */
  757. /**********************************************************************/
  758. DosAllocMem((PPVOID)&pDlgt,
  759.             sizeof(DLGTEMPLATE),
  760.             PAG_COMMIT |
  761.             PAG_READ   |
  762.             PAG_WRITE);
  763.  
  764. /**********************************************************************/
  765. /* Retrieve the dialog resource.                                      */
  766. /**********************************************************************/
  767. dlgret = DosGetResource((HMODULE)0,       /* Resource                 */
  768.                                           /* (Obtain from executable) */
  769.                         RT_DIALOG,        /* Resource type            */
  770.                         ID_DLG_PRINTDRV,  /* Resource ID              */
  771.                         (PPVOID)&pDlgt);  /* Dialog template address  */
  772.  
  773. /**********************************************************************/
  774. /* Create a dialog.                                                   */
  775. /**********************************************************************/
  776. hwndPage = WinCreateDlg(HWND_DESKTOP,     /* Parent window handle     */
  777.                         hwndBook,         /* Owner window handle      */
  778.                         fnwpPrint,        /* Dialog procedure         */
  779.                                           /* address                  */
  780.                         pDlgt,            /* Dialog data structure    */
  781.                                           /* address                  */
  782.                         NULL);            /* Application data         */
  783.  
  784. DosFreeMem(pDlgt);                        /* Free memory              */
  785.  
  786. /**********************************************************************/
  787. /* Associate dialog with the inserted notebook page.                  */
  788. /**********************************************************************/
  789. WinSendMsg(hwndBook,
  790.            BKM_SETPAGEWINDOWHWND,
  791.            MPFROMLONG(ulPageId),
  792.            MPFROMHWND(hwndPage));
  793.  
  794. /**********************************************************************/
  795. /* Dialog procedure.                                                  */
  796. /**********************************************************************/
  797. MRESULT EXPENTRY fnwpPrint(HWND hwndDlg,ULONG msg,MPARAM mp1,MPARAM mp2)
  798. {
  799.   switch (msg)
  800.   {
  801.     case WM_INITDLG:
  802.  
  803.       /****************************************************************/
  804.       /* Place dialog initialization code here.                       */
  805.       /****************************************************************/
  806.       break;
  807.  
  808.     case WM_COMMAND:
  809.       return ((MRESULT) FALSE);
  810.       break;
  811.  
  812.     default:
  813.       return WinDefDlgProc (hwndDlg,msg,mp1,mp2);
  814.   }
  815.   return WinDefDlgProc (hwndDlg,msg,mp1,mp2);
  816. }
  817.  
  818.  
  819. ΓòÉΓòÉΓòÉ 1.2.6. Deleting Notebook Pages ΓòÉΓòÉΓòÉ
  820.  
  821. The BKM_DELETEPAGE message is used to delete one or more pages from the 
  822. notebook. The application can delete one page (BKA_SINGLE attribute), all pages 
  823. within a major or minor tab section (BKA_TAB attribute), or all of the pages in 
  824. the notebook (BKA_ALL attribute). The default, if no attributes are specified, 
  825. is to delete no pages. The following sample code shows how the BKM_QUERYPAGEID 
  826. message is used to get the ID of the top page and how the BKM_DELETEPAGE 
  827. message is then used to delete that page: 
  828.  
  829. /**********************************************************************/
  830. /* Set the range of pages to be deleted.                              */
  831. /**********************************************************************/
  832.  
  833. /* Set attribute to delete a single page. */
  834. usDeleteFlag = BKA_SINGLE
  835.  
  836. /**********************************************************************/
  837. /* Get the ID of the notebook's top page.                             */
  838. /**********************************************************************/
  839. ulPageId = (ULONG) WinSendMsg(
  840.   hwndNotebook,                /* Notebook window handle              */
  841.   BKM_QUERYPAGEID,             /* Message to query a page ID          */
  842.   NULL,                        /* NULL for page ID                    */
  843.   (MPARAM)BKA_TOP);            /* Get ID of top page                  */
  844.  
  845. /**********************************************************************/
  846. /* Delete the notebook's top page.                                    */
  847. /**********************************************************************/
  848. WinSendMsg(
  849.   hwndNotebook,                /* Notebook window handle              */
  850.   BKM_DELETEPAGE,              /* Message to delete the page          */
  851.   MPFROMLONG(ulPageId),        /* ID of page to be deleted            */
  852.   (MPARAM)usDeleteFlag);       /* Range of pages to be deleted        */
  853.  
  854.  
  855. ΓòÉΓòÉΓòÉ 1.2.7. Notebook Colors ΓòÉΓòÉΓòÉ
  856.  
  857. The application can change the color of any part of the notebook. The colors of 
  858. some parts can be changed by specifying presentation parameter attributes in 
  859. WinSetPresParam. Other colors can be changed by specifying notebook attributes 
  860. in the BKM_SETNOTEBOOKCOLORS message. The following sections define which parts 
  861. of the notebook can have their colors changed by each of these two methods. 
  862.  
  863.  
  864. ΓòÉΓòÉΓòÉ 1.2.7.1. Changing Colors Using WinSetPresParam ΓòÉΓòÉΓòÉ
  865.  
  866. WinSetPresParam is used to change the color of the notebook outline, window 
  867. background, selection cursor, and status-line text. The following list shows 
  868. the mapping between the various notebook parts and their associated 
  869. presentation parameter attributes. 
  870.  
  871.  Notebook outline PP_BORDERCOLOR or PP_BORDERCOLORINDEX. This color is set 
  872.      initially to SYSCLR_WINDOWFRAME. 
  873.  
  874.  Notebook window background PP_BACKGROUNDCOLOR or PP_BACKGROUNDCOLORINDEX. This 
  875.      color is set initially to SYSCLR_FIELDBACKGROUND. 
  876.  
  877.  Selection cursor PP_HILITEBACKGROUNDCOLOR or PP_HILITEBACKGROUNDCOLORINDEX. 
  878.      This color is set initially to SYSCLR_HILITEBACKGROUND. 
  879.  
  880.  Status-line text PP_FOREGROUNDCOLOR or PP_FOREGROUNDCOLORINDEX. This color is 
  881.      initially set to SYSCLR_WINDOWTEXT. 
  882.  
  883.  If a presentation parameter attribute is set, all parts of the notebook that 
  884.  are mapped to this color are changed. The following sample code shows how to 
  885.  change the color of the notebook outline: 
  886.  
  887.   /* Set number of bytes to be passed in usColorIdx */
  888.   /* for color index table value                    */
  889.   usColorLen = 4;
  890.   /* Set color index table value to be assigned */
  891.   ulColorIdx = 3;
  892.  
  893.   /**********************************************************************/
  894.   /* Set the notebook outline color.                                    */
  895.   /**********************************************************************/
  896.   WinSetPresParam(
  897.     hwndNotebook,                /* Notebook window handle              */
  898.     PP_BORDERCOLOR,              /* Border color attribute              */
  899.     usColorLen,                  /* Number of bytes in color index      */
  900.                                  /* table value                         */
  901.     &ulColorIdx);                /* Color index table value             */
  902.  
  903.  
  904. ΓòÉΓòÉΓòÉ 1.2.7.2. Changing Colors Using BKM_SETNOTEBOOKCOLORS ΓòÉΓòÉΓòÉ
  905.  
  906. The BKM_SETNOTEBOOKCOLORS message is used to change the color of the major tab 
  907. background and text, the minor tab background and text, and the notebook page 
  908. background. The following list shows the mapping between the various notebook 
  909. parts and their associated notebook attributes. 
  910.  
  911.  Major tab background BKA_BACKGROUNDMAJORCOLOR or 
  912.      BKA_BACKGROUNDMAJORCOLORINDEX. This color is set initially to 
  913.      SYSCLR_PAGEBACKGROUND. The currently selected major tab has the same 
  914.      background color as the notebook page background. 
  915.  
  916.  Major tab text BKA_FOREGROUNDMAJORCOLOR or BKA_FOREGROUNDMAJORCOLORINDEX. This 
  917.      color is set initially to SYSCLR_WINDOWTEXT. 
  918.  
  919.  Minor tab background BKA_BACKGROUNDMINORCOLOR or 
  920.      BKA_BACKGROUNDMINORCOLORINDEX. This color is set initially to 
  921.      SYSCLR_PAGEBACKGROUND. The currently selected minor tab has the same 
  922.      background color as the notebook page background. 
  923.  
  924.  Minor tab text BKA_FOREGROUNDMINORCOLOR or BKA_FOREGROUNDMINORCOLORINDEX. This 
  925.      color is set initially to SYSCLR_WINDOWTEXT. 
  926.  
  927.  Notebook page background BKA_BACKGROUNDPAGECOLOR or 
  928.      BKA_BACKGROUNDPAGECOLORINDEX. This color is set initially to 
  929.      SYSCLR_PAGEBACKGROUND. 
  930.  
  931.  If a notebook attribute is set, all parts of the notebook that are mapped to 
  932.  this color are changed. The following sample code shows how to change the 
  933.  color of the major tab background: 
  934.  
  935.   /* Color index value     */
  936.   ulColorIdx    = SYSCLR_WINDOW;
  937.   /* Major tab background  */
  938.   ulColorRegion = BKA_BACKGROUNDMAJORCOLORINDEX;
  939.  
  940.   WinSendMsg(hwndBook,
  941.              BKM_SETNOTEBOOKCOLORS,
  942.              MPFROMLONG(ulColorIdx),
  943.              MPFROMLONG(ulColorRegion));
  944.  
  945.  
  946. ΓòÉΓòÉΓòÉ 1.3. Graphical User Interface Support for Notebook Controls ΓòÉΓòÉΓòÉ
  947.  
  948. The following section describes the support for graphical user interfaces 
  949. (GUIs) provided by the notebook control. Except where noted, this support 
  950. conforms to the guidelines in the SAA CUA Advanced Interface Design Reference. 
  951.  
  952. The GUI support provided by the notebook control consists of the notebook 
  953. navigation techniques. 
  954.  
  955.  
  956. ΓòÉΓòÉΓòÉ 1.3.1. Notebook Navigation Techniques ΓòÉΓòÉΓòÉ
  957.  
  958. The notebook control supports the use of a pointing device and the keyboard for 
  959. displaying notebook pages and tabs and for moving the selection cursor from the 
  960. notebook tabs to the application window and the other way around. 
  961.  
  962. Note:  If more than one notebook window is open, displaying a page or tab in 
  963.        one notebook window has no effect on the pages or tabs displayed in any 
  964.        other notebook window. 
  965.  
  966.  
  967. ΓòÉΓòÉΓòÉ 1.3.1.1. Pointing Device Support ΓòÉΓòÉΓòÉ
  968.  
  969. A user can use a pointing device to display notebook pages or tabs by selecting 
  970. the notebook components described in the following list. The CUA guidelines 
  971. define mouse button 1 (the select button) to be used for selecting these 
  972. components. This definition also applies to the same button on any other 
  973. pointing device a user might have. 
  974.  
  975.      Selecting tabs using a pointing device 
  976.  
  977.       A tab can be selected to bring a page that has a major or minor tab 
  978.       attribute to the top of the notebook. The selection cursor, a dotted 
  979.       outline, is drawn inside the tab's border to indicate the selected tab. 
  980.       In addition, the selected tab is given the same background color as the 
  981.       notebook page area. The color of the other tabs is specified in the 
  982.       BKM_SETNOTEBOOKCOLORS message. This helps the user distinguish the 
  983.       selected tab from the other tabs if different colors are used. 
  984.  
  985.       Because all tabs are mutually exclusive, only one of them can be selected 
  986.       at a time. Therefore, the only type of selection supported by the 
  987.       notebook control is single selection. This selection type conforms to the 
  988.       guidelines in the SAA CUA Advanced Interface Design Reference. 
  989.  
  990.       If the user moves the pointing device to a place in the notebook page 
  991.       window that can accept a cursor, such as an entry field, check box, or 
  992.       radio button, and presses the select button, the selection cursor is 
  993.       removed from the tab it is on and is displayed in the notebook page 
  994.       window. The selection cursor never can be displayed both on a tab and in 
  995.       the notebook page window at the same time. 
  996.  
  997.      Selecting page buttons using a pointing device 
  998.  
  999.       A forward or backward page button can be selected to display the next or 
  1000.       previous page, respectively, one at a time. The arrow pointing to the 
  1001.       right is the forward page button, and the arrow pointing to the left is 
  1002.       the backward page button. When the selection of a page button brings a 
  1003.       page that has a major or minor tab to the top of the notebook, the 
  1004.       selection cursor is drawn inside that tab's border. 
  1005.  
  1006.      Selecting tab scroll buttons using a pointing device 
  1007.  
  1008.       A user can decrease the size of a notebook window so that some of the 
  1009.       available notebook tabs cannot be displayed. When this happens, the 
  1010.       notebook control automatically draws tab scroll buttons at the corners of 
  1011.       the notebook side or sides to notify the user that more tabs are 
  1012.       available. 
  1013.  
  1014.       Tab scroll buttons have another purpose: to give the user the means to 
  1015.       scroll into view, one at a time, the tabs that are not displayed. The 
  1016.       user does this by selecting a forward or backward tab scroll button, 
  1017.       which causes the next tab to scroll into view, but does not change the 
  1018.       location of the selection cursor. Once the tab is in view, the user can 
  1019.       display that tab's page by selecting the tab. 
  1020.  
  1021.       A maximum of four tab scroll buttons can be displayed: two for the major 
  1022.       tab side and two for the minor tab side. 
  1023.  
  1024.       When the first tab in the notebook is displayed, the backward tab scroll 
  1025.       button is deactivated. Unavailable-state emphasis is applied to it to 
  1026.       show that no more tabs can be scrolled into view by using the backward 
  1027.       tab scroll button. Unavailable-state emphasis is applied to the forward 
  1028.       tab scroll button if the last tab in the notebook is displayed. 
  1029.  
  1030.  
  1031. ΓòÉΓòÉΓòÉ 1.3.1.2. Keyboard Support ΓòÉΓòÉΓòÉ
  1032.  
  1033. The users can utilize the keyboard to display and manipulate notebook pages and 
  1034. components. 
  1035.  
  1036.  
  1037. ΓòÉΓòÉΓòÉ 1.3.1.2.1. Focus on Application Dialog or Window ΓòÉΓòÉΓòÉ
  1038.  
  1039.  
  1040. If the application dialog page or window has the focus, the notebook handles 
  1041. the following keyboard interactions: 
  1042.  
  1043.  Keyboard Input           Description 
  1044.  
  1045.  Alt+PgDn or PgDn         Brings the next page to the top of the notebook. If 
  1046.                           the application uses the PgDn key, then it must be 
  1047.                           used in combination with the Alt key. 
  1048.  
  1049.  Alt+PgUp or PgUp         Brings the previous page to the top of the notebook. 
  1050.                           If the application uses the PgUp key, then it must be 
  1051.                           used in combination with the Alt key. 
  1052.  
  1053.  Alt+Up Arrow             Switch the focus to the notebook window. 
  1054.  
  1055.  Tab                      Move the cursor to the next control within the top 
  1056.                           page window or dialog. If the cursor is currently on 
  1057.                           the last control within the top page window or dialog 
  1058.                           when the Tab key is pressed, the cursor is moved to 
  1059.                           the notebook major tab, if it exists; else to the 
  1060.                           minor tab, if it exists; else to the right page 
  1061.                           button. 
  1062.  
  1063.  Shift+Tab                Move the cursor to the previous control within the 
  1064.                           top page window or dialog. If the cursor is currently 
  1065.                           on the first control within the top page window or 
  1066.                           dialog when the Shift+Tab key is pressed, the cursor 
  1067.                           is moved to the previous control. If the previous 
  1068.                           control is the notebook, the cursor is moved to the 
  1069.                           right page button. 
  1070.  
  1071.  
  1072. ΓòÉΓòÉΓòÉ 1.3.1.2.2. Focus on the Notebook Control ΓòÉΓòÉΓòÉ
  1073.  
  1074.  
  1075. If the notebook control has the focus, it handles the following keyboard 
  1076. intereactions: 
  1077.  
  1078.  Keyboard Input           Description 
  1079.  
  1080.  Alt+Down Arrow           Switch the focus to the application's primary window. 
  1081.  
  1082.  Alt+PgDn or PgDn         Brings the next page to the top of the notebook. 
  1083.  
  1084.  Alt+PgUp or PgUp         Brings the previous page to the top of the notebook. 
  1085.  
  1086.  Left or Up Arrow         If the cursor is currently on a major tab, it is 
  1087.                           moved to the previous major tab. If the previous 
  1088.                           major tab is not visible, the tabs are scrolled to 
  1089.                           bring the previous major tab into view. If the first 
  1090.                           major tab is reached, scrolling ends. 
  1091.  
  1092.                           If the cursor is currently on a minor tab, it is 
  1093.                           moved to the previous minor tab. If the previous 
  1094.                           minor tab is not visible, the tabs are scrolled to 
  1095.                           bring the previous minor tab into view. If the first 
  1096.                           minor tab is reached, scrolling ends. 
  1097.  
  1098.                           If the cursor is currently on the right page button, 
  1099.                           the cursor moves to the left page button. If the 
  1100.                           cursor is currently on the left page button, no 
  1101.                           action is taken. 
  1102.  
  1103.  Right or Down Arrow      If the cursor is currently on a major tab, it is 
  1104.                           moved to the next major tab. If the next major tab is 
  1105.                           not visible, the tabs are scrolled to bring the next 
  1106.                           major tab into view. If the last major tab is 
  1107.                           reached, scrolling ends. 
  1108.  
  1109.                           If the cursor is currently on a minor tab, it is 
  1110.                           moved to the next minor tab. If the next minor tab is 
  1111.                           not visible, the tabs are scrolled to bring the next 
  1112.                           minor tab into view. If the last minor tab is 
  1113.                           reached, scrolling ends. 
  1114.  
  1115.                           If the cursor is currently on the right page button, 
  1116.                           no action is taken. If the cursor is currently on the 
  1117.                           left page button, the cursor moves to the right page 
  1118.                           button. 
  1119.  
  1120.  Tab                      The cursor moves from the major tab, then to the 
  1121.                           minor tab, then to the right page button, and then to 
  1122.                           the last tab stop in the application dialog or 
  1123.                           window. 
  1124.  
  1125.  Shift+Tab                The cursor moves from the page button, to the minor 
  1126.                           tab, to the major tab, and then to the first tab stop 
  1127.                           in the application dialog or window. 
  1128.  
  1129.  Home                     Brings the first page of the notebook to the top and 
  1130.                           sets the cursor on the associated tab. 
  1131.  
  1132.  End                      Brings the last page of the notebook to the top and 
  1133.                           sets the cursor on the associated tab. 
  1134.  
  1135.  Enter or Spacebar        If the cursor is on a major or minor tab, the 
  1136.                           associated page is brought to the top of the 
  1137.                           notebook, and the selected tab is given the same 
  1138.                           background color as the notebook page area. The other 
  1139.                           tabs have their color specified in the 
  1140.                           BKM_SETNOTEBOOKCOLORS message. This helps the user 
  1141.                           distinguish the selected tab from the other tabs if 
  1142.                           different colors are used. 
  1143.  
  1144.                           If the cursor is currently on the right page button, 
  1145.                           the next page is brought to the top of the notebook. 
  1146.                           If the cursor is currently on the left page button, 
  1147.                           the previous page is brought to the top of the 
  1148.                           notebook. 
  1149.  
  1150.  Mnemonics                Mnemonics are underlined characters in the text of a 
  1151.                           tab that cause the tab's page to be selected. Coding 
  1152.                           a tilde (~) before a text character in the 
  1153.                           BKM_SETTABTEXT message causes that character to be 
  1154.                           underlined and activates it as a mnemonic-selection 
  1155.                           character. 
  1156.  
  1157.                           A user performs mnemonic selection by pressing a 
  1158.                           character key that corresponds to an underlined 
  1159.                           character. When this happens, the tab that contains 
  1160.                           the underlined character is selected, and that tab's 
  1161.                           page is brought to the top of the notebook. 
  1162.  
  1163.                           Note:  Mnemonic selection is not case sensitive, so 
  1164.                           the user can type the underscored letter in either 
  1165.                           uppercase or lowercase. 
  1166.  
  1167.  
  1168. ΓòÉΓòÉΓòÉ 1.4. Enhancing Notebook Control Performance and Effectiveness ΓòÉΓòÉΓòÉ
  1169.  
  1170. This section provides the following information to enable you to fine-tune a 
  1171. notebook control: 
  1172.  
  1173.      Dynamic resizing and scrolling 
  1174.      Tab painting and positioning 
  1175.  
  1176.  
  1177. ΓòÉΓòÉΓòÉ 1.4.1. Dynamic Resizing and Scrolling ΓòÉΓòÉΓòÉ
  1178.  
  1179. The notebook control supports dynamic resizing by recalculating the size of the 
  1180. notebook's parts when either the user or the application changes the size of 
  1181. any of those parts. A BKN_NEWPAGESIZE notification code is sent from the 
  1182. notebook to the application whenever the notebook's size changes. 
  1183.  
  1184. The notebook handles the sizing and positioning of each application page window 
  1185. if the BKA_AUTOPAGESIZE attribute is specified for the inserted notebook page. 
  1186. Otherwise, the application must handle this when it receives the 
  1187. BKN_NEWPAGESIZE notification code from the notebook. 
  1188.  
  1189. If the size of the notebook window is decreased so that the page window is not 
  1190. large enough to display all the information the page contains, the information 
  1191. in the page window is clipped. If scroll bars are desired to enable the clipped 
  1192. information to be scrolled into view, they must be provided by the application. 
  1193. Tab scroll buttons are automatically displayed if the size of the notebook is 
  1194. decreased so that all the major or minor tabs cannot be displayed. For example, 
  1195. a notebook has major tabs on the right side, but the height of the notebook 
  1196. does not allow all the tabs to be displayed. In this case, tab scroll buttons 
  1197. are displayed on the upper- and lower-right corners of the notebook. 
  1198.  
  1199.  
  1200. ΓòÉΓòÉΓòÉ 1.4.2. Tab Painting and Positioning ΓòÉΓòÉΓòÉ
  1201.  
  1202. The tab pages provide a method for organizing the information in a notebook so 
  1203. that the user easily can see and navigate to that information. When a page is 
  1204. inserted with a major or minor tab attribute, the notebook displays a tab for 
  1205. that page, based on the orientation of the notebook. The contents of the tab 
  1206. can be painted either by the notebook control or the application. 
  1207.  
  1208. If the notebook control is to paint the tabs, the application must associate a 
  1209. text string or bit map with the page whose tab is to be drawn.  This is done by 
  1210. sending the BKM_SETTABTEXT or BKM_SETTABBITMAP message to the notebook control 
  1211. for the specified page. If neither of these messages is sent for an inserted 
  1212. page with a major or minor tab attribute, the application must draw the 
  1213. contents of the tab, through ownerdraw. The application receives a WM_DRAWITEM 
  1214. message whenever a tab page that has no text or bit map associated with it is 
  1215. to be drawn. The application can either draw the tab contents or return FALSE, 
  1216. in which case the notebook control fills the tab with the tab background color. 
  1217.  
  1218. Positioning Tabs in Relation to the Top Tab: 
  1219. There are seven page edges that define the back pages.  The page attribute 
  1220. (BKA_MAJOR or BKA_MINOR) and the topmost page determine how the tabs are 
  1221. positioned. In most cases, the tabs must be drawn when their position changes. 
  1222. For example, this can happen when a page with a tab attribute is brought to the 
  1223. top of the notebook. 
  1224.  
  1225. The new top major or minor tab will appear attached to the top page. The other 
  1226. tabs will appear as described in the following list. This information is 
  1227. provided to help you understand the relationship between the top tab and the 
  1228. other tabs so that you can organize the information you put into a notebook 
  1229. appropriately. The application has no control over tab positioning. 
  1230.  
  1231.      When the top page is a major tab page: 
  1232.  
  1233.         -  Any major tabs prior to the top major tab are aligned on the last 
  1234.            page of the notebook. 
  1235.  
  1236.         -  Any major tabs after the top major tab are incrementally cascaded 
  1237.            from the topmost edge to the last page. 
  1238.  
  1239.         -  If the top major tab has minor tabs, no major tab is drawn on the 
  1240.            page edge that immediately follows the top tab page. Instead, any 
  1241.            major tabs that follow the top tab are incrementally cascaded, 
  1242.            beginning on the second page, edge-down from the top tab. This is 
  1243.            done to account for the minor tabs that are positioned between the 
  1244.            top major tab and the major tab that follows it on the perpendicular 
  1245.            notebook edge. 
  1246.  
  1247.            The minor tabs are all positioned on the third page edge from the 
  1248.            top, thereby giving the appearance of being between the top major 
  1249.            tab and the next major tab. 
  1250.  
  1251.      When the top page is a minor tab page: 
  1252.  
  1253.         -  Any minor tabs prior to the top minor tab are positioned on the 
  1254.            third page edge from the top of the notebook. 
  1255.  
  1256.         -  Any minor tabs after the top minor tab are incrementally cascaded up 
  1257.            to the third page edge from the top. 
  1258.  
  1259.  
  1260. ΓòÉΓòÉΓòÉ 2. Painting and Drawing ΓòÉΓòÉΓòÉ
  1261.  
  1262. This chapter describes presentation spaces, device contexts, and window 
  1263. regions, explaining how a PM application uses them for painting and drawing in 
  1264. windows. 
  1265.  
  1266.  
  1267. ΓòÉΓòÉΓòÉ 2.1. About Painting and Drawing ΓòÉΓòÉΓòÉ
  1268.  
  1269. An application typically maintains an internal representation of the data that 
  1270. it is manipulating.  The information displayed in a screen, window, or printed 
  1271. copy is a visual representation of some portion of that data.  This chapter 
  1272. introduces the concepts and strategies necessary to make your PM application 
  1273. function smoothly and cooperatively in the OS/2 display environment. 
  1274.  
  1275.  
  1276. ΓòÉΓòÉΓòÉ 2.1.1. Presentation Spaces and Device Contexts ΓòÉΓòÉΓòÉ
  1277.  
  1278. A presentation space is a data structure, maintained by the operating system, 
  1279. that describes the drawing environment for an application.  An application can 
  1280. create and hold several presentation spaces, each describing a different 
  1281. drawing environment.  All drawing in a PM application must be directed to a 
  1282. presentation space. 
  1283.  
  1284. Normally each presentation space is associated with a device context that 
  1285. describes the physical device where graphics commands are displayed.  The 
  1286. device context translates graphics commands made to the presentation space into 
  1287. commands that enable the physical device to display information.  Typical 
  1288. device contexts are the screen, printers and plotters, and off-screen memory 
  1289. bit maps. By creating presentation spaces and associating them with particular 
  1290. device contexts, an application can control where its graphics output appears. 
  1291. Typically, a presentation space and device context isolate the application from 
  1292. the physical details of displaying graphics, so the same graphics commands can 
  1293. be used for many types of displays.  This virtualization of output can reduce 
  1294. the amount of display code an application must include to support multiple 
  1295. output devices. 
  1296.  
  1297. This chapter describes how an application sets up its presentation spaces and 
  1298. device contexts before drawing, and how to use window-drawing functions.  Refer 
  1299. to the Graphics Programming Interface Programming Guide for the graphics 
  1300. functions available to PM applications. 
  1301.  
  1302.  
  1303. ΓòÉΓòÉΓòÉ 2.1.2. Window Regions ΓòÉΓòÉΓòÉ
  1304.  
  1305. A window and its associated presentation space have three regions that control 
  1306. where drawing takes place in the window. These regions ensure that the 
  1307. application does not draw outside the boundaries of the window or intrude into 
  1308. the space of an overlapping window. 
  1309.  
  1310. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  1311. ΓöéRegion         ΓöéDescription                                  Γöé
  1312. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  1313. ΓöéUpdate Region  ΓöéThis region represents the area of the windowΓöé
  1314. Γöé               Γöéthat needs to be redrawn. This region changesΓöé
  1315. Γöé               Γöéwhen overlapping windows change their z-orderΓöé
  1316. Γöé               Γöéor when an application explicitly adds an    Γöé
  1317. Γöé               Γöéarea to the update region to force a window  Γöé
  1318. Γöé               Γöéto be painted.                               Γöé
  1319. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  1320. ΓöéClip Region    ΓöéThis region and the visible region determine Γöé
  1321. Γöé               Γöéwhere drawing takes place. Applications can  Γöé
  1322. Γöé               Γöéchange the clip region to limit drawing to a Γöé
  1323. Γöé               Γöéparticular portion of a window. Typically, a Γöé
  1324. Γöé               Γöépresentation space is created with a clip    Γöé
  1325. Γöé               Γöéregion equal to NULL, which makes this regionΓöé
  1326. Γöé               Γöéequivalent to the update region.             Γöé
  1327. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  1328. ΓöéVisible Region ΓöéThis region and the clip region determine    Γöé
  1329. Γöé               Γöéwhere drawing takes place. The system changesΓöé
  1330. Γöé               Γöéthe visible region to represent the portion  Γöé
  1331. Γöé               Γöéof a window that is visible. Typically, the  Γöé
  1332. Γöé               Γöévisible region is used to mask out           Γöé
  1333. Γöé               Γöéoverlapping windows. When an application     Γöé
  1334. Γöé               Γöécalls the WinBeginPaint function in response Γöé
  1335. Γöé               Γöéto a WM_PAINT message, the system sets the   Γöé
  1336. Γöé               Γöévisible region to the intersection of the    Γöé
  1337. Γöé               Γöévisible region and the update region to      Γöé
  1338. Γöé               Γöéproduce a new visible region. Applications   Γöé
  1339. Γöé               Γöécannot change the visible region directly.   Γöé
  1340. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  1341. Whenever drawing occurs in a window's presentation space, the output is clipped 
  1342. to the intersection of the visible region and clip region. 
  1343.  
  1344. The clip region includes the overlapped part of the back window, but the 
  1345. visible region excludes that portion of the back window.  The system maintains 
  1346. the visible region to protect other windows on the screen; the application 
  1347. maintains the clip region to specify the portion of the window in which it 
  1348. draws.  Together, these two regions provide safe and controllable clipping. 
  1349.  
  1350. To further control drawing, both the system and the application manipulate the 
  1351. update region. For example, if a window's position is switched from back to 
  1352. front, positions front to back, several changes occur in the regions of both 
  1353. windows.  The system adds the lower-right corner of the new front window to 
  1354. that window's visible region.  The system also adds that corner area to the 
  1355. window's update region. 
  1356.  
  1357.  
  1358. ΓòÉΓòÉΓòÉ 2.1.3. Window Styles for Painting ΓòÉΓòÉΓòÉ
  1359.  
  1360. Most of the styles relating to window drawing can be set either for the window 
  1361. class (CS_ prefix) or for an individual window (WS_ prefix).  The styles 
  1362. described in this section control how the system manipulates the window's 
  1363. regions and how the window is notified when it must be painted or redrawn. 
  1364.  
  1365.  
  1366. ΓòÉΓòÉΓòÉ 2.1.3.1. WS_CLIPCHILDREN, CS_CLIPCHILDREN ΓòÉΓòÉΓòÉ
  1367.  
  1368. All the windows with this style are excluded from their parent's visible 
  1369. region.  This style protects windows but increases the amount of time necessary 
  1370. to calculate the parent's visible region.  This style normally is not 
  1371. necessary, because if the parent and child windows overlap and both are 
  1372. invalidated, the parent window is drawn before the child window.  If the child 
  1373. window is invalidated independently from its parent window, only the child 
  1374. window is redrawn.  If the update region of the parent window does not 
  1375. intersect the child window, drawing the parent window does not disturb the 
  1376. child window. 
  1377.  
  1378.  
  1379. ΓòÉΓòÉΓòÉ 2.1.3.2. WS_CLIPSIBLINGS, CS_CLIPSIBLINGS ΓòÉΓòÉΓòÉ
  1380.  
  1381. Windows with this style are excluded from the visible region of sibling 
  1382. windows.  This style protects windows with the same parent from being drawn 
  1383. accidentally, but increases the amount of time necessary to calculate the 
  1384. visible region.  This style is appropriate for sibling windows that overlap. 
  1385.  
  1386.  
  1387. ΓòÉΓòÉΓòÉ 2.1.3.3. WS_PARENTCLIP, CS_PARENTCLIP ΓòÉΓòÉΓòÉ
  1388.  
  1389. The visible region for a window with this style is the same as the visible 
  1390. region of the parent window.  This style simplifies the calculation of the 
  1391. visible region but is potentially hazardous, because the parent window's 
  1392. visible region usually is larger than the child window.  Windows with this 
  1393. style should not draw outside their boundaries. 
  1394.  
  1395.  
  1396. ΓòÉΓòÉΓòÉ 2.1.3.4. WS_SAVEBITS, CS_SAVEBITS ΓòÉΓòÉΓòÉ
  1397.  
  1398. The system saves the bits beneath a window with this style when the window is 
  1399. displayed.  When the window moves or is hidden, the system simply restores the 
  1400. uncovered bits.  This operation can consume a great deal of memory; it is 
  1401. recommended only for transient windows such as menus and dialog boxes-not for 
  1402. main application windows.  This style also is inappropriate for windows that 
  1403. are updated dynamically, such as clocks. 
  1404.  
  1405.  
  1406. ΓòÉΓòÉΓòÉ 2.1.3.5. WS_SYNCPAINT, CS_SYNCPAINT ΓòÉΓòÉΓòÉ
  1407.  
  1408. Windows that have these styles receive WM_PAINT messages as soon as their 
  1409. update regions contain something; they are updated immediately (synchronously). 
  1410.  
  1411.  
  1412. ΓòÉΓòÉΓòÉ 2.1.3.6. CS_SIZEREDRAW ΓòÉΓòÉΓòÉ
  1413.  
  1414. A window with this class style receives a WM_PAINT message; the window is 
  1415. completely invalidated whenever it is resized, even if it is made smaller. 
  1416. (Typically, only the uncovered area of a window is invalidated when a window is 
  1417. resized.)  This class style is useful when an application scales graphics to 
  1418. fill the current window. 
  1419.  
  1420.  
  1421. ΓòÉΓòÉΓòÉ 2.2. Strategies for Painting and Drawing ΓòÉΓòÉΓòÉ
  1422.  
  1423. A PM application shares the screen with other windows and applications; 
  1424. therefore, painting and drawing must not interfere with those other 
  1425. applications and windows.  When you follow these strategies, your application 
  1426. can coexist with other applications and still take full advantage of the 
  1427. graphics capabilities of the operating system. 
  1428.  
  1429.  
  1430. ΓòÉΓòÉΓòÉ 2.2.1. Drawing in a Window ΓòÉΓòÉΓòÉ
  1431.  
  1432. Ideally, all drawing in a window occurs as a result of an application's 
  1433. processing a WM_PAINT message.  Applications maintain an internal 
  1434. representation of what must be displayed in the window, such as text or a 
  1435. linked list of graphics objects, and use the WM_PAINT message as a cue to 
  1436. display a visual representation of that data in the window. 
  1437.  
  1438. To route all display output through the WM_PAINT message, an application must 
  1439. not draw on the screen at the time its data changes.  Instead, it must update 
  1440. the internal representation of the data and call the WinInvalidateRect or 
  1441. WinInvalidateRegion functions to invalidate the portion of the window that must 
  1442. be redrawn.  Sometimes it is much more efficient to draw directly in a window 
  1443. without relying on the WM_PAINT message-for example, when drawing and redrawing 
  1444. an object for a user who is using the mouse to drag or size the object. 
  1445.  
  1446. If a window has the WS_SYNCPAINT or CS_SYNCPAINT style, invalidating a portion 
  1447. of the window causes a WM_PAINT message to be sent to the window immediately. 
  1448. Essentially, sending a message is like making a function call; the actions 
  1449. corresponding to the WM_PAINT message are carried out before the call that 
  1450. caused the invalidation returns-that is to say, the painting is synchronous. 
  1451.  
  1452. If the window does not have the WS_SYNCPAINT or CS_SYNCPAINT style, 
  1453. invalidating a portion of the window causes the invalidated region to be added 
  1454. to the window's update region.  The next time the application calls the 
  1455. WinGetMsg or WinPeekMsg functions, the application is sent a WM_PAINT message. 
  1456. If there are many messages in the queue, the painting occurs after the 
  1457. invalidation-that is, the painting is asynchronous.  A WM_PAINT message is not 
  1458. posted to the queue in this case, so all invalidation operations since the last 
  1459. WM_PAINT message are consolidated into a single WM_PAINT message the next time 
  1460. the application has no messages in the queue. 
  1461.  
  1462. There are advantages to both synchronous and asynchronous painting.  Windows 
  1463. that have simple painting functions should be painted synchronously.  Most of 
  1464. the system-defined control windows, such as buttons and frame controls, are 
  1465. painted synchronously because they can be painted quickly without interfering 
  1466. with the responsiveness of the program.  Windows that require more 
  1467. time-consuming painting operations should be painted asynchronously so that the 
  1468. painting can be initiated only when there are no other pending messages that 
  1469. might otherwise be blocked while waiting for the window to be painted.  Also, a 
  1470. window that uses an incremental approach to invalidating small portions of 
  1471. itself usually should allow those operations to consolidate into a single 
  1472. asynchronous WM_PAINT message, rather than a series of synchronous WM_PAINT 
  1473. messages. If necessary, an application can call the WinUpdateWindow function to 
  1474. cause an asynchronous window to update itself without going through the event 
  1475. loop.  WinUpdateWindow sends a WM_PAINT message directly to the window if the 
  1476. window's update region is not empty. 
  1477.  
  1478.  
  1479. ΓòÉΓòÉΓòÉ 2.2.2. The WM_PAINT Message ΓòÉΓòÉΓòÉ
  1480.  
  1481. A window receives a WM_PAINT message whenever its update region is not NULL.  A 
  1482. window procedure responds to a WM_PAINT message by calling the WinBeginPaint 
  1483. function, drawing to fill in the update areas, then calling the WinEndPaint 
  1484. function. 
  1485.  
  1486. The WinBeginPaint function returns a handle to a presentation space that is 
  1487. associated with the device context for the window and that has a visible region 
  1488. equal to the intersection of the window's update region and its visible region. 
  1489. This means that only those portions of the window that need to be redrawn are 
  1490. drawn.  Attempts to draw outside this region are clipped and do not appear on 
  1491. the screen. 
  1492.  
  1493. If the application maintains its own presentation space for the window, it can 
  1494. pass the handle of that presentation space to WinBeginPaint, which modifies the 
  1495. visible region of the presentation space and passes the presentation-space 
  1496. handle back to the caller.  If the application does not have its own 
  1497. presentation space, it can pass a NULL presentation-space handle and the system 
  1498. will return a cached-micro presentation space for the window.  In either case, 
  1499. the application can use the presentation space to draw in the window. 
  1500.  
  1501. The WinBeginPaint function takes a pointer to a RECTL structure, filling in 
  1502. this structure with the coordinates of the rectangle that encloses the area to 
  1503. be updated.  The application can use this rectangle to optimize drawing, by 
  1504. drawing only those portions of the window that intersect with the rectangle. 
  1505. If an application passes a NULL pointer for the rectangle argument, the 
  1506. application draws the entire window and relies on the clipping mechanism to 
  1507. filter out the unneeded areas. 
  1508.  
  1509. After the WinBeginPaint function sets the update region of a window to NULL, 
  1510. the application does the necessary drawing to fill the update areas.  If an 
  1511. application handles a WM_PAINT message and does not call WinBeginPaint, or 
  1512. otherwise empty the update region, the application continues to receive 
  1513. WM_PAINT messages as long as the update region is not empty. 
  1514.  
  1515. After the application finishes drawing, it calls the WinEndPaint function to 
  1516. restore the presentation space to its former state.  When a cached-micro 
  1517. presentation space is returned by WinBeginPaint, the presentation space is 
  1518. returned to the system for reuse.  If the application supplies its own 
  1519. presentation space to WinBeginPaint, the presentation space is restored to its 
  1520. previous state. 
  1521.  
  1522.  
  1523. ΓòÉΓòÉΓòÉ 2.2.2.1. Drawing the Minimized View ΓòÉΓòÉΓòÉ
  1524.  
  1525. When an application creates a standard frame window, it has the option of 
  1526. specifying an icon that the system uses to represent the application in its 
  1527. minimized state.  Typically, if an icon is supplied, the system draws it in the 
  1528. minimized window and labels it with the name of the window.  If the application 
  1529. does not specify the FS_ICON style for the window, the window receives a 
  1530. WM_PAINT message when it is minimized.  The code in the window procedure that 
  1531. handles the WM_PAINT message can determine whether the frame window currently 
  1532. is minimized and draw accordingly.  Notice that because the WS_MINIMIZED style 
  1533. is relevant only for the frame window, and not for the client window, the 
  1534. window procedure checks the frame window rather than the client window. 
  1535.  
  1536. The following code fragment shows how to draw a window in both the minimized 
  1537. and normal states: 
  1538.  
  1539.     MRESULT EXPENTRY ClientWndProc(HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2)
  1540.     {
  1541.         HPS hps;
  1542.         RECTL rcl;
  1543.         ULONG flStyle;
  1544.  
  1545.         switch (msg) {
  1546.             case WM_PAINT:
  1547.                 hps = WinBeginPaint(hwnd, (HPS) NULL, &rcl);
  1548.  
  1549.                          /* Check whether the frame window
  1550.                           (client's parent window)
  1551.                            is minimized.               */
  1552.  
  1553.                 flStyle = WinQueryWindowULong(WinQueryWindow(hwnd,
  1554.                     QW_PARENT), QWL_STYLE);
  1555.  
  1556.                 if (flStyle & WS_MINIMIZED) {
  1557.                     .
  1558.                     .    /* Paint the minimized state. */
  1559.                     .
  1560.                 }
  1561.                 else {
  1562.                     .
  1563.                     .    /* Paint the normal state.    */
  1564.                     .
  1565.                 }
  1566.                 WinEndPaint(hps);
  1567.                 return 0;
  1568.         }
  1569.     }
  1570.  
  1571.  
  1572. ΓòÉΓòÉΓòÉ 2.2.3. Drawing Without the WM_PAINT Message ΓòÉΓòÉΓòÉ
  1573.  
  1574. An application can draw in a window's presentation space without having 
  1575. received a WM_PAINT message.  As long as there is a presentation space for the 
  1576. window, an application can draw into the presentation space and avoid intruding 
  1577. into other windows or the desktop.  Applications that draw without using the 
  1578. WM_PAINT message typically call the WinGetPS function to obtain a cached-micro 
  1579. presentation space for the window and call the WinReleasePS function when they 
  1580. have finished drawing.  An application also can use any of the other types of 
  1581. presentation spaces described in the following sections. 
  1582.  
  1583.  
  1584. ΓòÉΓòÉΓòÉ 2.2.4. Three Types of Presentation Spaces ΓòÉΓòÉΓòÉ
  1585.  
  1586. All drawing must take place within a presentation space. The operating system 
  1587. provides three types of presentation spaces for drawing:  normal, micro, and 
  1588. cached-micro presentation spaces. The normal presentation space provides the 
  1589. most functionality, allowing access to all the graphics functions of the 
  1590. operating system and enabling the application to draw to all device types.  The 
  1591. normal presentation space is more difficult to use than the other two kinds of 
  1592. presentation spaces and it uses more memory.  It is created by using the 
  1593. GpiCreatePS function and is destroyed by using the GpiDestroyPS function. 
  1594.  
  1595. The micro presentation space allows access to only a subset of the operating 
  1596. system graphics functions, but it uses less memory and is faster than a normal 
  1597. presentation space.  The micro presentation space also enables the application 
  1598. to draw to all device types.  It is created by using the GpiCreatePS function 
  1599. and destroyed by using the GpiDestroyPS function. 
  1600.  
  1601. The cached-micro presentation space provides the least functionality of the 
  1602. three kinds of presentation spaces, but it is the most efficient and easiest to 
  1603. use.  The cached-micro presentation space draws only to the screen.  It is 
  1604. created and destroyed by using either the WinBeginPaint and WinEndPaint 
  1605. functions or the WinGetPS and WinReleasePS functions. 
  1606.  
  1607. The following sections describe each of the types of presentation spaces, in 
  1608. detail, and suggest strategies for using each type in an application.  All 
  1609. three kinds of presentation spaces can be used in a single application.  Some 
  1610. windows, especially if they never will be printed, are best served by 
  1611. cached-micro presentation spaces.  Other windows might require the more 
  1612. flexible services of micro or normal presentation spaces. 
  1613.  
  1614.  
  1615. ΓòÉΓòÉΓòÉ 2.2.4.1. Normal Presentation Spaces ΓòÉΓòÉΓòÉ
  1616.  
  1617. The normal presentation space supports the full power of the operating system 
  1618. graphics, including retained graphics.  The primary advantages of a normal 
  1619. presentation space over the other two presentation-space types are its support 
  1620. of all graphics functions and its ability to be associated with many kinds of 
  1621. device contexts. 
  1622.  
  1623. A normal presentation space can be associated with many different device 
  1624. contexts.  Typically, this means that an application creates a normal 
  1625. presentation space and associates it with a window device context for screen 
  1626. display.  When the user asks to print, the application associates the same 
  1627. presentation space with a printer device context.  Later, the application can 
  1628. reassociate the presentation space with the window device context.  A 
  1629. presentation space can be associated with only one device context at a time, 
  1630. but the normal presentation space enables the application to change the device 
  1631. context whenever necessary. 
  1632.  
  1633. When creating a normal presentation space, an application can associate it with 
  1634. a device context or defer the association to a later time.  The GpiAssociate 
  1635. function associates a device context with a normal presentation space after the 
  1636. presentation space has been created.  An application typically associates the 
  1637. normal presentation space with a device context when calling the GpiCreatePS 
  1638. function and, later, associates the presentation space with a different device 
  1639. context by calling GpiAssociate.  To obtain a device context for a window, call 
  1640. the WinOpenWindowDC function.  To obtain a device context for a device other 
  1641. than the screen, call the DevOpenDC function. 
  1642.  
  1643. An application typically creates a normal presentation space during 
  1644. initialization and uses it until termination.  Each time the application 
  1645. receives a WM_PAINT message, it passes the handle of the normal presentation 
  1646. space as an argument to WinBeginPaint; this prevents the system from returning 
  1647. a cached-micro presentation space.  The system modifies the visible region of 
  1648. the supplied normal presentation space and returns the presentation space to 
  1649. the application.  This method enables the application to use the same 
  1650. presentation space for all the drawing in a specified window. Normal 
  1651. presentation spaces created using GpiCreatePS must be destroyed by calling 
  1652. GpiDestroyPS before the application terminates.  Do not call WinReleasePS to 
  1653. release a presentation space obtained using GpiCreatePS.  Before terminating, 
  1654. applications also must use DevCloseDC to close any device contexts opened using 
  1655. DevOpenDC.  No action is necessary for device contexts obtained using 
  1656. WinOpenWindowDC, because the system automatically closes these device contexts 
  1657. when destroying the associated windows. 
  1658.  
  1659.  
  1660. ΓòÉΓòÉΓòÉ 2.2.4.2. Micro Presentation Spaces ΓòÉΓòÉΓòÉ
  1661.  
  1662. The primary advantage of a micro presentation space over a cached-micro 
  1663. presentation space is that it can be used for printing as well as painting in a 
  1664. window.  An application that uses a micro presentation space must explicitly 
  1665. associate it with a device context.  This makes the micro presentation space 
  1666. useful for painting to a printer, a plotter, or an off-screen memory bit map. 
  1667.  
  1668. A micro presentation space does not support the full set of OS/2 graphics 
  1669. functions.  Unlike a normal presentation space, a micro presentation space does 
  1670. not support retained graphics. 
  1671.  
  1672. An application that must display graphics or text in a window and print to a 
  1673. printer or plotter typically maintains two presentation spaces: one for the 
  1674. window and one for the printing device. The following figure shows how an 
  1675. application's graphics output can be routed through separate presentation 
  1676. spaces to produce a screen display and printed copy. An application creates a 
  1677. micro presentation space by calling the GpiCreatePS function.  A device context 
  1678. must be supplied at the time the micro presentation space is created.  An 
  1679. application typically creates a device context and then a presentation space. 
  1680. The following code fragment demonstrates this by obtaining a device context for 
  1681. a window and associating it with a new micro presentation space: 
  1682.  
  1683.  
  1684.         hdc = WinOpenWindowDC(...);
  1685.         hps = GpiCreatePS(..., hdc, ..., GPIA_ASSOC);
  1686.  
  1687. To create a micro presentation space for a device other than the screen, 
  1688. replace the call to the WinOpenWindowDC function with a call to the DevOpenDC 
  1689. function, which obtains a device context for a device other than the screen. 
  1690. Then the device context that is obtained by this call can be used as an 
  1691. argument to GpiCreatePS. 
  1692.  
  1693. An application typically creates a micro presentation space during 
  1694. initialization and uses it until termination.  Each time the application 
  1695. receives a WM_PAINT message, it should pass the handle of the micro 
  1696. presentation space as an argument to the WinBeginPaint function; this prevents 
  1697. the system from returning a cached-micro presentation space.  The system 
  1698. modifies the visible region of the supplied micro presentation space and 
  1699. returns the presentation space to the application.  This method enables the 
  1700. application to use the same presentation space for all drawing in a specified 
  1701. window. 
  1702.  
  1703. Micro presentation spaces created by using GpiCreatePS should be destroyed by 
  1704. calling GpiDestroyPS before the application terminates.  Do not call the 
  1705. WinReleasePS function to release a presentation space obtained by using 
  1706. GpiCreatePS.  Before terminating, applications must use the DevCloseDC function 
  1707. to close any device contexts opened using the DevOpenDC function.  No action is 
  1708. necessary for device contexts obtained using WinOpenWindowDC, because the 
  1709. system automatically closes these device contexts when destroying the 
  1710. associated windows. 
  1711.  
  1712.  
  1713. ΓòÉΓòÉΓòÉ 2.2.4.3. Cached-Micro Presentation Spaces ΓòÉΓòÉΓòÉ
  1714.  
  1715. The cached-micro presentation space provides the simplest and most efficient 
  1716. drawing environment.  It can be used only for drawing on the screen, typically 
  1717. in the context of a window.  It is most appropriate for application tasks that 
  1718. require simple window-drawing functions that will not be printed.  Cached-micro 
  1719. presentation spaces do not support retained graphics. 
  1720.  
  1721. After an application draws to a cached-micro presentation space, the drawing 
  1722. commands are routed through an implied device context to the current display. 
  1723. The application does not require information about the actual device context, 
  1724. because the device context is assumed to be the display.  This process makes 
  1725. cached-micro presentation spaces easy for applications to use. The following 
  1726. code fragment illustrates this process: 
  1727.  
  1728.        HPS    hps;
  1729.  
  1730.             case WM_PAINT:
  1731.                 hps = WinBeginPaint(hwnd,NULL,NULL);
  1732.  
  1733.                 /*
  1734.                  * Use PS.
  1735.                  */
  1736.  
  1737.                 WinEndPaint (hps);
  1738.  
  1739.               or 
  1740.  
  1741.         HPS    hps;
  1742.  
  1743.             case WM_PAINT:
  1744.  
  1745.                  hps = WinGetPS(hwnd);
  1746.  
  1747.                  /*
  1748.                  * Use PS.
  1749.                  */
  1750.  
  1751.                  WinReleasePS(hps);
  1752.  
  1753. There are two common strategies for using cached-micro presentation spaces in 
  1754. an application. The simplest strategy is to call the WinBeginPaint function 
  1755. during the WM_PAINT message, use the resulting cached-micro presentation space 
  1756. to draw in the window, then return the presentation space to the system by 
  1757. calling the WinEndPaint function.  By using this method, the application 
  1758. interacts with the presentation space only when drawing in the presentation 
  1759. space.  This method is most appropriate for simple drawing.  A disadvantage of 
  1760. this method is that the application must set up any special attributes for the 
  1761. presentation space, such as line color and font, each time a new presentation 
  1762. space is obtained. 
  1763.  
  1764. A second strategy is for the application to allocate a cached-micro 
  1765. presentation space during initialization, by calling the WinGetPS function and 
  1766. saving the resulting presentation-space handle in a static variable.  Then the 
  1767. application can set attributes in the presentation space that exist for the 
  1768. life of the program.  The presentation-space handle can be used as an argument 
  1769. to the WinBeginPaint function each time the window gets a WM_PAINT message; the 
  1770. system modifies the visible region and returns the presentation space to the 
  1771. application with its attributes intact. This strategy is appropriate for 
  1772. applications that need to customize their window-drawing attributes. A 
  1773. presentation space that is obtained by calling the WinGetPS function must be 
  1774. released by calling WinReleasePS when the application has finished using it, 
  1775. typically during program termination.  A presentation space that is obtained by 
  1776. calling WinBeginPaint must be released by calling WinEndPaint, typically as the 
  1777. last part of processing a WM_PAINT message. 
  1778.  
  1779.  
  1780. ΓòÉΓòÉΓòÉ 3. Presentation Parameters ΓòÉΓòÉΓòÉ
  1781.  
  1782. A presentation parameter is a piece of data that can be attached to a window to 
  1783. influence the way it is painted. An application can use system-defined 
  1784. presentation parameters to change the colors used by the various PM controls. 
  1785. It can also use a presentation parameter to change the font used for text. If 
  1786. you want to create your own presentation parameters, you must use indexes above 
  1787. PP_USER. 
  1788.  
  1789.  
  1790. ΓòÉΓòÉΓòÉ 3.1. About Presentation Parameters ΓòÉΓòÉΓòÉ
  1791.  
  1792. An application can attach any presentation parameter to a window. However, the 
  1793. window's implementation determines whether or not the presentation parameter 
  1794. will have an effect on the window. For example, if a window does not contain 
  1795. any text, the window will ignore the setting of a font presentation parameter. 
  1796. In general, a well-behaved window should support the more commonly used 
  1797. presentation parameters, such as those for setting the foreground and 
  1798. background colors and the text font. OS/2 uses presentation parameters to let 
  1799. users change window fonts and colors by dragging colors and fonts from 
  1800. Workplace Shell palettes and dropping them in the window. If a window does not 
  1801. support the correct presentation parameters, it can appear unresponsive to the 
  1802. user's actions. 
  1803.  
  1804. By default, presentation parameter values are inherited from the window's 
  1805. owner. Suppose you create a dialog window that has radio buttons. You don't 
  1806. have to set the same background color in both the dialog window and the radio 
  1807. buttons because the radio button will inherit its background color from the 
  1808. dialog window. Any time the dialog's background color is changed, the radio 
  1809. button's color changes automatically. 
  1810.  
  1811. WinSetPresParam is used to attach a presentation parameter to a window. 
  1812. Although any presentation parameter index can be used, windows typically 
  1813. support only a small subset of the possible values. For example, the 
  1814. Presentation Manager controls support the PP_FONTNAMESIZE presentation 
  1815. parameter and several of the color and color index presentation parameters. 
  1816. Setting a supported presentation parameter to a window will cause the window to 
  1817. repaint itself, making use of the new value. 
  1818.  
  1819. Setting a color presentation parameter to a window does not automatically 
  1820. change a color. It is up to the window's implementation to query the 
  1821. presentation parameter's value, and then use it when updating the window. 
  1822.  
  1823.  
  1824. ΓòÉΓòÉΓòÉ 3.2. Querying and Setting Presentation Parameters ΓòÉΓòÉΓòÉ
  1825.  
  1826. To implement support for a presentation parameter in a window, you need to find 
  1827. out what its value is and when that value has been changed. To query a 
  1828. presentation parameter's value use WinQueryPresParam, passing in the index of 
  1829. the presentation parameter and a buffer large enough for the value to be 
  1830. returned in. For presentation parameters that have string values, the buffer 
  1831. should be large enough to include the null termination character. 
  1832.  
  1833. The flag QPF_NOINHERIT can be specified if the presentation parameter should 
  1834. not be inherited from the window's owner. Otherwise the system looks up the 
  1835. window's owner chain until it finds an occurrence of the same presentation 
  1836. parameter index. 
  1837.  
  1838. When a presentation parameter is set or changed, the window receives a 
  1839. WM_PRESPARAMCHANGED message. If only one value is changed, that presentation 
  1840. parameter's index is passed with the message. If more than one value is 
  1841. changed, zero is passed. In the latter case, the window must query all its 
  1842. presentation parameters to find out which ones have changed. In response to the 
  1843. WM_PRESPARAMCHANGED message, the receiving window should repaint itself 
  1844. according to the new values received. It is not possible to reject a 
  1845. presentation parameter change; the new value has already been set by the time 
  1846. the notification message has been received. 
  1847.  
  1848. WinRemovePresParam is available for removing a presentation parameter from a 
  1849. window. 
  1850.  
  1851.    /*******************************************************************/
  1852.    /* Set the background color of the window                          */
  1853.    /*******************************************************************/
  1854.  
  1855.    lColor = RGB_RED;                         /* RGB color value       */
  1856.  
  1857.    WinSetPresParam(hwndMain,                 /* window handle         */
  1858.                    PP_BACKGROUNDCOLOR,       /* background pres param */
  1859.                    sizeof(lColor),           /* length of pres param  */
  1860.                    &lColor);                 /* pres param value      */
  1861.  
  1862.    ---------------------------------------------------------------------
  1863.  
  1864.    ... in window procedure for hwndMain ...
  1865.  
  1866.  
  1867.    case WM_PRESPARAMCHANGED:
  1868.  
  1869.       /****************************************************************/
  1870.       /* Message received when a presparam has been changed.          */
  1871.       /* Invalidate the window to repaint with new color.             */
  1872.       /****************************************************************/
  1873.  
  1874.       WinInvalidateRect(hwndMain, NULL, FALSE);
  1875.       break;
  1876.  
  1877.    case WM_PAINT:
  1878.  
  1879.       /****************************************************************/
  1880.       /* Repaint the window                                           */
  1881.       /****************************************************************/
  1882.  
  1883.       hps = WinBeginPaint(hwndMain, NULLHANDLE, NULL);
  1884.  
  1885.       /****************************************************************/
  1886.       /* Put presentation space into RGB mode                         */
  1887.       /****************************************************************/
  1888.  
  1889.       GpiCreateLogColorTable(hps, 0, LCOLF_RGB, 0, 0, NULL);
  1890.  
  1891.       /****************************************************************/
  1892.       /* Query presentation parameter value for background color      */
  1893.       /****************************************************************/
  1894.  
  1895.       WinQueryPresParam(hwndMain,            /* Window handle         */
  1896.                         PP_BACKGROUNDCOLOR,  /* Background presparam  */
  1897.                         0,
  1898.                         NULL,
  1899.                         sizeof(lColor),      /* Length of data buffer */
  1900.                         &lColor,             /* Data buffer returned  */
  1901.                         0);
  1902.  
  1903.       /****************************************************************/
  1904.       /* Fill window with background color retrieved from presparam   */
  1905.       /****************************************************************/
  1906.  
  1907.       WinQueryWindowRect(hwndMain, &rectMain);
  1908.       WinFillRect(hps, &rectMain, lColor);
  1909.  
  1910.       ... rest of painting code ...
  1911.  
  1912.       WinEndPaint(hps);
  1913.       break;
  1914.  
  1915.  
  1916. ΓòÉΓòÉΓòÉ 3.3. Creating a Window with a Presentation Parameter ΓòÉΓòÉΓòÉ
  1917.  
  1918. It is possible to pass in presentation parameters when creating a window, using 
  1919. WinCreateWindow. The last parameter pPresParams is a pointer to a PRESPARAMS 
  1920. structure containing an array of PARAM structures, which in turn contain the 
  1921. presentation parameter indexes and values. The size field in PRESPARAMS should 
  1922. be set to the size of the array being passed. 
  1923.  
  1924.  
  1925.    /*******************************************************************/
  1926.    /* Set a presentation parameter when creating a window             */
  1927.    /*******************************************************************/
  1928.  
  1929.    PPRESPARAMS ppresMain;
  1930.  
  1931.    lColor = RGB_RED;
  1932.  
  1933.    /*******************************************************************/
  1934.    /* Allocate space for PRESPARAMS structure and one presparam       */
  1935.    /*******************************************************************/
  1936.  
  1937.    ppresMain = (PPRESPARAMS)malloc(sizeof(ULONG) * 4);
  1938.  
  1939.    /*******************************************************************/
  1940.    /* Set up PRESPARAMS structure with a background color             */
  1941.    /*******************************************************************/
  1942.  
  1943.    ppresMain->cb = sizeof(ULONG) * 3;
  1944.    ppresMain->aparam[0].id = PP_BACKGROUNDCOLOR;
  1945.    ppresMain->aparam[0].cb = sizeof(lColor);
  1946.  
  1947.    memcpy(&ppresMain->aparam[0].ab, &lColor, sizeof(lColor));
  1948.  
  1949.    /*******************************************************************/
  1950.    /* Create the window and pass in the background color presparam    */
  1951.    /*******************************************************************/
  1952.  
  1953.    hwndMain = WinCreateWindow(hwndFrame,
  1954.                               "MainWindow",
  1955.                               0,
  1956.                               0,
  1957.                               0, 0, 0, 0,
  1958.                               0,
  1959.                               HWND_TOP,
  1960.                               FID_CLIENT,
  1961.                               NULL,
  1962.                               ppresMain);    /* Pass presparam data   */
  1963.  
  1964.  
  1965. ΓòÉΓòÉΓòÉ 3.4. Specifying PRESPARAMS in a Dialog Template ΓòÉΓòÉΓòÉ
  1966.  
  1967. If you are creating a dialog window, you can specify presentation parameters 
  1968. inside the dialog template. For any window in a dialog template (including the 
  1969. dialog window itself) you may add one or more PRESPARAMS statements to the 
  1970. template following the definition of the control. 
  1971.  
  1972. Note:  For the dialog window, place the PRESPARAMS statement immediately after 
  1973.        the DIALOG statement in the template. 
  1974.  
  1975.      DLGTEMPLATE DLG_MYDIALOG
  1976.      BEGIN
  1977.          DIALOG  "Add Expression", DLG_MYDIALOG, 30, 25, 205, 55,
  1978.                                    WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  1979.          /* Set font to be used in dialog */
  1980.          PRESPARAMS  PP_FONTNAMESIZE, "10.Helv"
  1981.          BEGIN
  1982.              LTEXT       "Enter new expression:", -1, 5, 40, 195, 8
  1983.              /* Set above static control to yellow text on red background */
  1984.              PRESPARAMS  PP_BACKGROUNDCOLOR, RGB_RED
  1985.              PRESPARAMS  PP_FOREGROUNDCOLORINDEX, CLR_YELLOW
  1986.              ENTRYFIELD  "", -1, 7, 27, 191, 8, ES_MARGIN
  1987.              PUSHBUTTON  "OK", DID_OK, 5, 5, 45, 14
  1988.          END
  1989.      END
  1990.  
  1991.  
  1992. ΓòÉΓòÉΓòÉ 3.5. Querying Color Presentation Parameter Pairs ΓòÉΓòÉΓòÉ
  1993.  
  1994. Many of the color presentation parameters come in pairs. For example, the 
  1995. background color of a window can be set using either PP_BACKGROUNDCOLOR, which 
  1996. takes an RGB color value (for example, RGB_RED), or PP_BACKGROUNDCOLORINDEX, 
  1997. which takes a color index (for example, CLR_RED). The newer presentation 
  1998. parameters do not have a color index equivalent, so it is recommended that you 
  1999. use RGB values wherever possible. RGB presentation parameters will also work 
  2000. with SYSCLR_ index values and negative CLR_ indexes (for example, CLR_BLACK). 
  2001.  
  2002. WinQueryPresParam can be used to query a pair of color presentation parameters 
  2003. at once. The first parameter takes precedence over the second, and should 
  2004. normally be the RGB presentation parameter. The color index should be the 
  2005. second. If you are querying a color index presentation parameter and you want 
  2006. the color value to be returned as an RGB value, you can specify either 
  2007. QPF_ID1COLORINDEX or QPF_ID2COLORINDEX to convert a color index value to an RGB 
  2008. value. 
  2009.  
  2010. If a window does not have a presentation parameter set for a particular color, 
  2011. the window must select a default color to use. For example, if there is no 
  2012. value set for PP_FOREGROUNDCOLOR or PP_FOREGROUNDCOLORINDEX, the window has to 
  2013. choose a default foreground color when it paints. The usual practice is to 
  2014. select a corresponding system color (for example, SYSCLR_WINDOWTEXT) and use 
  2015. that to paint the foreground of the window. 
  2016.  
  2017. The decision of which system color to use is an important one, as system colors 
  2018. can be changed by the user with a Scheme Palette. Your choice should always be 
  2019. appropriate to the functionality of the window. If the user does change a 
  2020. system color, your window will receive a WM_SYSCOLORCHANGED message to notify 
  2021. you that your default colors might have been changed. 
  2022.  
  2023. If there is no appropriate system color available, you will need to select a 
  2024. hard-coded color value as the default instead. 
  2025.  
  2026.  
  2027.    /****************************************************************/
  2028.    /* Query presentation parameter value for background color      */
  2029.    /****************************************************************/
  2030.  
  2031.    if (WinQueryPresParam(
  2032.            hwndMain,                /* Window handle               */
  2033.            PP_BACKGROUNDCOLOR,      /* Background presparam (RGB)  */
  2034.            PP_BACKGROUNDCOLORINDEX, /* Background presparam (Index)*/
  2035.            NULL,
  2036.            sizeof(lColor),          /* Length of data buffer       */
  2037.            &lColor,                 /* Data buffer returned        */
  2038.            QPF_ID2COLORINDEX) == 0) /* Convert 2nd presparam to RGB*/
  2039.    {
  2040.       /*************************************************************/
  2041.       /* No presparam found - query default background color       */
  2042.       /*************************************************************/
  2043.  
  2044.       lColor = WinQuerySysColors(
  2045.            HWND_DESKTOP,            /* Desktop window handle       */
  2046.            SYSCLR_BACKGROUND,       /* System default background   */
  2047.            0);                      /* Reserved                    */
  2048.    }
  2049.  
  2050.    GpiSetBackColor(hps, lColor);
  2051.  
  2052.  
  2053. ΓòÉΓòÉΓòÉ 3.6. Setting a Font Presentation Parameter ΓòÉΓòÉΓòÉ
  2054.  
  2055. There is one font presentation parameter, PP_FONTNAMESIZE, which is used to 
  2056. select the default font for a window. If this presentation parameter is 
  2057. attached to a window, the specified font is automatically selected as the 
  2058. default and is the one used when text-drawing PM functions are called (for 
  2059. example, WinDrawText and GpiCharStringAt). 
  2060.  
  2061. The format of the font name string is as follows: 
  2062.  
  2063. <point size>.<face name>(.<modifer>(.<modifier> ...
  2064. where: 
  2065.  
  2066.  <point size> is the point size of the font 
  2067.  
  2068.  <face name> is the face name of the font 
  2069.  
  2070.  <modifier> is one of the following: 
  2071.  
  2072.                Bold 
  2073.                Italic 
  2074.                Underscore 
  2075.                Outline 
  2076.                Strikeout 
  2077.  
  2078.  Examples are "12.New Times Roman" and "10.Helvetica.Bold.Italic" 
  2079.  
  2080.  Note:  Modifiers can be used to create a font with a combination of the listed 
  2081.         attributes. Do not use modifiers if a true font of that type is already 
  2082.         available. For example, use "10.Helvetica Bold" instead of 
  2083.         "10.Helvetica.Bold." 
  2084.  
  2085.  
  2086.      /*******************************************************************/
  2087.      /* Set the text font for the window                                */
  2088.      /*******************************************************************/
  2089.  
  2090.      szFont = "10.Helvetica Bold Italic";
  2091.  
  2092.      WinSetPresParam(hwndMain,                 /* window handle         */
  2093.                      PP_FONTNAMESIZE,          /* background pres param */
  2094.                      strlen(szFont) + 1,       /* length of pres param  */
  2095.                      szFont);                  /* pres param value      */
  2096.  
  2097.  
  2098. ΓòÉΓòÉΓòÉ 3.7. Colors Used by PM Controls ΓòÉΓòÉΓòÉ
  2099.  
  2100. PM controls make extensive use of presentation parameters for determining the 
  2101. fonts and colors to paint with. All the controls that display text strings use 
  2102. the font set by the PP_FONTNAMESIZE presentation parameter. The colors used in 
  2103. the controls can be set using presentation parameters. Each control responds to 
  2104. a subset of the color presentation parameters, depending on the type of 
  2105. painting it is required to do. Some of the color presentation parameters are 
  2106. specific to a single control; others are used by many or all of the controls. 
  2107.  
  2108. When there are no presentation parameters set, a control selects the default 
  2109. colors to use. If nothing else is available, the control will use the default 
  2110. system colors (obtained by calling WinQuerySysColor). When no system color is 
  2111. available, it will use a hard-coded RGB color. 
  2112.  
  2113. In summary, the colors a control window uses depends on what has been set by 
  2114. the application and the user. The order of precedence (from first to last) for 
  2115. a PM control's choice of colors is as follows: 
  2116.  
  2117.    1. Presentation parameters 
  2118.    2. Application-specific control colors 
  2119.    3. Global control colors 
  2120.    4. Default colors (system colors, where available) 
  2121.  For a list of the default colors used by a system PM control, select its name 
  2122.  from the following list: 
  2123.  
  2124.       ΓûáStatic Bitmap 
  2125.       ΓûáStatic Text 
  2126.       ΓûáGroup Box 
  2127.       ΓûáPush Button 
  2128.       ΓûáCheck Box 
  2129.       ΓûáRadio Button 
  2130.       ΓûáEntry Field 
  2131.       ΓûáList Box 
  2132.       ΓûáCombo Box 
  2133.       ΓûáTitle Bar 
  2134.       ΓûáMenu 
  2135.       ΓûáFrame 
  2136.       ΓûáScroll Bar 
  2137.       ΓûáSpin Button 
  2138.       ΓûáSlider 
  2139.       ΓûáCircular Slider 
  2140.       ΓûáMLE 
  2141.       ΓûáValue Set 
  2142.       ΓûáNotebook 
  2143.       ΓûáContainer 
  2144.  
  2145.  
  2146. ΓòÉΓòÉΓòÉ <hidden> Static Bitmap : CCT_STATIC ΓòÉΓòÉΓòÉ
  2147.  
  2148.      Color Usage Description 
  2149.  
  2150.            Background 
  2151.            Background (in dialog) 
  2152.            Foreground 
  2153.            Disabled background 
  2154.  
  2155.      Background color 
  2156.  
  2157.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2158.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  2159.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2160.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2161.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2162.             ΓöéSystem Default                ΓöéSYSCLR_WINDOW                 Γöé
  2163.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2164.             ΓöéRemarks                       ΓöéNone                          Γöé
  2165.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2166.  
  2167.      Background color (in dialog) 
  2168.  
  2169.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2170.             ΓöéControl Color Index           ΓöéCCI_BACKGROUNDDIALOG          Γöé
  2171.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2172.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2173.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2174.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  2175.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2176.             ΓöéRemarks                       ΓöéNone                          Γöé
  2177.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2178.  
  2179.      Foreground color 
  2180.  
  2181.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2182.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  2183.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2184.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  2185.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2186.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWFRAME            Γöé
  2187.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2188.             ΓöéRemarks                       ΓöéNone                          Γöé
  2189.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2190.  
  2191.      Disabled background color 
  2192.  
  2193.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2194.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUND        Γöé
  2195.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2196.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDBACKGROUNDCOLOR    Γöé
  2197.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2198.             ΓöéSystem Default                ΓöéSYSCLR_BACKGROUND             Γöé
  2199.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2200.             ΓöéRemarks                       ΓöéNone                          Γöé
  2201.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2202.  
  2203.  
  2204. ΓòÉΓòÉΓòÉ <hidden> Static Text : CCT_STATICTEXT ΓòÉΓòÉΓòÉ
  2205.  
  2206.      Color Usage Description 
  2207.  
  2208.            Background 
  2209.            Background (in dialog) 
  2210.            Text 
  2211.  
  2212.      Background color 
  2213.  
  2214.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2215.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  2216.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2217.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2218.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2219.             ΓöéSystem Default                ΓöéSYSCLR_WINDOW                 Γöé
  2220.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2221.             ΓöéRemarks                       ΓöéNone                          Γöé
  2222.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2223.  
  2224.      Background color (in dialog) 
  2225.  
  2226.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2227.             ΓöéControl Color Index           ΓöéCCI_BACKGROUNDDIALOG          Γöé
  2228.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2229.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2230.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2231.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  2232.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2233.             ΓöéRemarks                       ΓöéNone                          Γöé
  2234.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2235.  
  2236.      Text color 
  2237.  
  2238.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2239.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  2240.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2241.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  2242.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2243.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWSTATICTEXT       Γöé
  2244.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2245.             ΓöéRemarks                       ΓöéNone                          Γöé
  2246.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2247.  
  2248.  
  2249. ΓòÉΓòÉΓòÉ <hidden> Group Box : CCT_GROUPBOX ΓòÉΓòÉΓòÉ
  2250.  
  2251.      Color Usage Description 
  2252.  
  2253.            Background 
  2254.            Background (in dialog) 
  2255.            Text 
  2256.            Light Border 
  2257.            Dark Border 
  2258.  
  2259.      Background color 
  2260.  
  2261.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2262.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  2263.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2264.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2265.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2266.             ΓöéSystem Default                ΓöéSYSCLR_WINDOW                 Γöé
  2267.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2268.             ΓöéRemarks                       ΓöéNot inherited                 Γöé
  2269.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2270.  
  2271.      Background color (in dialog) 
  2272.  
  2273.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2274.             ΓöéControl Color Index           ΓöéCCI_BACKGROUNDDIALOG          Γöé
  2275.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2276.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2277.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2278.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  2279.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2280.             ΓöéRemarks                       ΓöéNot inherited                 Γöé
  2281.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2282.  
  2283.      Text color 
  2284.  
  2285.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2286.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  2287.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2288.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  2289.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2290.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWSTATICTEXT       Γöé
  2291.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2292.             ΓöéRemarks                       ΓöéNot inherited                 Γöé
  2293.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2294.  
  2295.      Light border color 
  2296.  
  2297.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2298.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  2299.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2300.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  2301.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2302.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  2303.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2304.             ΓöéRemarks                       ΓöéNot inherited                 Γöé
  2305.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2306.  
  2307.      Dark border color 
  2308.  
  2309.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2310.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  2311.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2312.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  2313.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2314.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  2315.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2316.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  2317.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  2318.             Γöé                              Γöéis 0x00808080.                Γöé
  2319.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2320.  
  2321.  
  2322. ΓòÉΓòÉΓòÉ <hidden> Push Button: CCT_PUSHBUTTON ΓòÉΓòÉΓòÉ
  2323.  
  2324.      Color Usage Description 
  2325.  
  2326.            Background 
  2327.            Text 
  2328.            Disabled background 
  2329.            Disabled text 
  2330.            Default border 
  2331.            Light border 
  2332.            Dark border 
  2333.  
  2334.      Background color 
  2335.  
  2336.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2337.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  2338.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2339.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2340.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2341.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  2342.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2343.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  2344.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2345.  
  2346.      Text color 
  2347.  
  2348.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2349.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  2350.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2351.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  2352.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2353.             ΓöéSystem Default                ΓöéSYSCLR_MENUTEXT               Γöé
  2354.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2355.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  2356.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2357.  
  2358.      Disabled background color 
  2359.  
  2360.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2361.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUND        Γöé
  2362.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2363.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDBACKGROUNDCOLOR    Γöé
  2364.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2365.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  2366.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2367.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  2368.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2369.  
  2370.      Disabled text color 
  2371.  
  2372.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2373.             ΓöéControl Color Index           ΓöéCCI_DISABLEDFOREGROUND        Γöé
  2374.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2375.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDFOREGROUNDCOLOR    Γöé
  2376.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2377.             ΓöéSystem Default                ΓöéSYSCLR_MENUTEXT               Γöé
  2378.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2379.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  2380.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2381.  
  2382.      Default Border color 
  2383.  
  2384.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2385.             ΓöéControl Color Index           ΓöéCCI_BORDERDEFAULT             Γöé
  2386.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2387.             ΓöéPresentation Parameter        ΓöéPP_BORDERDEFAULTCOLOR         Γöé
  2388.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2389.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDEFAULT          Γöé
  2390.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2391.             ΓöéRemarks                       ΓöéNone                          Γöé
  2392.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2393.  
  2394.      Light border color 
  2395.  
  2396.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2397.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  2398.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2399.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  2400.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2401.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONLIGHT            Γöé
  2402.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2403.             ΓöéRemarks                       ΓöéNone                          Γöé
  2404.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2405.  
  2406.      Dark border color 
  2407.  
  2408.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2409.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  2410.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2411.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  2412.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2413.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDARK             Γöé
  2414.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2415.             ΓöéRemarks                       ΓöéNone                          Γöé
  2416.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2417.  
  2418.  
  2419. ΓòÉΓòÉΓòÉ <hidden> Check Box : CCT_CHECKBOX ΓòÉΓòÉΓòÉ
  2420.  
  2421.      Color Usage Description 
  2422.  
  2423.            Background 
  2424.            Background (in dialog) 
  2425.            Text 
  2426.            Disabled background 
  2427.            Disabled background (in dialog) 
  2428.            Disabled text 
  2429.            Highlight background 
  2430.            Highlight background (in dialog) 
  2431.            Highlight text 
  2432.  
  2433.      Background color 
  2434.  
  2435.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2436.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  2437.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2438.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2439.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2440.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  2441.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2442.             ΓöéRemarks                       ΓöéNone                          Γöé
  2443.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2444.  
  2445.      Background (in dialog) color 
  2446.  
  2447.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2448.             ΓöéControl Color Index           ΓöéCCI_BACKGROUNDDIALOG          Γöé
  2449.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2450.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2451.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2452.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  2453.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2454.             ΓöéRemarks                       ΓöéNone                          Γöé
  2455.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2456.  
  2457.      Text color 
  2458.  
  2459.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2460.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  2461.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2462.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  2463.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2464.             ΓöéSystem Default                ΓöéSYSCLR_MENUTEXT               Γöé
  2465.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2466.             ΓöéRemarks                       ΓöéNone                          Γöé
  2467.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2468.  
  2469.      Disabled background color 
  2470.  
  2471.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2472.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUND        Γöé
  2473.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2474.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDBACKGROUNDCOLOR    Γöé
  2475.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2476.             ΓöéSystem Default                ΓöéSYSCLR_WINDOW                 Γöé
  2477.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2478.             ΓöéRemarks                       ΓöéNone                          Γöé
  2479.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2480.  
  2481.      Disabled background (in dialog) color 
  2482.  
  2483.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2484.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUNDDIALOG  Γöé
  2485.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2486.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDBACKGROUNDCOLOR    Γöé
  2487.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2488.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  2489.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2490.             ΓöéRemarks                       ΓöéNone                          Γöé
  2491.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2492.  
  2493.      Disabled text color 
  2494.  
  2495.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2496.             ΓöéControl Color Index           ΓöéCCI_DISABLEDFOREGROUND        Γöé
  2497.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2498.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDFOREGROUNDCOLOR    Γöé
  2499.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2500.             ΓöéSystem Default                ΓöéSYSCLR_MENUTEXT               Γöé
  2501.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2502.             ΓöéRemarks                       ΓöéNone                          Γöé
  2503.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2504.  
  2505.      Highlight background color 
  2506.  
  2507.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2508.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTBACKGROUND       Γöé
  2509.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2510.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  2511.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2512.             ΓöéSystem Default                ΓöéSYSCLR_WINDOW                 Γöé
  2513.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2514.             ΓöéRemarks                       ΓöéNone                          Γöé
  2515.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2516.  
  2517.      Highlight background (in dialog) color 
  2518.  
  2519.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2520.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTBACKGROUNDDIALOG Γöé
  2521.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2522.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  2523.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2524.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  2525.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2526.             ΓöéRemarks                       ΓöéNone                          Γöé
  2527.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2528.  
  2529.      Highlight text color 
  2530.  
  2531.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2532.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTFOREGROUND       Γöé
  2533.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2534.             ΓöéPresentation Parameter        ΓöéPP_HILITEFOREGROUNDCOLOR      Γöé
  2535.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2536.             ΓöéSystem Default                ΓöéSYSCLR_MENUTEXT               Γöé
  2537.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2538.             ΓöéRemarks                       ΓöéNone                          Γöé
  2539.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2540.  
  2541.  
  2542. ΓòÉΓòÉΓòÉ <hidden> Radio Button : CCT_RADIOBUTTON ΓòÉΓòÉΓòÉ
  2543.  
  2544.      Color Usage Description 
  2545.  
  2546.            Background 
  2547.            Background (in dialog) 
  2548.            Text 
  2549.            Disabled background 
  2550.            Disabled background (in dialog) 
  2551.            Disabled text 
  2552.            Highlight background 
  2553.            Highlight background (in dialog) 
  2554.            Highlight text 
  2555.  
  2556.      Background color 
  2557.  
  2558.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2559.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  2560.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2561.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2562.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2563.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  2564.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2565.             ΓöéRemarks                       ΓöéNone                          Γöé
  2566.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2567.  
  2568.      Background (in dialog) color 
  2569.  
  2570.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2571.             ΓöéControl Color Index           ΓöéCCI_BACKGROUNDDIALOG          Γöé
  2572.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2573.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2574.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2575.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  2576.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2577.             ΓöéRemarks                       ΓöéNone                          Γöé
  2578.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2579.  
  2580.      Text color 
  2581.  
  2582.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2583.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  2584.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2585.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  2586.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2587.             ΓöéSystem Default                ΓöéSYSCLR_MENUTEXT               Γöé
  2588.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2589.             ΓöéRemarks                       ΓöéNone                          Γöé
  2590.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2591.  
  2592.      Disabled background color 
  2593.  
  2594.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2595.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUND        Γöé
  2596.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2597.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDBACKGROUNDCOLOR    Γöé
  2598.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2599.             ΓöéSystem Default                ΓöéSYSCLR_WINDOW                 Γöé
  2600.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2601.             ΓöéRemarks                       ΓöéNone                          Γöé
  2602.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2603.  
  2604.      Disabled background (in dialog) color 
  2605.  
  2606.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2607.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUNDDIALOG  Γöé
  2608.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2609.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDBACKGROUNDCOLOR    Γöé
  2610.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2611.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  2612.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2613.             ΓöéRemarks                       ΓöéNone                          Γöé
  2614.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2615.  
  2616.      Disabled text color 
  2617.  
  2618.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2619.             ΓöéControl Color Index           ΓöéCCI_DISABLEDFOREGROUND        Γöé
  2620.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2621.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDFOREGROUNDCOLOR    Γöé
  2622.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2623.             ΓöéSystem Default                ΓöéSYSCLR_MENUTEXT               Γöé
  2624.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2625.             ΓöéRemarks                       ΓöéNone                          Γöé
  2626.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2627.  
  2628.      Highlight background color 
  2629.  
  2630.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2631.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTBACKGROUND       Γöé
  2632.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2633.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  2634.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2635.             ΓöéSystem Default                ΓöéSYSCLR_WINDOW                 Γöé
  2636.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2637.             ΓöéRemarks                       ΓöéNone                          Γöé
  2638.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2639.  
  2640.      Highlight background (in dialog) color 
  2641.  
  2642.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2643.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTBACKGROUNDDIALOG Γöé
  2644.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2645.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  2646.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2647.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  2648.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2649.             ΓöéRemarks                       ΓöéNone                          Γöé
  2650.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2651.  
  2652.      Highlight text color 
  2653.  
  2654.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2655.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTFOREGROUND       Γöé
  2656.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2657.             ΓöéPresentation Parameter        ΓöéPP_HILITEFOREGROUNDCOLOR      Γöé
  2658.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2659.             ΓöéSystem Default                ΓöéSYSCLR_MENUTEXT               Γöé
  2660.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2661.             ΓöéRemarks                       ΓöéNone                          Γöé
  2662.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2663.  
  2664.  
  2665. ΓòÉΓòÉΓòÉ <hidden> Entry Field : CCT_ENTRYFIELD ΓòÉΓòÉΓòÉ
  2666.  
  2667.      Color Usage Description 
  2668.  
  2669.            Background 
  2670.            Text 
  2671.            Read-only text 
  2672.            Disabled background 
  2673.            Disabled text 
  2674.            Disabled read-only text 
  2675.            Highlight background 
  2676.            Highlight text 
  2677.            Light border 
  2678.            Dark border 
  2679.            Light border 2 
  2680.            Dark border 2 
  2681.  
  2682.      Background color 
  2683.  
  2684.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2685.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  2686.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2687.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2688.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2689.             ΓöéSystem Default                ΓöéSYSCLR_ENTRYFIELD             Γöé
  2690.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2691.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  2692.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2693.  
  2694.      Text color 
  2695.  
  2696.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2697.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  2698.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2699.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  2700.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2701.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  2702.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2703.             ΓöéRemarks                       ΓöéPure RGB color.               Γöé
  2704.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2705.  
  2706.      Read-only text color 
  2707.  
  2708.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2709.             ΓöéControl Color Index           ΓöéCCI_FOREGROUNDREADONLY        Γöé
  2710.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2711.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  2712.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2713.             ΓöéSystem Default                ΓöéSYSCLR_OUTPUTTEXT             Γöé
  2714.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2715.             ΓöéRemarks                       ΓöéPure RGB color.               Γöé
  2716.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2717.  
  2718.      Disabled background color 
  2719.  
  2720.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2721.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUND        Γöé
  2722.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2723.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDBACKGROUNDCOLOR    Γöé
  2724.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2725.             ΓöéSystem Default                ΓöéSYSCLR_ENTRYFIELD             Γöé
  2726.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2727.             ΓöéRemarks                       ΓöéNot inherited                 Γöé
  2728.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2729.  
  2730.      Disabled text color 
  2731.  
  2732.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2733.             ΓöéControl Color Index           ΓöéCCI_DISABLEDFOREGROUND        Γöé
  2734.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2735.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDFOREGROUNDCOLOR    Γöé
  2736.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2737.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  2738.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2739.             ΓöéRemarks                       ΓöéPure RGB color.               Γöé
  2740.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2741.  
  2742.      Disabled read-only text color 
  2743.  
  2744.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2745.             ΓöéControl Color Index           ΓöéCCI_DISABLEDFOREGROUNDREADONLYΓöé
  2746.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2747.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDFOREGROUNDCOLOR    Γöé
  2748.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2749.             ΓöéSystem Default                ΓöéSYSCLR_OUTPUTTEXT             Γöé
  2750.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2751.             ΓöéRemarks                       ΓöéPure RGB color.               Γöé
  2752.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2753.  
  2754.      Highlight background color 
  2755.  
  2756.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2757.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTBACKGROUND       Γöé
  2758.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2759.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  2760.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2761.             ΓöéSystem Default                ΓöéSYSCLR_HILITEBACKGROUND       Γöé
  2762.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2763.             ΓöéRemarks                       ΓöéNone                          Γöé
  2764.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2765.  
  2766.      Highlight text color 
  2767.  
  2768.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2769.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTFOREGROUND       Γöé
  2770.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2771.             ΓöéPresentation Parameter        ΓöéPP_HILITEFOREGROUNDCOLOR      Γöé
  2772.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2773.             ΓöéSystem Default                ΓöéSYSCLR_HILITEFOREGROUND       Γöé
  2774.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2775.             ΓöéRemarks                       ΓöéPure RGB color.               Γöé
  2776.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2777.  
  2778.      Light border color 
  2779.  
  2780.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2781.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  2782.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2783.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  2784.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2785.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  2786.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2787.             ΓöéRemarks                       ΓöéNone                          Γöé
  2788.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2789.  
  2790.      Dark border color 
  2791.  
  2792.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2793.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  2794.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2795.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  2796.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2797.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  2798.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2799.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  2800.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  2801.             Γöé                              Γöéis 0x00808080.                Γöé
  2802.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2803.  
  2804.      Light border 2 color 
  2805.  
  2806.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2807.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  2808.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2809.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  2810.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2811.             ΓöéSystem Default                ΓöéRGB_LIGHTGRAY                 Γöé
  2812.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2813.             ΓöéRemarks                       ΓöéRGB_LIGHTGRAY not defined in  Γöé
  2814.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  2815.             Γöé                              Γöéis 0x00cccccc.                Γöé
  2816.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2817.  
  2818.      Dark border 2 color 
  2819.  
  2820.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2821.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  2822.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2823.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  2824.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2825.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  2826.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2827.             ΓöéRemarks                       ΓöéNone                          Γöé
  2828.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2829.  
  2830.  
  2831. ΓòÉΓòÉΓòÉ <hidden> List Box : CCT_LISTBOX ΓòÉΓòÉΓòÉ
  2832.  
  2833.      Color Usage Description 
  2834.  
  2835.            Background 
  2836.            Text 
  2837.            Disabled background 
  2838.            Disabled text 
  2839.            Highlight background 
  2840.            Highlight text 
  2841.            Light border 
  2842.            Dark border 
  2843.            Light border 2 
  2844.            Dark border 2 
  2845.            Corner between scroll bars 
  2846.  
  2847.      Background color 
  2848.  
  2849.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2850.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  2851.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2852.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  2853.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2854.             ΓöéSystem Default                ΓöéSYSCLR_ENTRYFIELD             Γöé
  2855.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2856.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  2857.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2858.  
  2859.      Text color 
  2860.  
  2861.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2862.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  2863.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2864.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  2865.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2866.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  2867.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2868.             ΓöéRemarks                       ΓöéNone                          Γöé
  2869.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2870.  
  2871.      Disabled background color 
  2872.  
  2873.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2874.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUND        Γöé
  2875.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2876.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDBACKGROUNDCOLOR    Γöé
  2877.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2878.             ΓöéSystem Default                ΓöéSYSCLR_ENTRYFIELD             Γöé
  2879.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2880.             ΓöéRemarks                       ΓöéNot inherited                 Γöé
  2881.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2882.  
  2883.      Disabled text color 
  2884.  
  2885.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2886.             ΓöéControl Color Index           ΓöéCCI_DISABLEDFOREGROUND        Γöé
  2887.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2888.             ΓöéPresentation Parameter        ΓöéPP_DISABLEDFOREGROUNDCOLOR    Γöé
  2889.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2890.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  2891.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2892.             ΓöéRemarks                       ΓöéNone                          Γöé
  2893.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2894.  
  2895.      Highlight background color 
  2896.  
  2897.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2898.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTBACKGROUND       Γöé
  2899.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2900.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  2901.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2902.             ΓöéSystem Default                ΓöéSYSCLR_HILITEBACKGROUND       Γöé
  2903.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2904.             ΓöéRemarks                       ΓöéNone                          Γöé
  2905.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2906.  
  2907.      Highlight text color 
  2908.  
  2909.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2910.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTFOREGROUND       Γöé
  2911.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2912.             ΓöéPresentation Parameter        ΓöéPP_HILITEFOREGROUNDCOLOR      Γöé
  2913.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2914.             ΓöéSystem Default                ΓöéSYSCLR_HILITEFOREGROUND       Γöé
  2915.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2916.             ΓöéRemarks                       ΓöéPure RGB color.               Γöé
  2917.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2918.  
  2919.      Light border color 
  2920.  
  2921.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2922.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  2923.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2924.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  2925.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2926.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  2927.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2928.             ΓöéRemarks                       ΓöéNone                          Γöé
  2929.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2930.  
  2931.      Dark border color 
  2932.  
  2933.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2934.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  2935.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2936.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  2937.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2938.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  2939.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2940.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  2941.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  2942.             Γöé                              Γöéis 0x00808080.                Γöé
  2943.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2944.  
  2945.      Light border 2 color 
  2946.  
  2947.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2948.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  2949.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2950.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  2951.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2952.             ΓöéSystem Default                ΓöéRGB_LIGHTGRAY                 Γöé
  2953.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2954.             ΓöéRemarks                       ΓöéRGB_LIGHTGRAY not defined in  Γöé
  2955.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  2956.             Γöé                              Γöéis 0x00cccccc.                Γöé
  2957.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2958.  
  2959.      Dark border 2 color 
  2960.  
  2961.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2962.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  2963.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2964.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  2965.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2966.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  2967.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2968.             ΓöéRemarks                       ΓöéNone                          Γöé
  2969.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2970.  
  2971.      Corner between scroll bars color 
  2972.  
  2973.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  2974.             ΓöéControl Color Index           ΓöéCCI_FIELDBACKGROUND           Γöé
  2975.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2976.             ΓöéPresentation Parameter        ΓöéPP_FIELDBACKGROUNDCOLOR       Γöé
  2977.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2978.             ΓöéSystem Default                ΓöéSYSCLR_FIELDBACKGROUND        Γöé
  2979.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  2980.             ΓöéRemarks                       ΓöéNone                          Γöé
  2981.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  2982.  
  2983.  
  2984. ΓòÉΓòÉΓòÉ <hidden> Combo Box : CCT_COMBOBOX ΓòÉΓòÉΓòÉ
  2985.  
  2986.      Color Usage Description 
  2987.  
  2988.            Background 
  2989.            Text 
  2990.            Light border 
  2991.            Dark border 
  2992.            Light border 2 
  2993.            Dark border 2 
  2994.            Button background 
  2995.            Button light border 
  2996.            Button dark border 
  2997.            Arrow 
  2998.  
  2999.      Background color 
  3000.  
  3001.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3002.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  3003.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3004.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  3005.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3006.             ΓöéSystem Default                ΓöéSYSCLR_ENTRYFIELD             Γöé
  3007.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3008.             ΓöéRemarks                       ΓöéNone                          Γöé
  3009.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3010.  
  3011.      Text color 
  3012.  
  3013.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3014.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  3015.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3016.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  3017.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3018.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  3019.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3020.             ΓöéRemarks                       ΓöéNot inherited                 Γöé
  3021.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3022.  
  3023.      Light border color 
  3024.  
  3025.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3026.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  3027.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3028.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  3029.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3030.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  3031.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3032.             ΓöéRemarks                       ΓöéNone                          Γöé
  3033.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3034.  
  3035.      Dark border color 
  3036.  
  3037.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3038.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  3039.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3040.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  3041.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3042.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3043.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3044.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3045.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3046.             Γöé                              Γöéis 0x00808080.                Γöé
  3047.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3048.  
  3049.      Light border 2 color 
  3050.  
  3051.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3052.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  3053.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3054.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  3055.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3056.             ΓöéSystem Default                ΓöéRGB_LIGHTGRAY                 Γöé
  3057.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3058.             ΓöéRemarks                       ΓöéRGB_LIGHTGRAY not defined in  Γöé
  3059.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3060.             Γöé                              Γöéis 0x00cccccc.                Γöé
  3061.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3062.  
  3063.      Dark border 2 color 
  3064.  
  3065.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3066.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  3067.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3068.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  3069.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3070.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3071.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3072.             ΓöéRemarks                       ΓöéNone                          Γöé
  3073.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3074.  
  3075.      Button background color 
  3076.  
  3077.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3078.             ΓöéControl Color Index           ΓöéCCI_BUTTONBACKGROUND          Γöé
  3079.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3080.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBACKGROUNDCOLOR      Γöé
  3081.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3082.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  3083.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3084.             ΓöéRemarks                       ΓöéNone                          Γöé
  3085.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3086.  
  3087.      Button light border color 
  3088.  
  3089.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3090.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERLIGHT         Γöé
  3091.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3092.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERLIGHTCOLOR     Γöé
  3093.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3094.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONLIGHT            Γöé
  3095.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3096.             ΓöéRemarks                       ΓöéNone                          Γöé
  3097.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3098.  
  3099.      Button dark border color 
  3100.  
  3101.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3102.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERDARK          Γöé
  3103.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3104.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERDARKCOLOR      Γöé
  3105.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3106.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDARK             Γöé
  3107.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3108.             ΓöéRemarks                       ΓöéNone                          Γöé
  3109.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3110.  
  3111.      Arrow color 
  3112.  
  3113.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3114.             ΓöéControl Color Index           ΓöéCCI_ARROW                     Γöé
  3115.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3116.             ΓöéPresentation Parameter        ΓöéPP_ARROWCOLOR                 Γöé
  3117.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3118.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3119.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3120.             ΓöéRemarks                       ΓöéNone                          Γöé
  3121.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3122.  
  3123.  
  3124. ΓòÉΓòÉΓòÉ <hidden> Title Bar : CCT_TITLEBAR ΓòÉΓòÉΓòÉ
  3125.  
  3126.      Color Usage Description 
  3127.  
  3128.            Inactive text 
  3129.            Inactive background 
  3130.            Inactive text background 
  3131.            Active text 
  3132.            Active background 
  3133.            Active text background 
  3134.            Light border 
  3135.            Dark border 
  3136.  
  3137.      Inactive text color 
  3138.  
  3139.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3140.             ΓöéControl Color Index           ΓöéCCI_INACTIVEFOREGROUND        Γöé
  3141.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3142.             ΓöéPresentation Parameter        ΓöéPP_INACTIVETEXTFGNDGROUNDCOLORΓöé
  3143.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3144.             ΓöéSystem Default                ΓöéSYSCLR_INACTIVETITLETEXT      Γöé
  3145.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3146.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3147.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3148.  
  3149.      Inactive background color 
  3150.  
  3151.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3152.             ΓöéControl Color Index           ΓöéCCI_INACTIVEBACKGROUND        Γöé
  3153.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3154.             ΓöéPresentation Parameter        ΓöéPP_INACTIVECOLOR              Γöé
  3155.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3156.             ΓöéSystem Default                ΓöéSYSCLR_INACTIVETITLE          Γöé
  3157.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3158.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3159.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3160.  
  3161.      Inactive text background color 
  3162.  
  3163.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3164.             ΓöéControl Color Index           ΓöéCCI_INACTIVEBACKGROUNDTEXT    Γöé
  3165.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3166.             ΓöéPresentation Parameter        ΓöéPP_INACTIVETEXTBGNDCOLOR      Γöé
  3167.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3168.             ΓöéSystem Default                ΓöéSYSCLR_INACTIVETITLETEXT      Γöé
  3169.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3170.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3171.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3172.  
  3173.      Active text color 
  3174.  
  3175.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3176.             ΓöéControl Color Index           ΓöéCCI_ACTIVEFOREGROUND          Γöé
  3177.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3178.             ΓöéPresentation Parameter        ΓöéPP_ACTIVETEXTFGNDCOLOR        Γöé
  3179.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3180.             ΓöéSystem Default                ΓöéSYSCLR_ACTIVETITLETEXT        Γöé
  3181.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3182.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3183.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3184.  
  3185.      Active background color 
  3186.  
  3187.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3188.             ΓöéControl Color Index           ΓöéCCI_ACTIVEBACKGROUND          Γöé
  3189.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3190.             ΓöéPresentation Parameter        ΓöéPP_ACTIVECOLOR                Γöé
  3191.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3192.             ΓöéSystem Default                ΓöéSYSCLR_ACTIVETITLE            Γöé
  3193.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3194.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3195.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3196.  
  3197.      Active text background color 
  3198.  
  3199.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3200.             ΓöéControl Color Index           ΓöéCCI_ACTIVEBACKGROUNDTEXT      Γöé
  3201.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3202.             ΓöéPresentation Parameter        ΓöéPP_ACTIVETEXTBGNDCOLOR        Γöé
  3203.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3204.             ΓöéSystem Default                ΓöéSYSCLR_ACTIVETITLETEXTBGND    Γöé
  3205.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3206.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3207.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3208.  
  3209.      Light border color 
  3210.  
  3211.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3212.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  3213.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3214.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  3215.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3216.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  3217.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3218.             ΓöéRemarks                       ΓöéNone                          Γöé
  3219.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3220.  
  3221.      Dark border color 
  3222.  
  3223.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3224.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  3225.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3226.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  3227.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3228.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3229.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3230.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3231.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3232.             Γöé                              Γöéis 0x00808080.                Γöé
  3233.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3234.  
  3235.  
  3236. ΓòÉΓòÉΓòÉ <hidden> Menu : CCT_MENU ΓòÉΓòÉΓòÉ
  3237.  
  3238.      Color Usage Description 
  3239.  
  3240.            Background 
  3241.            Text 
  3242.            Disabled background 
  3243.            Disabled text 
  3244.            Highlight background 
  3245.            Highlight text 
  3246.            Light border 
  3247.            Dark border 
  3248.            Light border 2 
  3249.            Dark border 2 
  3250.            Arrow 
  3251.            Light arrow border 
  3252.            Dark arrow border 
  3253.            Light check mark 
  3254.            Middle check mark 
  3255.            Dark check mark 
  3256.  
  3257.      Background color 
  3258.  
  3259.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3260.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  3261.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3262.             ΓöéPresentation Parameter        ΓöéPP_MENUBACKGROUNDCOLOR        Γöé
  3263.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3264.             ΓöéSystem Default                ΓöéSYSCLR_MENU                   Γöé
  3265.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3266.             ΓöéRemarks                       ΓöéNone                          Γöé
  3267.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3268.  
  3269.      Text color 
  3270.  
  3271.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3272.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  3273.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3274.             ΓöéPresentation Parameter        ΓöéPP_MENUFOREGROUNDCOLOR        Γöé
  3275.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3276.             ΓöéSystem Default                ΓöéSYSCLR_MENUTEXT               Γöé
  3277.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3278.             ΓöéRemarks                       ΓöéPure RGB color.               Γöé
  3279.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3280.  
  3281.      Disabled background color 
  3282.  
  3283.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3284.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUND        Γöé
  3285.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3286.             ΓöéPresentation Parameter        ΓöéPP_MENUDISABLEDBGNDCOLOR      Γöé
  3287.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3288.             ΓöéSystem Default                ΓöéSYSCLR_MENU                   Γöé
  3289.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3290.             ΓöéRemarks                       ΓöéNone                          Γöé
  3291.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3292.  
  3293.      Disabled text color 
  3294.  
  3295.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3296.             ΓöéControl Color Index           ΓöéCCI_DISABLEDFOREGROUND        Γöé
  3297.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3298.             ΓöéPresentation Parameter        ΓöéPP_MENUDISABLEDFGNDCOLOR      Γöé
  3299.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3300.             ΓöéSystem Default                ΓöéSYSCLR_MENUDISABLEDTEXT       Γöé
  3301.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3302.             ΓöéRemarks                       ΓöéPure RGB color.               Γöé
  3303.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3304.  
  3305.      Highlight background color 
  3306.  
  3307.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3308.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTBACKGROUND       Γöé
  3309.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3310.             ΓöéPresentation Parameter        ΓöéPP_MENUHILITEBGNDCOLOR        Γöé
  3311.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3312.             ΓöéSystem Default                ΓöéSYSCLR_MENUHILITEBGND         Γöé
  3313.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3314.             ΓöéRemarks                       ΓöéNone                          Γöé
  3315.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3316.  
  3317.      Highlight text color 
  3318.  
  3319.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3320.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTFOREGROUND       Γöé
  3321.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3322.             ΓöéPresentation Parameter        ΓöéPP_MENUHILITEFGNDCOLOR        Γöé
  3323.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3324.             ΓöéSystem Default                ΓöéSYSCLR_MENUHILITE             Γöé
  3325.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3326.             ΓöéRemarks                       ΓöéPure RGB color.               Γöé
  3327.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3328.  
  3329.      Light border color 
  3330.  
  3331.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3332.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  3333.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3334.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  3335.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3336.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  3337.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3338.             ΓöéRemarks                       ΓöéNone                          Γöé
  3339.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3340.  
  3341.      Dark border color 
  3342.  
  3343.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3344.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  3345.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3346.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  3347.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3348.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3349.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3350.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3351.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3352.             Γöé                              Γöéis 0x00808080.                Γöé
  3353.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3354.  
  3355.      Light border 2 color 
  3356.  
  3357.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3358.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  3359.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3360.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  3361.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3362.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3363.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3364.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3365.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3366.             Γöé                              Γöéis 0x00808080.                Γöé
  3367.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3368.  
  3369.      Dark border 2 color 
  3370.  
  3371.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3372.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  3373.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3374.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  3375.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3376.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3377.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3378.             ΓöéRemarks                       ΓöéNone                          Γöé
  3379.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3380.  
  3381.      Arrow color 
  3382.  
  3383.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3384.             ΓöéControl Color Index           ΓöéCCI_ARROW                     Γöé
  3385.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3386.             ΓöéPresentation Parameter        ΓöéPP_ARROWCOLOR                 Γöé
  3387.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3388.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3389.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3390.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3391.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3392.             Γöé                              Γöéis 0x00808080.                Γöé
  3393.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3394.  
  3395.      Light arrow border color 
  3396.  
  3397.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3398.             ΓöéControl Color Index           ΓöéCCI_ARROWBORDERLIGHT          Γöé
  3399.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3400.             ΓöéPresentation Parameter        ΓöéPP_ARROWBORDERLIGHTCOLOR      Γöé
  3401.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3402.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  3403.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3404.             ΓöéRemarks                       ΓöéNone                          Γöé
  3405.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3406.  
  3407.      Dark arrow border color 
  3408.  
  3409.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3410.             ΓöéControl Color Index           ΓöéCCI_ARROWBORDERDARK           Γöé
  3411.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3412.             ΓöéPresentation Parameter        ΓöéPP_ARROWBORDERDARKCOLOR       Γöé
  3413.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3414.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3415.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3416.             ΓöéRemarks                       ΓöéNone                          Γöé
  3417.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3418.  
  3419.      Light check mark color 
  3420.  
  3421.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3422.             ΓöéControl Color Index           ΓöéCCI_CHECKLIGHT                Γöé
  3423.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3424.             ΓöéPresentation Parameter        ΓöéPP_CHECKLIGHTCOLOR            Γöé
  3425.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3426.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  3427.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3428.             ΓöéRemarks                       ΓöéNone                          Γöé
  3429.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3430.  
  3431.      Middle check mark color 
  3432.  
  3433.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3434.             ΓöéControl Color Index           ΓöéCCI_CHECKMIDDLE               Γöé
  3435.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3436.             ΓöéPresentation Parameter        ΓöéPP_CHECKMIDDLECOLOR           Γöé
  3437.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3438.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3439.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3440.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3441.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3442.             Γöé                              Γöéis 0x00808080.                Γöé
  3443.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3444.  
  3445.      Dark check mark color 
  3446.  
  3447.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3448.             ΓöéControl Color Index           ΓöéCCI_CHECKDARK                 Γöé
  3449.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3450.             ΓöéPresentation Parameter        ΓöéPP_CHECKDARKCOLOR             Γöé
  3451.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3452.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3453.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3454.             ΓöéRemarks                       ΓöéNone                          Γöé
  3455.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3456.  
  3457.  
  3458. ΓòÉΓòÉΓòÉ <hidden> Frame : CCT_FRAME ΓòÉΓòÉΓòÉ
  3459.  
  3460.      Color Usage Description 
  3461.  
  3462.            Background 
  3463.            Dialog background 
  3464.            Inactive size border 
  3465.            Inactive dialog border 
  3466.            Active size border 
  3467.            Active dialog border 
  3468.            Thin border 
  3469.            Light border 
  3470.            Dark border 
  3471.            Light border 2 
  3472.            Dark border 2 
  3473.            Icon text 
  3474.            Icon text background 
  3475.            Icon text background (on desktop) 
  3476.            Icon text highlight 
  3477.            Icon text background highlight 
  3478.  
  3479.      Background color 
  3480.  
  3481.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3482.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  3483.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3484.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  3485.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3486.             ΓöéSystem Default                ΓöéSYSCLR_WINDOW                 Γöé
  3487.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3488.             ΓöéRemarks                       ΓöéNone                          Γöé
  3489.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3490.  
  3491.      Dialog background color 
  3492.  
  3493.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3494.             ΓöéControl Color Index           ΓöéCCI_BACKGROUNDDIALOG          Γöé
  3495.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3496.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  3497.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3498.             ΓöéSystem Default                ΓöéSYSCLR_DIALOGBACKGROUND       Γöé
  3499.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3500.             ΓöéRemarks                       ΓöéNone                          Γöé
  3501.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3502.  
  3503.      Inactive size border color 
  3504.  
  3505.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3506.             ΓöéControl Color Index           ΓöéCCI_INACTIVEFOREGROUND        Γöé
  3507.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3508.             ΓöéPresentation Parameter        ΓöéPP_INACTIVECOLOR              Γöé
  3509.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3510.             ΓöéSystem Default                ΓöéSYSCLR_INACTIVEBORDER         Γöé
  3511.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3512.             ΓöéRemarks                       ΓöéNone                          Γöé
  3513.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3514.  
  3515.      Inactive dialog border color 
  3516.  
  3517.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3518.             ΓöéControl Color Index           ΓöéCCI_INACTIVEFOREGROUNDDIALOG  Γöé
  3519.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3520.             ΓöéPresentation Parameter        ΓöéPP_INACTIVECOLOR              Γöé
  3521.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3522.             ΓöéSystem Default                ΓöéSYSCLR_INACTIVEBORDER         Γöé
  3523.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3524.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3525.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3526.  
  3527.      Active size border 
  3528.  
  3529.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3530.             ΓöéControl Color Index           ΓöéCCI_ACTIVEFOREGROUND          Γöé
  3531.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3532.             ΓöéPresentation Parameter        ΓöéPP_ACTIVECOLOR                Γöé
  3533.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3534.             ΓöéSystem Default                ΓöéSYSCLR_ACTIVEBORDER           Γöé
  3535.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3536.             ΓöéRemarks                       ΓöéNone                          Γöé
  3537.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3538.  
  3539.      Active dialog border 
  3540.  
  3541.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3542.             ΓöéControl Color Index           ΓöéCCI_ACTIVEFOREGROUNDDIALOG    Γöé
  3543.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3544.             ΓöéPresentation Parameter        ΓöéPP_ACTIVECOLOR                Γöé
  3545.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3546.             ΓöéSystem Default                ΓöéSYSCLR_ACTIVEBORDER           Γöé
  3547.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3548.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3549.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3550.  
  3551.      Thin border color 
  3552.  
  3553.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3554.             ΓöéControl Color Index           ΓöéCCI_BORDER                    Γöé
  3555.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3556.             ΓöéPresentation Parameter        ΓöéPP_BORDERCOLOR                Γöé
  3557.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3558.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWFRAME            Γöé
  3559.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3560.             ΓöéRemarks                       ΓöéNone                          Γöé
  3561.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3562.  
  3563.      Light border color 
  3564.  
  3565.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3566.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  3567.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3568.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  3569.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3570.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  3571.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3572.             ΓöéRemarks                       ΓöéNone                          Γöé
  3573.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3574.  
  3575.      Dark border color 
  3576.  
  3577.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3578.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  3579.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3580.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  3581.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3582.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3583.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3584.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3585.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3586.             Γöé                              Γöéis 0x00808080.                Γöé
  3587.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3588.  
  3589.      Light border 2 color 
  3590.  
  3591.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3592.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  3593.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3594.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  3595.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3596.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3597.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3598.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3599.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3600.             Γöé                              Γöéis 0x00808080.                Γöé
  3601.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3602.  
  3603.      Dark border 2 color 
  3604.  
  3605.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3606.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  3607.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3608.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  3609.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3610.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3611.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3612.             ΓöéRemarks                       ΓöéNone                          Γöé
  3613.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3614.  
  3615.      Icon text color 
  3616.  
  3617.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3618.             ΓöéControl Color Index           ΓöéCCI_ICONFOREGROUND            Γöé
  3619.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3620.             ΓöéPresentation Parameter        ΓöéPP_INACTIVETEXTFGNDCOLOR      Γöé
  3621.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3622.             ΓöéSystem Default                ΓöéSYSCLR_ICONTEXT               Γöé
  3623.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3624.             ΓöéRemarks                       ΓöéNot inherited                 Γöé
  3625.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3626.  
  3627.      Icon text background color 
  3628.  
  3629.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3630.             ΓöéControl Color Index           ΓöéCCI_ICONBACKGROUND            Γöé
  3631.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3632.             ΓöéPresentation Parameter        ΓöéPP_INACTIVETEXTBGNDCOLOR      Γöé
  3633.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3634.             ΓöéSystem Default                ΓöéSYSCLR_APPWORKSPACE           Γöé
  3635.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3636.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3637.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3638.  
  3639.      Icon text background color (on desktop) 
  3640.  
  3641.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3642.             ΓöéControl Color Index           ΓöéCCI_ICONBACKGROUNDDESKTOP     Γöé
  3643.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3644.             ΓöéPresentation Parameter        ΓöéPP_INACTIVETEXTBGNDCOLOR      Γöé
  3645.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3646.             ΓöéSystem Default                ΓöéSYSCLR_BACKGROUND             Γöé
  3647.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3648.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3649.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3650.  
  3651.      Icon text highlight color 
  3652.  
  3653.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3654.             ΓöéControl Color Index           ΓöéCCI_ICONHILITEFOREGROUND      Γöé
  3655.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3656.             ΓöéPresentation Parameter        ΓöéPP_HILITEFOREGROUNDCOLOR      Γöé
  3657.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3658.             ΓöéSystem Default                ΓöéSYSCLR_HILITEFOREGROUND       Γöé
  3659.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3660.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3661.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3662.  
  3663.      Icon text background highlight color 
  3664.  
  3665.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3666.             ΓöéControl Color Index           ΓöéCCI_ICONHILITEBACKGROUND      Γöé
  3667.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3668.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  3669.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3670.             ΓöéSystem Default                ΓöéSYSCLR_HILITEBACKGROUND       Γöé
  3671.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3672.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3673.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3674.  
  3675.  
  3676. ΓòÉΓòÉΓòÉ <hidden> Scroll Bar : CCT_SCROLLBAR ΓòÉΓòÉΓòÉ
  3677.  
  3678.      Color Usage Description 
  3679.  
  3680.            Background 
  3681.            Disabled background 
  3682.            Border 
  3683.            Light border 
  3684.            Dark border 
  3685.            Light border 2 
  3686.            Dark border 2 
  3687.            Button background 
  3688.            Button light border 
  3689.            Button dark border 
  3690.            Arrow 
  3691.  
  3692.      Background color 
  3693.  
  3694.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3695.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  3696.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3697.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  3698.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3699.             ΓöéSystem Default                ΓöéSYSCLR_SCROLLBAR              Γöé
  3700.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3701.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3702.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3703.  
  3704.      Disabled background color 
  3705.  
  3706.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3707.             ΓöéControl Color Index           ΓöéCCI_DISABLEDBACKGROUND        Γöé
  3708.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3709.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  3710.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3711.             ΓöéSystem Default                ΓöéSYSCLR_FIELDBACKGROUND        Γöé
  3712.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3713.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3714.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3715.  
  3716.      Border color 
  3717.  
  3718.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3719.             ΓöéControl Color Index           ΓöéCCI_BORDER                    Γöé
  3720.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3721.             ΓöéPresentation Parameter        ΓöéPP_BORDERCOLOR                Γöé
  3722.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3723.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWFRAME            Γöé
  3724.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3725.             ΓöéRemarks                       ΓöéNone                          Γöé
  3726.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3727.  
  3728.      Light border color 
  3729.  
  3730.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3731.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  3732.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3733.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  3734.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3735.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  3736.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3737.             ΓöéRemarks                       ΓöéNone                          Γöé
  3738.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3739.  
  3740.      Dark border color 
  3741.  
  3742.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3743.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  3744.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3745.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  3746.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3747.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3748.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3749.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3750.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3751.             Γöé                              Γöéis 0x00808080.                Γöé
  3752.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3753.  
  3754.      Light border 2 color 
  3755.  
  3756.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3757.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  3758.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3759.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  3760.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3761.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  3762.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3763.             ΓöéRemarks                       ΓöéNone                          Γöé
  3764.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3765.  
  3766.      Dark border 2 color 
  3767.  
  3768.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3769.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  3770.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3771.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  3772.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3773.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3774.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3775.             ΓöéRemarks                       ΓöéNone                          Γöé
  3776.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3777.  
  3778.      Button background color 
  3779.  
  3780.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3781.             ΓöéControl Color Index           ΓöéCCI_BUTTONBACKGROUND          Γöé
  3782.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3783.             ΓöéPresentation Parameter        ΓöéPP_HILITEFOREGROUNDCOLOR      Γöé
  3784.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3785.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  3786.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3787.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3788.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3789.  
  3790.      Button light border color 
  3791.  
  3792.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3793.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERLIGHT         Γöé
  3794.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3795.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERLIGHTCOLOR     Γöé
  3796.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3797.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONLIGHT            Γöé
  3798.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3799.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3800.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3801.  
  3802.      Button dark border color 
  3803.  
  3804.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3805.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERDARK          Γöé
  3806.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3807.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERDARKCOLOR      Γöé
  3808.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3809.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDARK             Γöé
  3810.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3811.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  3812.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3813.  
  3814.      Arrow color 
  3815.  
  3816.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3817.             ΓöéControl Color Index           ΓöéCCI_ARROW                     Γöé
  3818.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3819.             ΓöéPresentation Parameter        ΓöéPP_ARROWCOLOR                 Γöé
  3820.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3821.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3822.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3823.             ΓöéRemarks                       ΓöéNone                          Γöé
  3824.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3825.  
  3826.  
  3827. ΓòÉΓòÉΓòÉ <hidden> Spin Button : CCT_SPINBUTTON ΓòÉΓòÉΓòÉ
  3828.  
  3829.      Color Usage Description 
  3830.  
  3831.            Interior border 
  3832.            Light border 
  3833.            Dark border 
  3834.            Light border 2 
  3835.            Dark border 2 
  3836.            Button background 
  3837.            Button light border 
  3838.            Button dark border 
  3839.            Arrow 
  3840.  
  3841.      Interior border color 
  3842.  
  3843.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3844.             ΓöéControl Color Index           ΓöéCCI_BORDER                    Γöé
  3845.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3846.             ΓöéPresentation Parameter        ΓöéPP_BORDERCOLOR                Γöé
  3847.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3848.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3849.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3850.             ΓöéRemarks                       ΓöéNone                          Γöé
  3851.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3852.  
  3853.      Light border color 
  3854.  
  3855.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3856.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  3857.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3858.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  3859.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3860.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  3861.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3862.             ΓöéRemarks                       ΓöéNone                          Γöé
  3863.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3864.  
  3865.      Dark border color 
  3866.  
  3867.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3868.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  3869.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3870.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  3871.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3872.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  3873.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3874.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  3875.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3876.             Γöé                              Γöéis 0x00808080.                Γöé
  3877.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3878.  
  3879.      Light border 2 color 
  3880.  
  3881.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3882.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  3883.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3884.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  3885.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3886.             ΓöéSystem Default                ΓöéRGB_LIGHTGRAY                 Γöé
  3887.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3888.             ΓöéRemarks                       ΓöéRGB_LIGHTGRAY not defined in  Γöé
  3889.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  3890.             Γöé                              Γöéis 0x00cccccc.                Γöé
  3891.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3892.  
  3893.      Dark border 2 color 
  3894.  
  3895.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3896.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  3897.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3898.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  3899.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3900.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3901.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3902.             ΓöéRemarks                       ΓöéNone                          Γöé
  3903.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3904.  
  3905.      Button background color 
  3906.  
  3907.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3908.             ΓöéControl Color Index           ΓöéCCI_BUTTONBACKGROUND          Γöé
  3909.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3910.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBACKGROUNDCOLOR      Γöé
  3911.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3912.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  3913.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3914.             ΓöéRemarks                       ΓöéNone                          Γöé
  3915.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3916.  
  3917.      Button light border color 
  3918.  
  3919.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3920.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERLIGHT         Γöé
  3921.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3922.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERLIGHTCOLOR     Γöé
  3923.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3924.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONLIGHT            Γöé
  3925.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3926.             ΓöéRemarks                       ΓöéNone                          Γöé
  3927.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3928.  
  3929.      Button dark border color 
  3930.  
  3931.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3932.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERDARK          Γöé
  3933.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3934.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERDARKCOLOR      Γöé
  3935.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3936.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDARK             Γöé
  3937.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3938.             ΓöéRemarks                       ΓöéNone                          Γöé
  3939.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3940.  
  3941.      Arrow color 
  3942.  
  3943.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3944.             ΓöéControl Color Index           ΓöéCCI_ARROW                     Γöé
  3945.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3946.             ΓöéPresentation Parameter        ΓöéPP_ARROWCOLOR                 Γöé
  3947.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3948.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  3949.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3950.             ΓöéRemarks                       ΓöéNone                          Γöé
  3951.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3952.  
  3953.  
  3954. ΓòÉΓòÉΓòÉ <hidden> Slider : CCT_SLIDER ΓòÉΓòÉΓòÉ
  3955.  
  3956.      Color Usage Description 
  3957.  
  3958.            Background 
  3959.            Text / detent 
  3960.            Shaft ribbon color 
  3961.            Focus highlight 
  3962.            Light border 
  3963.            Dark border 
  3964.            Light tick mark 
  3965.            Dark tick mark 
  3966.            Button background 
  3967.            Button light border 
  3968.            Button dark border 
  3969.            Arrow 
  3970.  
  3971.      Text / detent 
  3972.  
  3973.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3974.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  3975.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3976.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  3977.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3978.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  3979.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3980.             ΓöéRemarks                       ΓöéNone                          Γöé
  3981.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3982.  
  3983.      Shaft ribbon color 
  3984.  
  3985.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3986.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  3987.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3988.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  3989.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3990.             ΓöéSystem Default                Γöé0x000000AA                    Γöé
  3991.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  3992.             ΓöéRemarks                       ΓöéNone                          Γöé
  3993.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  3994.  
  3995.      Focus highlight color 
  3996.  
  3997.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  3998.             ΓöéControl Color Index           ΓöéCCI_BORDER                    Γöé
  3999.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4000.             ΓöéPresentation Parameter        ΓöéPP_BORDERCOLOR                Γöé
  4001.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4002.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4003.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4004.             ΓöéRemarks                       ΓöéNone                          Γöé
  4005.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4006.  
  4007.      Light border color 
  4008.  
  4009.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4010.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  4011.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4012.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  4013.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4014.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  4015.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4016.             ΓöéRemarks                       ΓöéNone                          Γöé
  4017.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4018.  
  4019.      Dark border color 
  4020.  
  4021.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4022.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  4023.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4024.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  4025.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4026.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  4027.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4028.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  4029.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  4030.             Γöé                              Γöéis 0x00808080.                Γöé
  4031.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4032.  
  4033.      Light tick mark color 
  4034.  
  4035.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4036.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  4037.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4038.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  4039.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4040.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  4041.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4042.             ΓöéRemarks                       ΓöéNone                          Γöé
  4043.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4044.  
  4045.      Dark tick mark color 
  4046.  
  4047.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4048.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  4049.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4050.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  4051.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4052.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  4053.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4054.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  4055.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  4056.             Γöé                              Γöéis 0x00808080.                Γöé
  4057.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4058.  
  4059.      Button background color 
  4060.  
  4061.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4062.             ΓöéControl Color Index           ΓöéCCI_BUTTONBACKGROUND          Γöé
  4063.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4064.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBACKGROUNDCOLOR      Γöé
  4065.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4066.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  4067.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4068.             ΓöéRemarks                       ΓöéNone                          Γöé
  4069.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4070.  
  4071.      Button light border color 
  4072.  
  4073.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4074.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERLIGHT         Γöé
  4075.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4076.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERLIGHTCOLOR     Γöé
  4077.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4078.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONLIGHT            Γöé
  4079.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4080.             ΓöéRemarks                       ΓöéNone                          Γöé
  4081.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4082.  
  4083.      Button dark border color 
  4084.  
  4085.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4086.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERDARK          Γöé
  4087.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4088.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERDARKCOLOR      Γöé
  4089.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4090.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDARK             Γöé
  4091.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4092.             ΓöéRemarks                       ΓöéNone                          Γöé
  4093.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4094.  
  4095.      Arrow color 
  4096.  
  4097.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4098.             ΓöéControl Color Index           ΓöéCCI_ARROW                     Γöé
  4099.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4100.             ΓöéPresentation Parameter        ΓöéPP_ARROWCOLOR                 Γöé
  4101.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4102.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4103.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4104.             ΓöéRemarks                       ΓöéNone                          Γöé
  4105.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4106.  
  4107.  
  4108. ΓòÉΓòÉΓòÉ <hidden> Circular Slider : CCT_CIRCULARSLIDER ΓòÉΓòÉΓòÉ
  4109.  
  4110.      Color Usage Description 
  4111.  
  4112.            Background 
  4113.            Text 
  4114.            Border 
  4115.            Light border 
  4116.            Dark border 
  4117.            Disabled border 
  4118.            Disabled light border 
  4119.            Disabled dark border 
  4120.            Button background 
  4121.            Button light border 
  4122.            Button dark border 
  4123.            Arrow/tick marks 
  4124.            Disabled arrow/tick marks 
  4125.  
  4126.      Background color 
  4127.  
  4128.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4129.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  4130.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4131.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  4132.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4133.             ΓöéSystem Default                ΓöéSYSCLR_FIELDBACKGROUND        Γöé
  4134.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4135.             ΓöéRemarks                       ΓöéNone                          Γöé
  4136.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4137.  
  4138.      Text color 
  4139.  
  4140.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4141.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  4142.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4143.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  4144.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4145.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  4146.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4147.             ΓöéRemarks                       ΓöéNone                          Γöé
  4148.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4149.  
  4150.      Border color 
  4151.  
  4152.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4153.             ΓöéControl Color Index           ΓöéCCI_BORDER                    Γöé
  4154.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4155.             ΓöéPresentation Parameter        ΓöéPP_BORDERCOLOR                Γöé
  4156.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4157.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4158.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4159.             ΓöéRemarks                       ΓöéNone                          Γöé
  4160.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4161.  
  4162.      Light border color 
  4163.  
  4164.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4165.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  4166.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4167.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  4168.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4169.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  4170.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4171.             ΓöéRemarks                       ΓöéNone                          Γöé
  4172.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4173.  
  4174.      Dark border color 
  4175.  
  4176.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4177.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  4178.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4179.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  4180.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4181.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  4182.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4183.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  4184.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  4185.             Γöé                              Γöéis 0x00808080.                Γöé
  4186.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4187.  
  4188.      Disabled border color 
  4189.  
  4190.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4191.             ΓöéControl Color Index           ΓöéCCI_BORDER2                   Γöé
  4192.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4193.             ΓöéPresentation Parameter        ΓöéPP_BORDER2COLOR               Γöé
  4194.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4195.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  4196.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4197.             ΓöéRemarks                       ΓöéNone                          Γöé
  4198.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4199.  
  4200.      Disabled light border color 
  4201.  
  4202.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4203.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  4204.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4205.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  4206.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4207.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  4208.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4209.             ΓöéRemarks                       ΓöéNone                          Γöé
  4210.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4211.  
  4212.      Disabled dark border color 
  4213.  
  4214.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4215.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  4216.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4217.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  4218.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4219.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  4220.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4221.             ΓöéRemarks                       ΓöéNone                          Γöé
  4222.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4223.  
  4224.      Button background color 
  4225.  
  4226.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4227.             ΓöéControl Color Index           ΓöéCCI_BUTTONBACKGROUND          Γöé
  4228.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4229.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBACKGROUNDCOLOR      Γöé
  4230.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4231.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONMIDDLE           Γöé
  4232.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4233.             ΓöéRemarks                       ΓöéNone                          Γöé
  4234.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4235.  
  4236.      Button light border color 
  4237.  
  4238.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4239.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERLIGHT         Γöé
  4240.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4241.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERLIGHTCOLOR     Γöé
  4242.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4243.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONLIGHT            Γöé
  4244.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4245.             ΓöéRemarks                       ΓöéNone                          Γöé
  4246.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4247.  
  4248.      Button dark border color 
  4249.  
  4250.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4251.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERDARK          Γöé
  4252.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4253.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERDARKCOLOR      Γöé
  4254.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4255.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDARK             Γöé
  4256.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4257.             ΓöéRemarks                       ΓöéNone                          Γöé
  4258.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4259.  
  4260.      Arrow/tick marks color 
  4261.  
  4262.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4263.             ΓöéControl Color Index           ΓöéCCI_ARROW                     Γöé
  4264.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4265.             ΓöéPresentation Parameter        ΓöéPP_ARROWCOLOR                 Γöé
  4266.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4267.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4268.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4269.             ΓöéRemarks                       ΓöéNone                          Γöé
  4270.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4271.  
  4272.      Disabled arrow/tick marks color 
  4273.  
  4274.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4275.             ΓöéControl Color Index           ΓöéCCI_DISABLEDARROW             Γöé
  4276.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4277.             ΓöéPresentation Parameter        ΓöéPP_ARROWDISABLEDCOLOR         Γöé
  4278.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4279.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDARK             Γöé
  4280.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4281.             ΓöéRemarks                       ΓöéNone                          Γöé
  4282.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4283.  
  4284.  
  4285. ΓòÉΓòÉΓòÉ <hidden> MLE : CCT_MLE ΓòÉΓòÉΓòÉ
  4286.  
  4287.      Color Usage Description 
  4288.  
  4289.            Background 
  4290.            Text 
  4291.            Read-only text 
  4292.            Highlight background 
  4293.            Highlight text 
  4294.            Light border 
  4295.            Dark border 
  4296.            Light border 2 
  4297.            Dark border 2 
  4298.            Corner between scroll bars 
  4299.  
  4300.      Background color 
  4301.  
  4302.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4303.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  4304.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4305.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  4306.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4307.             ΓöéSystem Default                ΓöéSYSCLR_ENTRYFIELD             Γöé
  4308.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4309.             ΓöéRemarks                       ΓöéNot inherited.                Γöé
  4310.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4311.  
  4312.      Text color 
  4313.  
  4314.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4315.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  4316.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4317.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  4318.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4319.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  4320.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4321.             ΓöéRemarks                       ΓöéNone                          Γöé
  4322.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4323.  
  4324.      Read-only text color 
  4325.  
  4326.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4327.             ΓöéControl Color Index           ΓöéCCI_FOREGROUNDREADONLY        Γöé
  4328.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4329.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDREADONLYCOLOR    Γöé
  4330.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4331.             ΓöéSystem Default                ΓöéSYSCLR_OUTPUTTEXT             Γöé
  4332.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4333.             ΓöéRemarks                       ΓöéNone                          Γöé
  4334.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4335.  
  4336.      Highlight background color 
  4337.  
  4338.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4339.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTBACKGROUND       Γöé
  4340.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4341.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  4342.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4343.             ΓöéSystem Default                ΓöéSYSCLR_HILITEBACKGROUND       Γöé
  4344.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4345.             ΓöéRemarks                       ΓöéNone                          Γöé
  4346.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4347.  
  4348.      Text color 
  4349.  
  4350.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4351.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTFOREGROUND       Γöé
  4352.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4353.             ΓöéPresentation Parameter        ΓöéPP_HILITEFOREGROUNDCOLOR      Γöé
  4354.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4355.             ΓöéSystem Default                ΓöéSYSCLR_HILITEFOREGROUND       Γöé
  4356.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4357.             ΓöéRemarks                       ΓöéNone                          Γöé
  4358.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4359.  
  4360.      Light border color 
  4361.  
  4362.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4363.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  4364.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4365.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  4366.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4367.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  4368.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4369.             ΓöéRemarks                       ΓöéNone                          Γöé
  4370.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4371.  
  4372.      Dark border color 
  4373.  
  4374.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4375.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  4376.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4377.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  4378.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4379.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  4380.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4381.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  4382.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  4383.             Γöé                              Γöéis 0x00808080.                Γöé
  4384.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4385.  
  4386.      Light border 2 color 
  4387.  
  4388.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4389.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  4390.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4391.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  4392.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4393.             ΓöéSystem Default                ΓöéRGB_LIGHTGRAY                 Γöé
  4394.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4395.             ΓöéRemarks                       ΓöéRGB_LIGHTGRAY is not defined  Γöé
  4396.             Γöé                              Γöéin OS/2 header files. Its     Γöé
  4397.             Γöé                              Γöévalue is 0x00CCCCCC.          Γöé
  4398.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4399.  
  4400.      Dark border 2 color 
  4401.  
  4402.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4403.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  4404.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4405.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  4406.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4407.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4408.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4409.             ΓöéRemarks                       ΓöéNone                          Γöé
  4410.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4411.  
  4412.      Corner between scroll bars color 
  4413.  
  4414.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4415.             ΓöéControl Color Index           ΓöéCCI_FIELDBACKGROUND           Γöé
  4416.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4417.             ΓöéPresentation Parameter        ΓöéPP_FIELDBACKGROUNDCOLOR       Γöé
  4418.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4419.             ΓöéSystem Default                ΓöéSYSCLR_FIELDBACKGROUND        Γöé
  4420.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4421.             ΓöéRemarks                       ΓöéNone                          Γöé
  4422.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4423.  
  4424.  
  4425. ΓòÉΓòÉΓòÉ <hidden> Value Set : CCT_VALUESET ΓòÉΓòÉΓòÉ
  4426.  
  4427.      Color Usage Description 
  4428.  
  4429.            Background 
  4430.            Text 
  4431.            Border 
  4432.            Default border 
  4433.  
  4434.      Background color 
  4435.  
  4436.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4437.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  4438.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4439.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  4440.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4441.             ΓöéSystem Default                ΓöéSYSCLR_FIELDBACKGROUND        Γöé
  4442.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4443.             ΓöéRemarks                       ΓöéNone                          Γöé
  4444.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4445.  
  4446.      Text color 
  4447.  
  4448.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4449.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  4450.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4451.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  4452.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4453.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  4454.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4455.             ΓöéRemarks                       ΓöéNone                          Γöé
  4456.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4457.  
  4458.      Border color 
  4459.  
  4460.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4461.             ΓöéControl Color Index           ΓöéCCI_BORDER                    Γöé
  4462.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4463.             ΓöéPresentation Parameter        ΓöéPP_BORDERCOLOR                Γöé
  4464.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4465.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWFRAME            Γöé
  4466.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4467.             ΓöéRemarks                       ΓöéNone                          Γöé
  4468.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4469.  
  4470.      Default border color 
  4471.  
  4472.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4473.             ΓöéControl Color Index           ΓöéCCI_BORDERDEFAULT             Γöé
  4474.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4475.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  4476.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4477.             ΓöéSystem Default                ΓöéSYSCLR_HILITEBACKGROUND       Γöé
  4478.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4479.             ΓöéRemarks                       ΓöéNone                          Γöé
  4480.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4481.  
  4482.  
  4483. ΓòÉΓòÉΓòÉ <hidden> Notebook : CCT_NOTEBOOK ΓòÉΓòÉΓòÉ
  4484.  
  4485.      Color Usage Description 
  4486.  
  4487.            Background 
  4488.            Text 
  4489.            Status line background 
  4490.            Page background 
  4491.            Selection cursor 
  4492.            Outline 
  4493.            Light border 
  4494.            Dark border 
  4495.            New notebook border background 
  4496.            Light tab border 
  4497.            Dark tab border 
  4498.            Major tab background 
  4499.            Major tab text 
  4500.            Minor tab background 
  4501.            Minor tab text 
  4502.            Dog-ear dark shadow 
  4503.            Arrow 
  4504.  
  4505.      Background color 
  4506.  
  4507.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4508.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  4509.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4510.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  4511.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4512.             ΓöéSystem Default                ΓöéSYSCLR_FIELDBACKGROUND        Γöé
  4513.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4514.             ΓöéRemarks                       ΓöéNone                          Γöé
  4515.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4516.  
  4517.      Text color 
  4518.  
  4519.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4520.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  4521.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4522.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  4523.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4524.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  4525.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4526.             ΓöéRemarks                       ΓöéNone                          Γöé
  4527.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4528.  
  4529.      Status line background color 
  4530.  
  4531.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4532.             ΓöéControl Color Index           ΓöéCCI_FIELDBACKGROUND           Γöé
  4533.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4534.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  4535.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4536.             ΓöéSystem Default                ΓöéSYSCLR_FIELDBACKGROUND        Γöé
  4537.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4538.             ΓöéRemarks                       ΓöéNone                          Γöé
  4539.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4540.  
  4541.      Page background color 
  4542.  
  4543.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4544.             ΓöéControl Color Index           ΓöéCCI_PAGEBACKGROUND            Γöé
  4545.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4546.             ΓöéPresentation Parameter        ΓöéPP_PAGEBACKGROUNDCOLOR        Γöé
  4547.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4548.             ΓöéSystem Default                ΓöéSYSCLR_PAGEBACKGROUND         Γöé
  4549.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4550.             ΓöéRemarks                       ΓöéNone                          Γöé
  4551.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4552.  
  4553.      Selection cursor color 
  4554.  
  4555.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4556.             ΓöéControl Color Index           ΓöéCCI_BORDERDEFAULT             Γöé
  4557.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4558.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  4559.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4560.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDEFAULT          Γöé
  4561.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4562.             ΓöéRemarks                       ΓöéNone                          Γöé
  4563.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4564.  
  4565.      Outline color 
  4566.  
  4567.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4568.             ΓöéControl Color Index           ΓöéCCI_BORDER                    Γöé
  4569.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4570.             ΓöéPresentation Parameter        ΓöéPP_BORDERCOLOR                Γöé
  4571.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4572.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWFRAME            Γöé
  4573.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4574.             ΓöéRemarks                       ΓöéNone                          Γöé
  4575.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4576.  
  4577.      Light border color 
  4578.  
  4579.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4580.             ΓöéControl Color Index           ΓöéCCI_BORDERLIGHT               Γöé
  4581.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4582.             ΓöéPresentation Parameter        ΓöéPP_BORDERLIGHTCOLOR           Γöé
  4583.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4584.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  4585.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4586.             ΓöéRemarks                       ΓöéNone                          Γöé
  4587.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4588.  
  4589.      Dark border color 
  4590.  
  4591.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4592.             ΓöéControl Color Index           ΓöéCCI_BORDERDARK                Γöé
  4593.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4594.             ΓöéPresentation Parameter        ΓöéPP_BORDERDARKCOLOR            Γöé
  4595.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4596.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  4597.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4598.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  4599.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  4600.             Γöé                              Γöéis 0x00808080.                Γöé
  4601.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4602.  
  4603.      New notebook border background 
  4604.  
  4605.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4606.             ΓöéControl Color Index           ΓöéCCI_BORDER2                   Γöé
  4607.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4608.             ΓöéPresentation Parameter        ΓöéPP_BORDER2COLOR               Γöé
  4609.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4610.             ΓöéSystem Default                ΓöéSYSCLR_FIELDBACKGROUND        Γöé
  4611.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4612.             ΓöéRemarks                       ΓöéNone                          Γöé
  4613.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4614.  
  4615.      Light tab border color 
  4616.  
  4617.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4618.             ΓöéControl Color Index           ΓöéCCI_BORDER2LIGHT              Γöé
  4619.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4620.             ΓöéPresentation Parameter        ΓöéPP_BORDER2LIGHTCOLOR          Γöé
  4621.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4622.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  4623.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4624.             ΓöéRemarks                       ΓöéNone                          Γöé
  4625.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4626.  
  4627.      Dark tab border color 
  4628.  
  4629.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4630.             ΓöéControl Color Index           ΓöéCCI_BORDER2DARK               Γöé
  4631.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4632.             ΓöéPresentation Parameter        ΓöéPP_BORDER2DARKCOLOR           Γöé
  4633.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4634.             ΓöéSystem Default                ΓöéRGB_DARKGRAY                  Γöé
  4635.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4636.             ΓöéRemarks                       ΓöéRGB_DARKGRAY not defined in   Γöé
  4637.             Γöé                              ΓöéOS/2 header files. Its value  Γöé
  4638.             Γöé                              Γöéis 0x00808080.                Γöé
  4639.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4640.  
  4641.      Major tab background color 
  4642.  
  4643.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4644.             ΓöéControl Color Index           ΓöéCCI_MAJORTABBACKGROUND        Γöé
  4645.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4646.             ΓöéPresentation Parameter        ΓöéPP_MAJORTABBACKGROUNDCOLOR    Γöé
  4647.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4648.             ΓöéSystem Default                ΓöéSYSCLR_PAGEBACKGROUND         Γöé
  4649.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4650.             ΓöéRemarks                       ΓöéNone                          Γöé
  4651.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4652.  
  4653.      Major tab text color 
  4654.  
  4655.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4656.             ΓöéControl Color Index           ΓöéCCI_MAJORTABFOREGROUND        Γöé
  4657.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4658.             ΓöéPresentation Parameter        ΓöéPP_MAJORTABFOREGROUNDCOLOR    Γöé
  4659.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4660.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  4661.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4662.             ΓöéRemarks                       ΓöéNone                          Γöé
  4663.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4664.  
  4665.      Minor tab background color 
  4666.  
  4667.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4668.             ΓöéControl Color Index           ΓöéCCI_MINORTABBACKGROUND        Γöé
  4669.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4670.             ΓöéPresentation Parameter        ΓöéPP_MINORTABBACKGROUNDCOLOR    Γöé
  4671.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4672.             ΓöéSystem Default                ΓöéSYSCLR_PAGEBACKGROUND         Γöé
  4673.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4674.             ΓöéRemarks                       ΓöéNone                          Γöé
  4675.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4676.  
  4677.      Minor tab text color 
  4678.  
  4679.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4680.             ΓöéControl Color Index           ΓöéCCI_MINORTABFOREGROUND        Γöé
  4681.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4682.             ΓöéPresentation Parameter        ΓöéPP_MINORTABFOREGROUNDCOLOR    Γöé
  4683.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4684.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  4685.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4686.             ΓöéRemarks                       ΓöéNone                          Γöé
  4687.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4688.  
  4689.      Dog-ear dark shadow color 
  4690.  
  4691.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4692.             ΓöéControl Color Index           ΓöéCCI_CHECKDARK                 Γöé
  4693.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4694.             ΓöéPresentation Parameter        ΓöéPP_CHECKDARKCOLOR             Γöé
  4695.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4696.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4697.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4698.             ΓöéRemarks                       ΓöéNone                          Γöé
  4699.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4700.  
  4701.      Arrow color 
  4702.  
  4703.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4704.             ΓöéControl Color Index           ΓöéCCI_ARROW                     Γöé
  4705.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4706.             ΓöéPresentation Parameter        ΓöéPP_ARROWCOLOR                 Γöé
  4707.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4708.             ΓöéSystem Default                ΓöéRGB_BLUE                      Γöé
  4709.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4710.             ΓöéRemarks                       ΓöéNone                          Γöé
  4711.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4712.  
  4713.  
  4714. ΓòÉΓòÉΓòÉ <hidden> Container : CCT_CONTAINER ΓòÉΓòÉΓòÉ
  4715.  
  4716.      Color Usage Description 
  4717.  
  4718.            Background 
  4719.            Text 
  4720.            Icon text 
  4721.            Icon text background 
  4722.            Background highlight 
  4723.            Text highlight 
  4724.            Border 
  4725.            Edit background 
  4726.            Edit text 
  4727.            Tree view light button border 
  4728.            Tree view dark button border 
  4729.            Tree view outer button border 
  4730.            Tree view button background 
  4731.            Record emphasis 
  4732.            Edge window 
  4733.  
  4734.      Background color 
  4735.  
  4736.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4737.             ΓöéControl Color Index           ΓöéCCI_BACKGROUND                Γöé
  4738.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4739.             ΓöéPresentation Parameter        ΓöéPP_BACKGROUNDCOLOR            Γöé
  4740.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4741.             ΓöéSystem Default                ΓöéSYSCLR_WINDOW                 Γöé
  4742.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4743.             ΓöéRemarks                       ΓöéNone                          Γöé
  4744.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4745.  
  4746.      Text color 
  4747.  
  4748.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4749.             ΓöéControl Color Index           ΓöéCCI_FOREGROUND                Γöé
  4750.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4751.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  4752.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4753.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  4754.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4755.             ΓöéRemarks                       ΓöéNone                          Γöé
  4756.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4757.  
  4758.      Icon text color 
  4759.  
  4760.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4761.             ΓöéControl Color Index           ΓöéCCI_ICONFOREGROUND            Γöé
  4762.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4763.             ΓöéPresentation Parameter        ΓöéPP_FOREGROUNDCOLOR            Γöé
  4764.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4765.             ΓöéSystem Default                ΓöéSYSCLR_ICONTEXT               Γöé
  4766.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4767.             ΓöéRemarks                       ΓöéPure RGB color and not        Γöé
  4768.             Γöé                              Γöéinherited.                    Γöé
  4769.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4770.  
  4771.      Icon text background color 
  4772.  
  4773.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4774.             ΓöéControl Color Index           ΓöéCCI_ICONBACKGROUND            Γöé
  4775.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4776.             ΓöéPresentation Parameter        ΓöéPP_ICONTEXTBACKGROUNDCOLOR    Γöé
  4777.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4778.             ΓöéSystem Default                ΓöéCLR_ERROR (transparent)       Γöé
  4779.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4780.             ΓöéRemarks                       ΓöéNone                          Γöé
  4781.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4782.  
  4783.      Background highlight color 
  4784.  
  4785.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4786.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTBACKGROUND       Γöé
  4787.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4788.             ΓöéPresentation Parameter        ΓöéPP_HILITEBACKGROUNDCOLOR      Γöé
  4789.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4790.             ΓöéSystem Default                ΓöéSYSCLR_HILITEBACKGROUND       Γöé
  4791.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4792.             ΓöéRemarks                       ΓöéNone                          Γöé
  4793.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4794.  
  4795.      Text highlight color 
  4796.  
  4797.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4798.             ΓöéControl Color Index           ΓöéCCI_HIGHLIGHTFOREGROUND       Γöé
  4799.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4800.             ΓöéPresentation Parameter        ΓöéPP_HILITEFOREGROUNDCOLOR      Γöé
  4801.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4802.             ΓöéSystem Default                ΓöéSYSCLR_HILITEFOREGROUND       Γöé
  4803.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4804.             ΓöéRemarks                       ΓöéNone                          Γöé
  4805.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4806.  
  4807.      Edit background color 
  4808.  
  4809.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4810.             ΓöéControl Color Index           ΓöéCCI_PAGEBACKGROUND            Γöé
  4811.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4812.             ΓöéPresentation Parameter        ΓöéPP_PAGEBACKGROUNDCOLOR        Γöé
  4813.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4814.             ΓöéSystem Default                ΓöéRGB_WHITE                     Γöé
  4815.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4816.             ΓöéRemarks                       ΓöéNone                          Γöé
  4817.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4818.  
  4819.      Edit foreground color 
  4820.  
  4821.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4822.             ΓöéControl Color Index           ΓöéCCI_PAGEFOREGROUND            Γöé
  4823.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4824.             ΓöéPresentation Parameter        ΓöéPP_PAGEFOREGROUNDCOLOR        Γöé
  4825.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4826.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4827.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4828.             ΓöéRemarks                       ΓöéNone                          Γöé
  4829.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4830.  
  4831.      Light border color 
  4832.  
  4833.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4834.             ΓöéTree view light button border ΓöéCCI_BUTTONBORDERLIGHT         Γöé
  4835.             Γöécolor                         Γöé                              Γöé
  4836.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4837.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERLIGHTCOLOR     Γöé
  4838.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4839.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONLIGHT            Γöé
  4840.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4841.             ΓöéRemarks                       ΓöéNone                          Γöé
  4842.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4843.  
  4844.      Tree view dark button border color 
  4845.  
  4846.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4847.             ΓöéControl Color Index           ΓöéCCI_BUTTONBORDERDARK          Γöé
  4848.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4849.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBORDERDARKCOLOR      Γöé
  4850.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4851.             ΓöéSystem Default                ΓöéSYSCLR_BUTTONDARK             Γöé
  4852.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4853.             ΓöéRemarks                       ΓöéNone                          Γöé
  4854.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4855.  
  4856.      Tree view outer button border color 
  4857.  
  4858.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4859.             ΓöéControl Color Index           ΓöéCCI_BORDERDEFAULT             Γöé
  4860.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4861.             ΓöéPresentation Parameter        ΓöéPP_BORDERDEFAULTCOLOR         Γöé
  4862.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4863.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4864.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4865.             ΓöéRemarks                       ΓöéNone                          Γöé
  4866.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4867.  
  4868.      Tree view button background color 
  4869.  
  4870.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4871.             ΓöéControl Color Index           ΓöéCCI_BUTTONBACKGROUND          Γöé
  4872.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4873.             ΓöéPresentation Parameter        ΓöéPP_BUTTONBACKGROUNDCOLOR      Γöé
  4874.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4875.             ΓöéSystem Default                ΓöéSYSCLF_BUTTONMIDDLE           Γöé
  4876.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4877.             ΓöéRemarks                       ΓöéNone                          Γöé
  4878.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4879.  
  4880.      Record emphasis color 
  4881.  
  4882.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4883.             ΓöéControl Color Index           ΓöéCCI_BORDER2                   Γöé
  4884.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4885.             ΓöéPresentation Parameter        ΓöéPP_BORDER2COLOR               Γöé
  4886.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4887.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4888.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4889.             ΓöéRemarks                       ΓöéNone                          Γöé
  4890.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4891.  
  4892.      Edge window color 
  4893.  
  4894.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4895.             ΓöéControl Color Index           ΓöéCCI_FIELDBACKGROUND           Γöé
  4896.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4897.             ΓöéPresentation Parameter        ΓöéPP_FIELDBACKGROUNDCOLOR       Γöé
  4898.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4899.             ΓöéSystem Default                ΓöéSYSCLR_SCROLLBAR              Γöé
  4900.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4901.             ΓöéRemarks                       ΓöéNone                          Γöé
  4902.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4903.  
  4904.      Major tab text color 
  4905.  
  4906.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4907.             ΓöéControl Color Index           ΓöéCCI_MAJORTABFOREGROUND        Γöé
  4908.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4909.             ΓöéPresentation Parameter        ΓöéPP_MAJORTABFOREGROUNDCOLOR    Γöé
  4910.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4911.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  4912.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4913.             ΓöéRemarks                       ΓöéNone                          Γöé
  4914.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4915.  
  4916.      Minor tab background color 
  4917.  
  4918.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4919.             ΓöéControl Color Index           ΓöéCCI_MINORTABBACKGROUND        Γöé
  4920.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4921.             ΓöéPresentation Parameter        ΓöéPP_MINORTABBACKGROUNDCOLOR    Γöé
  4922.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4923.             ΓöéSystem Default                ΓöéSYSCLR_PAGEBACKGROUND         Γöé
  4924.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4925.             ΓöéRemarks                       ΓöéNone                          Γöé
  4926.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4927.  
  4928.      Minor tab text color 
  4929.  
  4930.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4931.             ΓöéControl Color Index           ΓöéCCI_MINORTABFOREGROUND        Γöé
  4932.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4933.             ΓöéPresentation Parameter        ΓöéPP_MINORTABFOREGROUNDCOLOR    Γöé
  4934.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4935.             ΓöéSystem Default                ΓöéSYSCLR_WINDOWTEXT             Γöé
  4936.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4937.             ΓöéRemarks                       ΓöéNone                          Γöé
  4938.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4939.  
  4940.      Dog-ear dark shadow color 
  4941.  
  4942.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4943.             ΓöéControl Color Index           ΓöéCCI_CHECKDARK                 Γöé
  4944.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4945.             ΓöéPresentation Parameter        ΓöéPP_CHECKDARKCOLOR             Γöé
  4946.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4947.             ΓöéSystem Default                ΓöéRGB_BLACK                     Γöé
  4948.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4949.             ΓöéRemarks                       ΓöéNone                          Γöé
  4950.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4951.  
  4952.      Arrow color 
  4953.  
  4954.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  4955.             ΓöéControl Color Index           ΓöéCCI_ARROW                     Γöé
  4956.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4957.             ΓöéPresentation Parameter        ΓöéPP_ARROWCOLOR                 Γöé
  4958.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4959.             ΓöéSystem Default                ΓöéRGB_BLUE                      Γöé
  4960.             Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  4961.             ΓöéRemarks                       ΓöéNone                          Γöé
  4962.             ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  4963.  
  4964.  
  4965. ΓòÉΓòÉΓòÉ 3.8. Overriding the Default Colors Used by PM Controls ΓòÉΓòÉΓòÉ
  4966.  
  4967. There is a way to override the default colors used by PM controls. 
  4968. WinSetControlColors can be used to set one or more control colors. Control 
  4969. colors can be set globally for all instances of the control class (CCF_GLOBAL), 
  4970. or for all instances of the control created on the same thread 
  4971. (CCF_APPLICATION). For example, you can set the background color of all the 
  4972. push buttons in your application to brown without affecting the global default 
  4973. push button background color (normally light-gray). Setting a control color for 
  4974. an individual control window causes the appropriate presentation parameter to 
  4975. be set. Each control has a control color type, and a set of control color 
  4976. indexes are used for each type to provide access to the colors used in the 
  4977. control. 
  4978.  
  4979. WinQueryControlColors allows an application to query one or more of the colors 
  4980. being used by a PM control. When your application uses this function in 
  4981. conjunction with WinSetControlColors, it can query and then set all of the 
  4982. colors used in a PM system control window at one time. This is more convenient 
  4983. than using presentation parameters, but it is not backwardly compatible with 
  4984. versions earlier than OS/2 Warp Version 4.0. 
  4985.  
  4986. WM_CTLCOLORCHANGE is sent to a window when a control color has been changed 
  4987. (similar to WM_SYSCOLORCHANGE), and  WM_QUERYCTLTYPE can be sent to a window to 
  4988. find out which, if any, control colors it responds to (a control returns a 
  4989. non-zero index value corresponding to a CCT_ constant). 
  4990.  
  4991.  
  4992.    /******************************************************************/
  4993.    /* Query the number of colors used by a push button.              */
  4994.    /******************************************************************/
  4995.  
  4996.    cCount = WinQueryControlColors(
  4997.                  HWND_DESKTOP,             /* Desktop window handle  */
  4998.                  CCT_PUSHBUTTON,           /* Select push button     */
  4999.                  CCF_COUNTCOLORS,          /* Count number of colors */
  5000.                  0, 0);
  5001.  
  5002.    pactlColor = (PCTLCOLOR)malloc(sizeof(CTLCOLOR) * cCount);
  5003.  
  5004.    /******************************************************************/
  5005.    /* Query all the colors used by push buttons in application.      */
  5006.    /******************************************************************/
  5007.  
  5008.    WinQueryControlColors(HWND_DESKTOP,     /* Desktop window handle  */
  5009.                  CCT_PUSHBUTTON,           /* Select push button     */
  5010.                  CCF_ALLCOLORS |           /* Return all colors ...  */
  5011.                  CCF_APPLICATION,          /* ... for application    */
  5012.                  cCount,                   /* Size of array          */
  5013.                  pactlColor);              /* Buffer for color data  */
  5014.  
  5015.    /******************************************************************/
  5016.    /* Give the global push button borders a red color.               */
  5017.    /******************************************************************/
  5018.  
  5019.    for (i = 0; i < cCount; i++)
  5020.    {
  5021.        switch (pactlColor[i].clrIndex)
  5022.        {
  5023.           case CCI_BORDERLIGHT:
  5024.  
  5025.              pactlColor[i].clrValue = 0x00FFC0C0;   /* Light red     */
  5026.              break;
  5027.  
  5028.           case CCI_BORDERDARK:
  5029.  
  5030.              pactlColor[i].clrValue = 0x00C00000;   /* Dark red      */
  5031.              break;
  5032.  
  5033.           default:
  5034.  
  5035.              pactlColor[i].clrValue = CCV_DEFAULT;  /* Default color */
  5036.              break;
  5037.        }
  5038.    }
  5039.  
  5040.    /******************************************************************/
  5041.    /* Set the new border colors for all push buttons in application. */
  5042.    /******************************************************************/
  5043.  
  5044.    WinSetControlColors(HWND_DESKTOP,       /* Desktop window handle  */
  5045.                  CCT_PUSHBUTTON,           /* Select push button     */
  5046.                  CCF_APPLICATION,          /* Application colors     */
  5047.                  cCount,                   /* Number of colors       */
  5048.                  pactlColor);              /* Buffer for color data  */
  5049.  
  5050.  
  5051. ΓòÉΓòÉΓòÉ 4. Resource Files ΓòÉΓòÉΓòÉ
  5052.  
  5053. Resource files enable you to specify the resource information used in creating 
  5054. an application's window. Some examples of resources that can be defined in 
  5055. resource files are: 
  5056.  
  5057.      Menus 
  5058.      Accelerator tables 
  5059.      Dialog and window templates 
  5060.      Icons 
  5061.      Fonts 
  5062.      Bit maps 
  5063.      Strings 
  5064.  
  5065.  To add resource information to an application, use a text editor to create a 
  5066.  resource script file, and then compile it using the Resource Compiler, RC.EXE. 
  5067.  The advantage of using resource files is that resource information can be 
  5068.  maintained and updated separately in the resource script file and then linked 
  5069.  to your application program's .EXE file. This greatly simplifies customizing 
  5070.  an application because you can modify resource information without having to 
  5071.  recompile the entire application. 
  5072.  
  5073.  This chapter describes the use of resource files in Presentation Manager (PM) 
  5074.  programming. 
  5075.  
  5076.  
  5077. ΓòÉΓòÉΓòÉ 4.1. About Resource Files ΓòÉΓòÉΓòÉ
  5078.  
  5079. A resource script file is a text file that contains one or more resource 
  5080. statements that define the type, identifier, and data for each resource. 
  5081. Because some resources might contain binary data that cannot be created using a 
  5082. text editor, there are resource statements that let you specify additional 
  5083. files to include when compiling the resource script file. For example, you can 
  5084. use the Dialog Box Editor to design dialog boxes, the Font Editor to edit font 
  5085. files, and the Icon Editor to create customized icons, pointers, and bit maps. 
  5086. The definitions for these resources can be included with other resource 
  5087. definitions in the resource file. 
  5088.  
  5089.  
  5090. ΓòÉΓòÉΓòÉ 4.1.1. Resource Statements ΓòÉΓòÉΓòÉ
  5091.  
  5092. This section provides overview information on resource statements and 
  5093. directives.  Resource statements consist of one or more keywords, numbers, 
  5094. character strings, constants, or file names. You combine these to define the 
  5095. resource type, identifier, and data. Directives are special types of resource 
  5096. statements that perform functions such as including header files, defining 
  5097. constants, and conditionally compiling portions of the file. Resource 
  5098. statements have three basic forms: 
  5099.  
  5100.      Single-line statements 
  5101.      Multiple-line statements 
  5102.      Directives 
  5103.  
  5104.  
  5105. ΓòÉΓòÉΓòÉ 4.1.1.1. Single-line Statements ΓòÉΓòÉΓòÉ
  5106.  
  5107. Single-line statements consist of a keyword identifying the resource type, a 
  5108. constant or number specifying the resource identifier, and a file name 
  5109. specifying the file containing the resource data. For example, this ICON 
  5110. statement defines an icon resource: 
  5111.  
  5112.   ICON 1 myicon.ico
  5113.  
  5114. The icon resource has the icon identifier 1, and the file MYICON.ICO contains 
  5115. the icon data. 
  5116.  
  5117.  
  5118. ΓòÉΓòÉΓòÉ 4.1.1.2. Multiple-line Statements ΓòÉΓòÉΓòÉ
  5119.  
  5120. Multiple-line statements consist of a keyword identifying the resource type, a 
  5121. constant or number specifying the resource identifier, and, between the BEGIN 
  5122. and END keywords, additional resource statements that define the resource data. 
  5123. For example, this MENU statement defines a menu resource: 
  5124.  
  5125.   MENU 1
  5126.   BEGIN
  5127.       MENUITEM "Alpha", 101
  5128.       MENUITEM "Beta",  102
  5129.   END
  5130.  
  5131. The menu identifier is 1. The menu contains two MENUITEM statements that define 
  5132. the contents of the menu. 
  5133.  
  5134. In multiple-line statements such as DLGTEMPLATE and WINDOWTEMPLATE, any level 
  5135. of nested statements is allowed. For example, the DLGTEMPLATE and 
  5136. WINDOWTEMPLATE statements typically contain a single DIALOG or FRAME statement. 
  5137. These statements can contain any number of WINDOW and CONTROL statements; the 
  5138. WINDOW and CONTROL statements can contain additional WINDOW and CONTROL 
  5139. statements, and so forth. The nested statements let you define controls and 
  5140. other child windows for the dialog boxes and windows. 
  5141.  
  5142. If a nested statement creates a child window or control, the parent and owner 
  5143. of the new window is the window created by the containing statement. (FRAME 
  5144. statements occasionally create frame controls whose parent and owner windows 
  5145. are not the same.) 
  5146.  
  5147.  
  5148. ΓòÉΓòÉΓòÉ 4.1.1.3. Directives ΓòÉΓòÉΓòÉ
  5149.  
  5150. Directives consist of the reserved character # in the first column of a line, 
  5151. followed by the directive keyword and any additional numbers, character 
  5152. strings, or file names. 
  5153.  
  5154. Some examples of directives are: 
  5155.  
  5156.      #define 
  5157.      #if 
  5158.      #ifdef 
  5159.      #include 
  5160.  
  5161.  Descriptions of the individual directives follow the resource file statement 
  5162.  descriptions. 
  5163.  
  5164.  
  5165. ΓòÉΓòÉΓòÉ 4.1.2. Resource File Statement Descriptions ΓòÉΓòÉΓòÉ
  5166.  
  5167. This section provides the syntax, description, and an example of each of the 
  5168. resource file statements. 
  5169.  
  5170. The following table summarizes, at a general level, the most commonly used 
  5171. parameters on the statements. 
  5172.  
  5173. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  5174. ΓöéParameter   ΓöéDescription                                     Γöé
  5175. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5176. Γöéid          ΓöéControl identifier.                             Γöé
  5177. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5178. Γöéx           ΓöéX coordinate of the lower-left corner of the    Γöé
  5179. Γöé            Γöécontrol.                                        Γöé
  5180. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5181. Γöéy           ΓöéY coordinate of the lower-left corner of the    Γöé
  5182. Γöé            Γöécontrol.                                        Γöé
  5183. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5184. Γöéheight      ΓöéHeight of the control ( in 1/8 character units).Γöé
  5185. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5186. Γöéwidth       ΓöéWidth of the control.                           Γöé
  5187. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5188. Γöéstyle       ΓöéPredefined bit representation of a style or     Γöé
  5189. Γöé            Γöécombination of styles.                          Γöé
  5190. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5191. Γöéload option ΓöéDefinition of when the system should load the   Γöé
  5192. Γöé            Γöéresource into memory (for example, PRELOAD or   Γöé
  5193. Γöé            ΓöéLOADONCALL).                                    Γöé
  5194. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5195. Γöémem option  ΓöéDefinition of how the system manages the        Γöé
  5196. Γöé            Γöéresource when in memory (for example, FIXED,    Γöé
  5197. Γöé            ΓöéMOVABLE, or DISCARDABLE).                       Γöé
  5198. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5199. Γöétext        ΓöéText associated with a control.                 Γöé
  5200. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  5201. Γöéclass       ΓöéPredefined class for a particular control.      Γöé
  5202. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  5203.  
  5204.  
  5205. ΓòÉΓòÉΓòÉ 4.1.2.1. ACCELTABLE Statement ΓòÉΓòÉΓòÉ
  5206.  
  5207.  The ACCELTABLE statement creates a table of accelerators for an application. 
  5208.  
  5209.  
  5210. ΓòÉΓòÉΓòÉ 4.1.2.1.1. Syntax ΓòÉΓòÉΓòÉ
  5211.  
  5212.   ACCELTABLE acceltable-id [mem-option][load-option]
  5213.   BEGIN
  5214.   key-value, command[, accelerator-options] ...
  5215.       .
  5216.       .
  5217.       .
  5218.   END
  5219.  
  5220.  
  5221. ΓòÉΓòÉΓòÉ 4.1.2.1.2. Description ΓòÉΓòÉΓòÉ
  5222.  
  5223. An accelerator is a keystroke that gives the user a quick way to choose a 
  5224. command from a menu or carry out some other task. An accelerator table can be 
  5225. loaded when needed from the executable file by using the WinLoadAccelTable 
  5226. function. 
  5227.  
  5228.  
  5229. ΓòÉΓòÉΓòÉ 4.1.2.1.3. Example ΓòÉΓòÉΓòÉ
  5230.  
  5231. This example creates an accelerator table whose accelerator-table identifier is 
  5232. 1. The table contains two accelerators:  Ctrl+S and Ctrl+G. These accelerators 
  5233. generate WM_COMMAND messages with values of 101 and 102, respectively, when the 
  5234. user presses the corresponding keys. 
  5235.  
  5236.   ACCELTABLE 1
  5237.   BEGIN
  5238.       "S", 101, CONTROL
  5239.       "G", 102, CONTROL
  5240.   END
  5241.  
  5242.  
  5243. ΓòÉΓòÉΓòÉ 4.1.2.2. ASSOCTABLE Statement ΓòÉΓòÉΓòÉ
  5244.  
  5245.  The ASSOCTABLE statement defines a file-association table for an application. 
  5246.  
  5247.  
  5248. ΓòÉΓòÉΓòÉ 4.1.2.2.1. Syntax ΓòÉΓòÉΓòÉ
  5249.  
  5250.   ASSOCTABLE assoctable-id [load-option][mem-option]
  5251.   BEGIN
  5252.   association-name, file-match-string[, extended-attribute-flag]
  5253.     [, icon-filename]
  5254.     .
  5255.     .
  5256.     .
  5257.   END
  5258.  
  5259.  
  5260. ΓòÉΓòÉΓòÉ 4.1.2.2.2. Description ΓòÉΓòÉΓòÉ
  5261.  
  5262. This table associates the data files that an application creates with the 
  5263. executable file of the application. When the user selects one of these data 
  5264. files, the associated application begins executing. 
  5265.  
  5266. A file-association table can also associate icons with the data files that an 
  5267. application creates. The icons are used to identify the data files graphically. 
  5268. Because a file-association table associates icons by file type, all data files 
  5269. having the same file type have the same icon. 
  5270.  
  5271. You can provide any number of ASSOCTABLE statements in a resource script file, 
  5272. but each statement must specify a unique assoctable-id value. The 
  5273. file-association tables are written not only to the resources within your 
  5274. executable file, but also to the .ASSOC extended attribute. However, only the 
  5275. last file-association table specified in the resource script file is actually 
  5276. written to the extended attribute. 
  5277.  
  5278.  
  5279. ΓòÉΓòÉΓòÉ 4.1.2.3. AUTOCHECKBOX Statement ΓòÉΓòÉΓòÉ
  5280.  
  5281.  The AUTOCHECKBOX statement creates an automatic-check-box control. 
  5282.  
  5283.  
  5284. ΓòÉΓòÉΓòÉ 4.1.2.3.1. Syntax ΓòÉΓòÉΓòÉ
  5285.  
  5286.   AUTOCHECKBOX text, id, x, y, width [, style]
  5287.  
  5288.  
  5289. ΓòÉΓòÉΓòÉ 4.1.2.3.2. Description ΓòÉΓòÉΓòÉ
  5290.  
  5291. The control is a small rectangle (check box) that contains an X when the user 
  5292. selects it. The specified text is displayed to the right of the check box. An X 
  5293. appears in the square when the user first selects the control and disappears 
  5294. the next time the user selects it. The AUTOCHECKBOX statement, which can only 
  5295. be used in a DIALOG or WINDOW statement, defines the text, identifier, 
  5296. dimensions, and attributes of a control window. The predefined class for this 
  5297. control is WC_BUTTON. If the style is not specified, the default style is 
  5298. BS_AUTOCHECKBOX and WS_TABSTOP. 
  5299.  
  5300.  
  5301. ΓòÉΓòÉΓòÉ 4.1.2.3.3. Example ΓòÉΓòÉΓòÉ
  5302.  
  5303. This example creates an automatic-check-box control that is labeled "Italic." 
  5304.  
  5305.   AUTOCHECKBOX "Italic", 101, 10, 10, 100, 100
  5306.  
  5307.  
  5308. ΓòÉΓòÉΓòÉ 4.1.2.4. AUTORADIOBUTTON Statement ΓòÉΓòÉΓòÉ
  5309.  
  5310. The AUTORADIOBUTTON statement creates an automatic-radio-button control. 
  5311.  
  5312.  
  5313. ΓòÉΓòÉΓòÉ 4.1.2.4.1. Syntax ΓòÉΓòÉΓòÉ
  5314.  
  5315. AUTORADIOBUTTON text, id, x, y, width, height [, style]
  5316.  
  5317.  
  5318. ΓòÉΓòÉΓòÉ 4.1.2.4.2. Description ΓòÉΓòÉΓòÉ
  5319.  
  5320. This control is a small circle with the given text displayed to its right. The 
  5321. control highlights the circle and sends a message to its parent window when the 
  5322. user selects the button. The control also removes the selection from any other 
  5323. automatic-radio-button controls in the same group. When the user selects the 
  5324. button again, the control removes the highlight before sending a message. The 
  5325. AUTORADIOBUTTON statement, which you can use only in a DIALOG or WINDOW 
  5326. statement, defines the text, identifier, dimensions, and attributes of a 
  5327. control window. The predefined class for this control is WC_BUTTON. If you do 
  5328. not specify a style, the default style is BS_AUTORADIOBUTTON. 
  5329.  
  5330.  
  5331. ΓòÉΓòÉΓòÉ 4.1.2.4.3. Example ΓòÉΓòÉΓòÉ
  5332.  
  5333. This example creates an automatic-radio-button control that is labeled 
  5334. "Italic." 
  5335.  
  5336.   AUTORADIOBUTTON "Italic", 101, 10, 10, 24, 50
  5337.  
  5338.  
  5339. ΓòÉΓòÉΓòÉ 4.1.2.5. BITMAP Statement ΓòÉΓòÉΓòÉ
  5340.  
  5341.  The BITMAP statement defines a bit-map  resource for an application. 
  5342.  
  5343.  
  5344. ΓòÉΓòÉΓòÉ 4.1.2.5.1. Syntax ΓòÉΓòÉΓòÉ
  5345.  
  5346. BITMAP bitmap-id [load-option] [mem-option] filename
  5347.  
  5348.  
  5349. ΓòÉΓòÉΓòÉ 4.1.2.5.2. Description ΓòÉΓòÉΓòÉ
  5350.  
  5351. A bit-map resource, typically created using the Icon Editor, is a custom bit 
  5352. map that an application uses in its display or as an item in a menu. 
  5353.  
  5354. The BITMAP statement copies the bit-map resource from the file specified in the 
  5355. filename field and adds it to the application's other resources. A bit-map 
  5356. resource can be loaded from the executable file when needed by using the 
  5357. GpiLoadBitmap function. 
  5358.  
  5359. You can provide any number of BITMAP statements in a resource script file, but 
  5360. each statement must specify a unique bitmap-id value. 
  5361.  
  5362.  
  5363. ΓòÉΓòÉΓòÉ 4.1.2.5.3. Example ΓòÉΓòÉΓòÉ
  5364.  
  5365. This example defines a bit map whose bit-map identifier is 12. The bit-map 
  5366. resource is copied from the file CUSTOM.BMP. 
  5367.  
  5368.   BITMAP 12 custom.bmp
  5369.  
  5370.  
  5371. ΓòÉΓòÉΓòÉ 4.1.2.6. CHECKBOX Statement ΓòÉΓòÉΓòÉ
  5372.  
  5373. The CHECKBOX statement creates a check-box control. 
  5374.  
  5375.  
  5376. ΓòÉΓòÉΓòÉ 4.1.2.6.1. Syntax ΓòÉΓòÉΓòÉ
  5377.  
  5378. CHECKBOX text, id, x, y, width, height [, style]
  5379.  
  5380.  
  5381. ΓòÉΓòÉΓòÉ 4.1.2.6.2. Description ΓòÉΓòÉΓòÉ
  5382.  
  5383. The control is a small rectangle (check box) that has the specified text 
  5384. displayed to the right. The control highlights the rectangle and sends a 
  5385. message to its parent window when the user selects the control. The CHECKBOX 
  5386. statement, which you can use only in a DIALOG or WINDOW statement, defines the 
  5387. text, identifier, dimensions, and attributes of a control window. The 
  5388. predefined class for this control is WC_BUTTON. If you do not specify a style, 
  5389. the default style is BS_CHECKBOX and WS_TABSTOP. 
  5390.  
  5391.  
  5392. ΓòÉΓòÉΓòÉ 4.1.2.6.3. Example ΓòÉΓòÉΓòÉ
  5393.  
  5394. This example creates a check-box control that is labeled "Italic." 
  5395.  
  5396.   CHECKBOX "Italic", 101, 10, 10, 100, 100
  5397.  
  5398.  
  5399. ΓòÉΓòÉΓòÉ 4.1.2.7. CODEPAGE Statement ΓòÉΓòÉΓòÉ
  5400.  
  5401.  The CODEPAGE statement sets the code page for all subsequent resources. 
  5402.  
  5403.  
  5404. ΓòÉΓòÉΓòÉ 4.1.2.7.1. Syntax ΓòÉΓòÉΓòÉ
  5405.  
  5406. CODEPAGE codepage-id
  5407.  
  5408.  
  5409. ΓòÉΓòÉΓòÉ 4.1.2.7.2. Description ΓòÉΓòÉΓòÉ
  5410.  
  5411. The code page specifies the character set used for characters in the resource. 
  5412.  
  5413. If the CODEPAGE statement is not given in a resource script file, the resource 
  5414. compiler uses the code page set up for the individual system. If more than one 
  5415. CODEPAGE statement is given in the file, each CODEPAGE statement applies to the 
  5416. resource statements between it and the next CODEPAGE statement. 
  5417.  
  5418.  
  5419. ΓòÉΓòÉΓòÉ 4.1.2.7.3. Example ΓòÉΓòÉΓòÉ
  5420.  
  5421. In this example, the code page for the character-string resources is set to 
  5422. Portuguese (860). 
  5423.  
  5424.   CODEPAGE 860
  5425.  
  5426.   STRINGTABLE
  5427.   BEGIN
  5428.       1 "Filename not found"
  5429.       2 "Cannot open file for reading"
  5430.   END
  5431.  
  5432.  
  5433. ΓòÉΓòÉΓòÉ 4.1.2.8. COMBOBOX Statement ΓòÉΓòÉΓòÉ
  5434.  
  5435.  The COMBOBOX statement creates a combination-box control. 
  5436.  
  5437.  
  5438. ΓòÉΓòÉΓòÉ 4.1.2.8.1. Syntax ΓòÉΓòÉΓòÉ
  5439.  
  5440.   COMBOBOX text, id, x, y, width, height [, style]
  5441.  
  5442.  
  5443. ΓòÉΓòÉΓòÉ 4.1.2.8.2. Description ΓòÉΓòÉΓòÉ
  5444.  
  5445. This control combines a list-box control with an entry-field control. It allows 
  5446. the user to place the selected item from a list box into an entry field. 
  5447.  
  5448. The COMBOBOX statement, which you can use only in a DIALOG or WINDOW statement, 
  5449. defines the text, identifier, dimensions, and attributes of a control window. 
  5450. The predefined class for this control is WC_COMBOBOX. If you do not specify a 
  5451. style, the default style is CBS_SIMPLE, WS_GROUP, WS_TABSTOP, and WS_VISIBLE. 
  5452.  
  5453.  
  5454. ΓòÉΓòÉΓòÉ 4.1.2.8.3. Example ΓòÉΓòÉΓòÉ
  5455.  
  5456. This example creates a combination-box control. 
  5457.  
  5458.   COMBOBOX "", 101, 10, 10, 24, 50
  5459.  
  5460.  
  5461. ΓòÉΓòÉΓòÉ 4.1.2.9. CONTAINER Statement ΓòÉΓòÉΓòÉ
  5462.  
  5463. The CONTAINER statement creates a container control within a dialog window. 
  5464.  
  5465.  
  5466. ΓòÉΓòÉΓòÉ 4.1.2.9.1. Syntax ΓòÉΓòÉΓòÉ
  5467.  
  5468. CONTAINER  id, x, y, width, height [, style]
  5469.  
  5470.  
  5471. ΓòÉΓòÉΓòÉ 4.1.2.9.2. Description ΓòÉΓòÉΓòÉ
  5472.  
  5473. The container control is a visual component that holds objects. 
  5474.  
  5475. The CONTAINER statement defines the identifier, position, dimensions, and 
  5476. attributes of a container control. The predefined class for this control is 
  5477. WC_CONTAINER. If you do not specify a style, the default style is WS_TABSTOP, 
  5478. WS_VISIBLE, and CCS_SINGLESEL. A CONTAINER statement is only used in a DIALOG 
  5479. or WINDOW statement. 
  5480.  
  5481.  
  5482. ΓòÉΓòÉΓòÉ 4.1.2.9.3. Example ΓòÉΓòÉΓòÉ
  5483.  
  5484. This example creates a container control at position (30,30) within the dialog 
  5485. window. The container has a width of 70 character units and a height of 25 
  5486. character units. Its resource ID is 301. The default style CCS_SINGLESEL has 
  5487. been overridden by the style specification CCS_MULTIPLESEL. The default styles 
  5488. WS_TABSTOP and WS_GROUP are both in effect, though only the latter is 
  5489. specified. 
  5490.  
  5491. #define IDC_CONTAINER    301
  5492. #define IDD_CONTAINERDLG 504
  5493. DIALOG "Container", IDD_CONTAINERDLG, 23, 6, 120, 280, FS_NOBYTEALIGN |
  5494.         WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  5495.   BEGIN
  5496.      CONTAINER   IDC_CONTAINER, 30, 30, 70, 200, CCS_MULTIPLESEL |
  5497.                        WS_GROUP
  5498.   END
  5499.  
  5500.  
  5501. ΓòÉΓòÉΓòÉ 4.1.2.10. CONTROL Statement ΓòÉΓòÉΓòÉ
  5502.  
  5503.  The CONTROL statement defines a control as belonging to the specified class. 
  5504.  
  5505.  
  5506. ΓòÉΓòÉΓòÉ 4.1.2.10.1. Syntax ΓòÉΓòÉΓòÉ
  5507.  
  5508.   CONTROL text, id, x, y, width, height, class [, style]
  5509.   [ data-definitions ] ...
  5510.   [ BEGIN
  5511.   control-definition
  5512.       .
  5513.       .
  5514.       .
  5515.   END ]
  5516.  
  5517.  
  5518. ΓòÉΓòÉΓòÉ 4.1.2.10.2. Description ΓòÉΓòÉΓòÉ
  5519.  
  5520. The statement defines the position and dimensions of the control within the 
  5521. parent window, as well as the control style. The CONTROL statement is most 
  5522. often used in a DIALOG or WINDOW statement. 
  5523.  
  5524. Typically, several CONTROL statements are used in each DIALOG statement, and 
  5525. each CONTROL statement must have a unique id value. The optional BEGIN and END 
  5526. statements enclose any CONTROL statements that may be given with the control. 
  5527. CONTROL statements given in this manner represent child windows belonging to 
  5528. the control created by the CONTROL statement. 
  5529.  
  5530. The CONTROL statement can actually contain any combination of CONTROL, DIALOG, 
  5531. and WINDOW statements, but it usually does not contain such statements. 
  5532.  
  5533.  
  5534. ΓòÉΓòÉΓòÉ 4.1.2.10.3. Example ΓòÉΓòÉΓòÉ
  5535.  
  5536. This example creates a push-button control with the WS_TABSTOP and WS_VISIBLE 
  5537. styles. 
  5538.  
  5539.   CONTROL "OK", 101, 10, 10, 20, 50, WC_BUTTON, BS_PUSHBUTTON |
  5540.                                                 WS_TABSTOP    |
  5541.                                                 WS_VISIBLE
  5542.  
  5543.  
  5544. ΓòÉΓòÉΓòÉ 4.1.2.11. CTEXT Statement ΓòÉΓòÉΓòÉ
  5545.  
  5546.  The CTEXT statement creates a centered-text control. 
  5547.  
  5548.  
  5549. ΓòÉΓòÉΓòÉ 4.1.2.11.1. Syntax ΓòÉΓòÉΓòÉ
  5550.  
  5551.   CTEXT text, id, x, y, width, height [, style]
  5552.  
  5553.  
  5554. ΓòÉΓòÉΓòÉ 4.1.2.11.2. Description ΓòÉΓòÉΓòÉ
  5555.  
  5556. The control is a simple rectangle displaying the given text centered in the 
  5557. rectangle. The text is formatted before it is displayed. Words that would 
  5558. extend past the end of a line are automatically wrapped to the beginning of the 
  5559. next line. 
  5560.  
  5561. The CTEXT statement defines the text, identifier, dimensions, and attributes of 
  5562. the control. The predefined class for this control is WC_STATIC. If you do not 
  5563. specify a style, the default style is SS_TEXT, DT_CENTER, and WS_GROUP. 
  5564.  
  5565. Use the CTEXT statement only in a DIALOG or WINDOW statement. 
  5566.  
  5567.  
  5568. ΓòÉΓòÉΓòÉ 4.1.2.11.3. Example ΓòÉΓòÉΓòÉ
  5569.  
  5570. This example creates a centered-text control that is labeled "Filename." 
  5571.  
  5572.   CTEXT "Filename", 101, 10, 10, 100, 100
  5573.  
  5574.  
  5575. ΓòÉΓòÉΓòÉ 4.1.2.12. CTLDATA Statement ΓòÉΓòÉΓòÉ
  5576.  
  5577.  The CTLDATA statement defines control data for a custom dialog box, window, or 
  5578. control. 
  5579.  
  5580.  
  5581. ΓòÉΓòÉΓòÉ 4.1.2.12.1. Syntax ΓòÉΓòÉΓòÉ
  5582.  
  5583.   CTLDATA word-value [, word-value] ...
  5584.  
  5585.   CTLDATA string
  5586.  
  5587.   CTLDATA MENU
  5588.   BEGIN
  5589.   menuitem-definition
  5590.      .
  5591.      .
  5592.      .
  5593.   END
  5594.  
  5595.  
  5596. ΓòÉΓòÉΓòÉ 4.1.2.12.2. Description ΓòÉΓòÉΓòÉ
  5597.  
  5598. The statement has three basic forms to permit specifying a menu or specifying 
  5599. data in words or characters. The data can be in any format, because only your 
  5600. window procedure will use it. The window procedure of the dialog box, window, 
  5601. or control receives this data when the item is created. It is up to the window 
  5602. procedure to process the data. 
  5603.  
  5604. CTLDATA is often used to supply data that controls the subsequent operation of 
  5605. the custom window. For example, the CTLDATA statement may contain extended 
  5606. style bits - that is, style bits designed specifically for your customized 
  5607. window. 
  5608.  
  5609. You should reserve the CTLDATA statement for window classes that you create 
  5610. yourself. 
  5611.  
  5612.  
  5613. ΓòÉΓòÉΓòÉ 4.1.2.12.3. Example ΓòÉΓòÉΓòÉ
  5614.  
  5615. This example creates a menu for the window created with the WINDOW statement. 
  5616.  
  5617.   WINDOWTEMPLATE 1
  5618.   BEGIN
  5619.       WINDOW "Sample", 1, 0, 0, 100, 100, "MYCLASS", 0, FCF_STANDARD
  5620.       CTLDATA MENU
  5621.       BEGIN
  5622.           MENUITEM "Exit", 101
  5623.       END
  5624.   END
  5625.  
  5626.  
  5627. ΓòÉΓòÉΓòÉ 4.1.2.13. DEFAULTICON Statement ΓòÉΓòÉΓòÉ
  5628.  
  5629. This statement installs the named icon file definition under the ICON Extended 
  5630. Attribute of the program file. 
  5631.  
  5632.  
  5633. ΓòÉΓòÉΓòÉ 4.1.2.13.1. Syntax ΓòÉΓòÉΓòÉ
  5634.  
  5635. DEFAULTICON filename
  5636.  
  5637.  
  5638. ΓòÉΓòÉΓòÉ 4.1.2.13.2. Description ΓòÉΓòÉΓòÉ
  5639.  
  5640. An icon with an icon-id of 1 is the default icon by default, unless you supply 
  5641. a different icon. 
  5642.  
  5643.  
  5644. ΓòÉΓòÉΓòÉ 4.1.2.13.3. Example ΓòÉΓòÉΓòÉ
  5645.  
  5646. DEFAULTICON filename.ico 
  5647.  
  5648.  
  5649. ΓòÉΓòÉΓòÉ 4.1.2.14. DEFPUSHBUTTON Statement ΓòÉΓòÉΓòÉ
  5650.  
  5651.  The DEFPUSHBUTTON statement creates a default push-button control. 
  5652.  
  5653.  
  5654. ΓòÉΓòÉΓòÉ 4.1.2.14.1. Syntax ΓòÉΓòÉΓòÉ
  5655.  
  5656. DEFPUSHBUTTON text, id, x, y, width, height [, style]
  5657.  
  5658.  
  5659. ΓòÉΓòÉΓòÉ 4.1.2.14.2. Description ΓòÉΓòÉΓòÉ
  5660.  
  5661. The control is a round-cornered rectangle containing the given text. The 
  5662. rectangle has a bold outline to represent that it is the default response for 
  5663. the user. The control sends a message to its parent window when the user 
  5664. chooses the control. The DEFPUSHBUTTON statement defines the text, identifier, 
  5665. dimensions, and attributes of the control. The predefined class for this 
  5666. control is WC_BUTTON. If you do not specify a style, the default style is 
  5667. BS_PUSHBUTTON, BS_DEFAULT, and WS_TABSTOP. 
  5668.  
  5669. Use the DEFPUSHBUTTON statement only in a DIALOG or WINDOW statement. 
  5670.  
  5671.  
  5672. ΓòÉΓòÉΓòÉ 4.1.2.14.3. Example ΓòÉΓòÉΓòÉ
  5673.  
  5674. This example creates a default push-button control that is labeled "Cancel." 
  5675.  
  5676. DEFPUSHBUTTON "Cancel", 101, 10, 10, 24, 50
  5677.  
  5678.  
  5679. ΓòÉΓòÉΓòÉ 4.1.2.15. DIALOG Statement ΓòÉΓòÉΓòÉ
  5680.  
  5681.  The DIALOG statement defines a window that an application can use to create 
  5682. dialog boxes. 
  5683.  
  5684.  
  5685. ΓòÉΓòÉΓòÉ 4.1.2.15.1. Syntax ΓòÉΓòÉΓòÉ
  5686.  
  5687. DIALOG text, id, x, y, width, height [, [style] [,framectl]] [data-definitions]
  5688. BEGIN
  5689. control-definition
  5690.     .
  5691.     .
  5692.     .
  5693. END
  5694.  
  5695.  
  5696. ΓòÉΓòÉΓòÉ 4.1.2.15.2. Description ΓòÉΓòÉΓòÉ
  5697.  
  5698. The statement defines the position and dimensions of the dialog box on the 
  5699. screen, as well as the dialog-box style. The DIALOG statement is most often 
  5700. used in a DLGTEMPLATE statement. 
  5701.  
  5702. Typically, you use only one DIALOG statement in each DLGTEMPLATE statement, and 
  5703. the DIALOG statement contains at least one control definition. 
  5704.  
  5705. The exact meaning of the coordinates depends on the style defined by the style 
  5706. field. For dialog boxes with FS_SCREENALIGN style, the coordinates are relative 
  5707. to the origin of the display screen. For dialog boxes with the style 
  5708. FS_MOUSEALIGN, the coordinates are relative to the position of the mouse 
  5709. pointer at the time the dialog box is created. For all other dialog boxes, the 
  5710. coordinates are relative to the origin of the parent window. 
  5711.  
  5712. The DIALOG statement can actually contain any combination of CONTROL, DIALOG, 
  5713. and WINDOW statements. Typically, a DIALOG statement contains one or more 
  5714. CONTROL statements. 
  5715.  
  5716.  
  5717. ΓòÉΓòÉΓòÉ 4.1.2.15.3. Example ΓòÉΓòÉΓòÉ
  5718.  
  5719. This example creates a dialog box that is labeled "Disk Error." 
  5720.  
  5721. DLGTEMPLATE 1
  5722. BEGIN
  5723.     DIALOG  "Disk Error", 100, 10, 10, 300, 110
  5724.     BEGIN
  5725.         CTEXT "Select One:", 1, 10, 80, 280, 12
  5726.         RADIOBUTTON "Retry", 2, 75, 50, 60, 12
  5727.         RADIOBUTTON "Abort", 3, 75, 30, 60, 12
  5728.         RADIOBUTTON "Ignore", 4, 75, 10, 60, 12
  5729.     END
  5730. END
  5731.  
  5732.  
  5733. ΓòÉΓòÉΓòÉ 4.1.2.16. DLGINCLUDE Statement ΓòÉΓòÉΓòÉ
  5734.  
  5735.  The DLGINCLUDE statement adds the specified file name to the resource file. 
  5736.  
  5737.  
  5738. ΓòÉΓòÉΓòÉ 4.1.2.16.1. Syntax ΓòÉΓòÉΓòÉ
  5739.  
  5740. DLGINCLUDE id filename
  5741.  
  5742.  
  5743. ΓòÉΓòÉΓòÉ 4.1.2.16.2. Description ΓòÉΓòÉΓòÉ
  5744.  
  5745. The DLGINCLUDE statement is typically used to let the application access the 
  5746. definitions file for the dialog box with the corresponding identifier. The file 
  5747. specified in the filename field must contain the define directives used by the 
  5748. dialog box. 
  5749.  
  5750. You can provide any number of DLGINCLUDE statements in a resource script file, 
  5751. but each must have a unique identifier. 
  5752.  
  5753.  
  5754. ΓòÉΓòÉΓòÉ 4.1.2.16.3. Example ΓòÉΓòÉΓòÉ
  5755.  
  5756. This example includes the name of the definition file dlgdef.h. The dialog-box 
  5757. identifier is 5. 
  5758.  
  5759. DLGINCLUDE 5 \\INCLUDE\\DLGDEF.H
  5760.  
  5761.  
  5762. ΓòÉΓòÉΓòÉ 4.1.2.17. DLGTEMPLATE Statement ΓòÉΓòÉΓòÉ
  5763.  
  5764.  The DLGTEMPLATE statement creates a dialog-box template. 
  5765.  
  5766.  
  5767. ΓòÉΓòÉΓòÉ 4.1.2.17.1. Syntax ΓòÉΓòÉΓòÉ
  5768.  
  5769. DLGTEMPLATE dialog-id [load-option] [mem-option]
  5770. BEGIN
  5771. dialog-definition
  5772.     .
  5773.     .
  5774.     .
  5775. END
  5776.  
  5777.  
  5778. ΓòÉΓòÉΓòÉ 4.1.2.17.2. Description ΓòÉΓòÉΓòÉ
  5779.  
  5780. A dialog-box template consists of a series of statements that define the 
  5781. identifier, load and memory options, dialog-box dimensions, and controls in the 
  5782. dialog box. The dialog-box template can be loaded from the executable file by 
  5783. using the WinLoadDlg function. 
  5784.  
  5785. You can provide any number of dialog-box templates in a resource script file, 
  5786. but each template must have a unique dialog-id value. 
  5787.  
  5788. A DLGTEMPLATE statement can actually contain DIALOG, CONTROL, and WINDOW 
  5789. statements. Typically, you include only one DIALOG statement. 
  5790.  
  5791.  
  5792. ΓòÉΓòÉΓòÉ 4.1.2.17.3. Example ΓòÉΓòÉΓòÉ
  5793.  
  5794. This example uses a DLGTEMPLATE statement to create a dialog box. 
  5795.  
  5796. DLGTEMPLATE ID_GETTIMER
  5797. BEGIN
  5798.     DIALOG "Timer", 1, 10, 10, 100, 40
  5799.     BEGIN
  5800.         LTEXT "Time (0 - 15):", 4, 8, 24, 72, 12
  5801.         ENTRYFIELD "0", ID_TIME, 80, 28, 16, 8, ES_MARGIN
  5802.         DEFPUSHBUTTON "Enter", ID_TIMEOK, 10, 6, 36, 12
  5803.         PUSHBUTTON "Cancel", ID_TIMECANCEL, 52, 6, 40, 12
  5804.     END
  5805. END
  5806.  
  5807.  
  5808. ΓòÉΓòÉΓòÉ 4.1.2.18. EDITTEXT Statement ΓòÉΓòÉΓòÉ
  5809.  
  5810.  The EDITTEXT statement creates an entry-field control. 
  5811.  
  5812.  
  5813. ΓòÉΓòÉΓòÉ 4.1.2.18.1. Syntax ΓòÉΓòÉΓòÉ
  5814.  
  5815. EDITTEXT text, id, x, y, width, height [, style]
  5816.  
  5817.  
  5818. ΓòÉΓòÉΓòÉ 4.1.2.18.2. Description ΓòÉΓòÉΓòÉ
  5819.  
  5820. This control is a rectangle in which the user can type and edit text. The 
  5821. control displays a pointer when the user selects the control. The user can then 
  5822. use the keyboard to enter text or edit the existing text. Editing keys include 
  5823. the BACKSPACE and DELETE keys. By using the mouse or the DIRECTION keys, the 
  5824. user can select the characters to delete or select the place to insert new 
  5825. characters. 
  5826.  
  5827. The EDITTEXT statement defines the text, identifier, dimensions, and attributes 
  5828. of a control window. The predefined class for this control is WC_ENTRYFIELD. If 
  5829. you do not specify a style, the default style is ES_AUTOSCROLL and WS_TABSTOP. 
  5830.  
  5831. The EDITTEXT control statement is identical to the ENTRYFIELD control 
  5832. statement. Use the EDITTEXT statement only in a DIALOG or WINDOW statement. 
  5833.  
  5834.  
  5835. ΓòÉΓòÉΓòÉ 4.1.2.18.3. Example ΓòÉΓòÉΓòÉ
  5836.  
  5837. This example creates an entry-field control that is not labeled. 
  5838.  
  5839.    EDITTEXT "", 101, 10, 10, 24, 50
  5840.  
  5841.  
  5842. ΓòÉΓòÉΓòÉ 4.1.2.19. ENTRYFIELD Statement ΓòÉΓòÉΓòÉ
  5843.  
  5844.  The ENTRYFIELD statement creates an entry-field control. 
  5845.  
  5846.  
  5847. ΓòÉΓòÉΓòÉ 4.1.2.19.1. Syntax ΓòÉΓòÉΓòÉ
  5848.  
  5849. ENTRYFIELD text, id, x, y, width, height [, style]
  5850.  
  5851.  
  5852. ΓòÉΓòÉΓòÉ 4.1.2.19.2. Description ΓòÉΓòÉΓòÉ
  5853.  
  5854. This control is a rectangle in which the user can type and edit text. The 
  5855. control displays a pointer when the user selects the control. The user can then 
  5856. use the keyboard to enter text or edit the existing text. Editing keys include 
  5857. the BACKSPACE and DELETE keys. By using the mouse or the DIRECTION keys, the 
  5858. user can select the characters to delete or select the place to insert new 
  5859. characters. The ENTRYFIELD statement, which you can use only in a DIALOG or 
  5860. WINDOW statement, defines the text, identifier, dimensions, and attributes of a 
  5861. control window. The predefined class for this control is WC_ENTRYFIELD. If you 
  5862. do not specify a style, the default style is ES_AUTOSCROLL and WS_TABSTOP. 
  5863.  
  5864.  
  5865. ΓòÉΓòÉΓòÉ 4.1.2.19.3. Example ΓòÉΓòÉΓòÉ
  5866.  
  5867. This example creates an entry-field control that is not labeled. 
  5868.  
  5869. ENTRYFIELD "", 101, 10, 10, 24, 50
  5870.  
  5871.  
  5872. ΓòÉΓòÉΓòÉ 4.1.2.20. FONT Statement ΓòÉΓòÉΓòÉ
  5873.  
  5874.  The FONT statement defines a font resource for an application. 
  5875.  
  5876.  
  5877. ΓòÉΓòÉΓòÉ 4.1.2.20.1. Syntax ΓòÉΓòÉΓòÉ
  5878.  
  5879. FONT font-id  [load-option] [mem-option] filename
  5880.  
  5881.  
  5882. ΓòÉΓòÉΓòÉ 4.1.2.20.2. Description ΓòÉΓòÉΓòÉ
  5883.  
  5884. A font resource, typically created by using the OS/2 Font Editor, is a bit map 
  5885. defining the shape of the individual characters in a character set. The FONT 
  5886. statement copies the font resource from the file specified in the filename 
  5887. field and adds it to the other resources of the application. A font resource 
  5888. can be loaded from the executable file when needed by using the GpiLoadFonts 
  5889. function. 
  5890.  
  5891. You can provide any number of FONT statements in a resource script file, but 
  5892. each statement must specify a unique font-id value. 
  5893.  
  5894.  
  5895. ΓòÉΓòÉΓòÉ 4.1.2.20.3. Example ΓòÉΓòÉΓòÉ
  5896.  
  5897. This example defines a font whose font identifier is 5. The font resource is 
  5898. copied from the file cmroman.fon. 
  5899.  
  5900. FONT 5 cmroman.fon
  5901.  
  5902.  
  5903. ΓòÉΓòÉΓòÉ 4.1.2.21. FRAME Statement ΓòÉΓòÉΓòÉ
  5904.  
  5905.  The FRAME statement defines a frame window. 
  5906.  
  5907.  
  5908. ΓòÉΓòÉΓòÉ 4.1.2.21.1. Syntax ΓòÉΓòÉΓòÉ
  5909.  
  5910. FRAME text, id, x, y, width, height, style [, framectl]
  5911.   data-definitions
  5912. [ BEGIN
  5913. window-definition
  5914.     .
  5915.     .
  5916.     .
  5917. END ]
  5918.  
  5919.  
  5920. ΓòÉΓòÉΓòÉ 4.1.2.21.2. Description ΓòÉΓòÉΓòÉ
  5921.  
  5922. The statement defines the title, identifier, position, and dimensions of the 
  5923. frame window, as well as the window style. The FRAME statement is most often 
  5924. used in a WINDOWTEMPLATE statement and, typically, only one FRAME statement is 
  5925. used. The FRAME statement, in turn, typically contains at least one WINDOW 
  5926. statement that defines the client window belonging to the frame window. 
  5927.  
  5928. The frame window has no default style. You must use the framectl field to 
  5929. define additional frame controls, such as a title bar and system menu, to be 
  5930. created when the frame window is created. If the text field is not empty, the 
  5931. statement automatically adds a title-bar control to the frame window, whether 
  5932. or not you specify the FCF_TITLEBAR style. Frame controls are given default 
  5933. styles and control identifiers, depending on their class. For example, a 
  5934. title-bar control receives the identifier FID_TITLEBAR. 
  5935.  
  5936. The FRAME statement can actually contain any combination of CONTROL, DIALOG, 
  5937. and WINDOW statements. Typically, a FRAME statement contains one WINDOW 
  5938. statement. 
  5939.  
  5940.  
  5941. ΓòÉΓòÉΓòÉ 4.1.2.21.3. Example ΓòÉΓòÉΓòÉ
  5942.  
  5943. This example creates a standard frame window with a title bar, a system menu, 
  5944. minimize and maximize boxes, and a vertical scroll bar. The FRAME statement 
  5945. contains a WINDOW statement defining the client window belonging to the frame 
  5946. window. 
  5947.  
  5948. WINDOWTEMPLATE 1
  5949. BEGIN
  5950.     FRAME "My Window", 1, 10, 10, 320, 130, 0,
  5951.             FCF_STANDARD | FCF_VERTSCROLL
  5952.     BEGIN
  5953.         WINDOW "", FID_CLIENT, 0, 0, 0, 0, "MyClientClass"
  5954.     END
  5955. END
  5956.  
  5957.  
  5958. ΓòÉΓòÉΓòÉ 4.1.2.22. GROUPBOX Statement ΓòÉΓòÉΓòÉ
  5959.  
  5960.  The GROUPBOX statement creates a group-box control. 
  5961.  
  5962.  
  5963. ΓòÉΓòÉΓòÉ 4.1.2.22.1. Syntax ΓòÉΓòÉΓòÉ
  5964.  
  5965. GROUPBOX text, id, x, y, width, height [, style]
  5966.  
  5967.  
  5968. ΓòÉΓòÉΓòÉ 4.1.2.22.2. Description ΓòÉΓòÉΓòÉ
  5969.  
  5970. The control is a rectangle that groups other controls together by drawing a 
  5971. border around them and displaying the given text in the upper-left corner. 
  5972.  
  5973. The GROUPBOX statement defines the text, identifier, dimensions, and attributes 
  5974. of a control window. The predefined class for this control is WC_STATIC. If you 
  5975. do not specify a style, the default style is SS_GROUPBOX and WS_TABSTOP. 
  5976.  
  5977. Use the GROUPBOX statement only in a DIALOG or WINDOW statement. 
  5978.  
  5979.  
  5980. ΓòÉΓòÉΓòÉ 4.1.2.22.3. Example ΓòÉΓòÉΓòÉ
  5981.  
  5982. This example creates a group-box control that is labeled "Options." 
  5983.  
  5984. GROUPBOX "Options", 101, 10, 10, 100, 100
  5985.  
  5986.  
  5987. ΓòÉΓòÉΓòÉ 4.1.2.23. HELPITEM Statement ΓòÉΓòÉΓòÉ
  5988.  
  5989.  The HELPITEM statement defines the help items in a help table. 
  5990.  
  5991.  
  5992. ΓòÉΓòÉΓòÉ 4.1.2.23.1. Syntax ΓòÉΓòÉΓòÉ
  5993.  
  5994. HELPITEM application-window-id, help-subtable-id, extended-helppanel-id
  5995.  
  5996.  
  5997. ΓòÉΓòÉΓòÉ 4.1.2.23.2. Description ΓòÉΓòÉΓòÉ
  5998.  
  5999. This statement specifies the resource identifier of an application window for 
  6000. which help is provided, along with the resource identifiers of the help 
  6001. subtable and extended help panel associated with the application window. 
  6002.  
  6003. You can provide any number of HELPITEM statements in a HELPTABLE statement. You 
  6004. should provide one HELPITEM statement for each application window for which 
  6005. help is provided. 
  6006.  
  6007. Use the HELPITEM statement only in a HELPTABLE statement. 
  6008.  
  6009.  
  6010. ΓòÉΓòÉΓòÉ 4.1.2.23.3. Example ΓòÉΓòÉΓòÉ
  6011.  
  6012. This example defines a help item that associates a help subtable called 
  6013. IDSUB_FILEMENU and an extended help panel called IDEXT_APPHLP with an 
  6014. application window called IDWIN_FILEMENU. 
  6015.  
  6016. HELPITEM IDWIN_FILEMENU, IDSUB_FILEMENU, IDEXT_APPHLP
  6017.  
  6018.  
  6019. ΓòÉΓòÉΓòÉ 4.1.2.24. HELPSUBITEM Statement ΓòÉΓòÉΓòÉ
  6020.  
  6021.  The HELPSUBITEM statement defines the help subitems in a help  subtable. 
  6022.  
  6023.  
  6024. ΓòÉΓòÉΓòÉ 4.1.2.24.1. Syntax ΓòÉΓòÉΓòÉ
  6025.  
  6026. HELPSUBITEM child-window-id, helppanel-id [, integer] ...
  6027.  
  6028.  
  6029. ΓòÉΓòÉΓòÉ 4.1.2.24.2. Description ΓòÉΓòÉΓòÉ
  6030.  
  6031. This statement specifies the identifier of a child window for which help is 
  6032. provided, the identifier of the help panel associated with the child window, 
  6033. and one or more optional, application-defined integers. 
  6034.  
  6035. You can provide any number of HELPSUBITEM statements in a HELPSUBTABLE 
  6036. statement. You should provide one HELPSUBITEM statement for each child window 
  6037. for which help is provided. 
  6038.  
  6039. Use the HELPSUBITEM statement only in a HELPSUBTABLE statement. 
  6040.  
  6041.  
  6042. ΓòÉΓòÉΓòÉ 4.1.2.24.3. Example ΓòÉΓòÉΓòÉ
  6043.  
  6044. This example defines a help subitem that associates a child window called 
  6045. IDCLD_FILEMENU with a help panel called IDHP_FILEMENU. 
  6046.  
  6047. HELPSUBITEM IDCLD_FILEMENU, IDHP_FILEMENU
  6048.  
  6049.  
  6050. ΓòÉΓòÉΓòÉ 4.1.2.25. HELPSUBTABLE Statement ΓòÉΓòÉΓòÉ
  6051.  
  6052.  The HELPSUBTABLE statement defines the contents of a help-subtable resource. 
  6053.  
  6054.  
  6055. ΓòÉΓòÉΓòÉ 4.1.2.25.1. Syntax ΓòÉΓòÉΓòÉ
  6056.  
  6057. HELPSUBTABLE helpsubtable-id
  6058.  [SUBITEMSIZE size]
  6059. BEGIN
  6060. helpsubitem-definition
  6061.     .
  6062.     .
  6063.     .
  6064. END
  6065.  
  6066.  
  6067. ΓòÉΓòÉΓòÉ 4.1.2.25.2. Description ΓòÉΓòÉΓòÉ
  6068.  
  6069. A help-subtable resource contains a help-subitem entry for each item that can 
  6070. be selected in an application window. Each of these items should be a child 
  6071. window of the application window specified in the help-table resource. The help 
  6072. subtable should contain a help subitem for each control, child window, and menu 
  6073. item in the application window. 
  6074.  
  6075. You can provide any number of HELPSUBTABLE statements in a resource script 
  6076. file, but each statement must specify a unique helpsubtable-id value. You can 
  6077. also provide any number of helpsubitem-definition statements in the help 
  6078. subtable. These specify the child window for which help is provided, the help 
  6079. panel containing the help text for the child window, and one or more 
  6080. application-defined integers. 
  6081.  
  6082. If you include optional integers in the helpsubitem-definition statements, you 
  6083. must also include a SUBITEMSIZE statement to specify the size, in words, of 
  6084. each help subitem. All help subitems in a help subtable must be the same size. 
  6085. The default size is two words per help subitem. 
  6086.  
  6087.  
  6088. ΓòÉΓòÉΓòÉ 4.1.2.25.3. Example ΓòÉΓòÉΓòÉ
  6089.  
  6090. This example creates a help-subtable resource whose help-subtable identifier is 
  6091. IDSUB_FILEMENU. Each HELPSUBITEM statement specifies a child window and a help 
  6092. panel. 
  6093.  
  6094. HELPSUBTABLE IDSUB_FILEMENU
  6095. BEGIN
  6096.     HELPSUBITEM IDCLD_OPEN, IDPNL_OPEN
  6097.     HELPSUBITEM IDCLD_SAVE, IDPNL_SAVE
  6098. END
  6099.  
  6100.  
  6101. ΓòÉΓòÉΓòÉ 4.1.2.26. HELPTABLE Statement ΓòÉΓòÉΓòÉ
  6102.  
  6103.  The HELPTABLE statement defines the contents of a help-table resource. 
  6104.  
  6105.  
  6106. ΓòÉΓòÉΓòÉ 4.1.2.26.1. Syntax ΓòÉΓòÉΓòÉ
  6107.  
  6108. HELPTABLE helptable-id
  6109. BEGIN
  6110. helpitem-definition
  6111.     .
  6112.     .
  6113.     .
  6114. END
  6115.  
  6116.  
  6117. ΓòÉΓòÉΓòÉ 4.1.2.26.2. Description ΓòÉΓòÉΓòÉ
  6118.  
  6119. A help-table resource contains a help-item entry for each application window, 
  6120. dialog box, and message box for which help is provided. 
  6121.  
  6122. You can provide any number of HELPTABLE statements in a resource script file, 
  6123. but each statement must specify a unique helptable-id value. You can also 
  6124. provide any number of helpitem-definition statements in the help table. These 
  6125. statements specify the application windows for which help is provided, the help 
  6126. subtables associated with each application window, and the extended help panels 
  6127. associated with each application window. 
  6128.  
  6129.  
  6130. ΓòÉΓòÉΓòÉ 4.1.2.26.3. Example ΓòÉΓòÉΓòÉ
  6131.  
  6132. This example creates a help-table resource whose help-table identifier is 1. 
  6133. Each HELPITEM statement specifies an application window, a help subtable, and 
  6134. an extended help panel. 
  6135.  
  6136. HELPTABLE 1
  6137. BEGIN
  6138.     HELPITEM IDWIN_FILEMENU, IDSUB_FILEMENU, IDEXT_APPHLP
  6139.     HELPITEM IDWIN_EDITMENU, IDSUB_EDITMENU, IDEXT_APPHLP
  6140. END
  6141.  
  6142.  
  6143. ΓòÉΓòÉΓòÉ 4.1.2.27. ICON Statement (Resource) ΓòÉΓòÉΓòÉ
  6144.  
  6145.  This form of the ICON statement defines an icon resource for an application. 
  6146.  
  6147.  
  6148. ΓòÉΓòÉΓòÉ 4.1.2.27.1. Syntax ΓòÉΓòÉΓòÉ
  6149.  
  6150. ICON icon-id [load-option] [mem-option] filename
  6151.  
  6152.  
  6153. ΓòÉΓòÉΓòÉ 4.1.2.27.2. Description ΓòÉΓòÉΓòÉ
  6154.  
  6155. An icon resource, typically created by using the Icon Editor, is a bit map 
  6156. defining the shape of the icon to be used for a given application. The ICON 
  6157. statement copies the icon resource from the file specified in the filename 
  6158. field and adds it to the application's other resources. An icon resource can be 
  6159. loaded when creating a window by using the WinCreateStdWindow function with the 
  6160. FS_ICON style. 
  6161.  
  6162. You can provide any number of ICON statements in a resource script file, but 
  6163. each statement must specify a unique icon-id value. 
  6164.  
  6165. An icon with an icon-id of 1 is the default icon. The RC program writes the 
  6166. icon not only to the resources in your executable file but also as the .ICON 
  6167. extended attribute. 
  6168.  
  6169.  
  6170. ΓòÉΓòÉΓòÉ 4.1.2.27.3. Example ΓòÉΓòÉΓòÉ
  6171.  
  6172. This example defines an icon whose icon identifier is 11. The icon resource is 
  6173. copied from the file custom.ico. 
  6174.  
  6175. ICON 11 custom.ico
  6176.  
  6177.  
  6178. ΓòÉΓòÉΓòÉ 4.1.2.28. ICON Statement (Control) ΓòÉΓòÉΓòÉ
  6179.  
  6180.  This form of the ICON statement creates an icon control. 
  6181.  
  6182.  
  6183. ΓòÉΓòÉΓòÉ 4.1.2.28.1. Syntax ΓòÉΓòÉΓòÉ
  6184.  
  6185. ICON icon-id, id, x, y, width, height [, style]
  6186.  
  6187.  
  6188. ΓòÉΓòÉΓòÉ 4.1.2.28.2. Description ΓòÉΓòÉΓòÉ
  6189.  
  6190. This control is an icon displayed in a dialog box. The ICON statement defines 
  6191. the icon-resource identifier, icon-control identifier, and  position and 
  6192. attributes of a control window. The predefined class for this control is 
  6193. WC_STATIC. If you do not specify a style, the default style is SS_ICON. For the 
  6194. ICON statement, the width and height fields are ignored; the icon automatically 
  6195. sizes itself. 
  6196.  
  6197. Use the ICON statement only in a DIALOG or WINDOW statement. 
  6198.  
  6199.  
  6200. ΓòÉΓòÉΓòÉ 4.1.2.28.3. Example ΓòÉΓòÉΓòÉ
  6201.  
  6202. This example creates an icon control whose icon identifier is 99. 
  6203.  
  6204. ICON 99, 101, 10, 10, 0, 0
  6205.  
  6206.  
  6207. ΓòÉΓòÉΓòÉ 4.1.2.29. LISTBOX Statement ΓòÉΓòÉΓòÉ
  6208.  
  6209.  The LISTBOX statement creates commonly-used controls for a dialog box or 
  6210. window. 
  6211.  
  6212.  
  6213. ΓòÉΓòÉΓòÉ 4.1.2.29.1. Syntax ΓòÉΓòÉΓòÉ
  6214.  
  6215. LISTBOX id, x, y, width, height [, style]
  6216.  
  6217.  
  6218. ΓòÉΓòÉΓòÉ 4.1.2.29.2. Description ΓòÉΓòÉΓòÉ
  6219.  
  6220. The control is a rectangle containing a list of user-selectable strings, such 
  6221. as file names. 
  6222.  
  6223. The LISTBOX statement defines the identifier, dimensions, and attributes of a 
  6224. control window. The predefined class for this control is WC_LISTBOX. If you do 
  6225. not specify a style, the default style is WS_TABSTOP. 
  6226.  
  6227. Use the LISTBOX statement only in a DIALOG or WINDOW statement. 
  6228.  
  6229.  
  6230. ΓòÉΓòÉΓòÉ 4.1.2.29.3. Example ΓòÉΓòÉΓòÉ
  6231.  
  6232. This example creates a list-box control whose identifier is 101. 
  6233.  
  6234. LISTBOX 101, 10, 10, 100, 100
  6235.  
  6236.  
  6237. ΓòÉΓòÉΓòÉ 4.1.2.30. LTEXT Statement ΓòÉΓòÉΓòÉ
  6238.  
  6239.  The LTEXT statement creates a left-aligned text control. 
  6240.  
  6241.  
  6242. ΓòÉΓòÉΓòÉ 4.1.2.30.1. Syntax ΓòÉΓòÉΓòÉ
  6243.  
  6244. LTEXT text, id, x, y, width, height [, style]
  6245.  
  6246.  
  6247. ΓòÉΓòÉΓòÉ 4.1.2.30.2. Description ΓòÉΓòÉΓòÉ
  6248.  
  6249. The control is a simple rectangle displaying the given text left-aligned in the 
  6250. rectangle. The text is formatted before it is displayed. Words that would 
  6251. extend past the end of a line are automatically wrapped to the beginning of the 
  6252. next line. The LTEXT statement defines the text, identifier, dimensions, and 
  6253. attributes of the control. The predefined class for this control is WC_STATIC. 
  6254. If you do not specify a style, the default style is SS_TEXT, DT_LEFT, and 
  6255. WS_GROUP. 
  6256.  
  6257. Use the LTEXT statement only in a DIALOG or WINDOW statement. 
  6258.  
  6259.  
  6260. ΓòÉΓòÉΓòÉ 4.1.2.30.3. Example ΓòÉΓòÉΓòÉ
  6261.  
  6262. This example creates a left-aligned text control that is labeled "Filename." 
  6263.  
  6264. LTEXT "Filename", 101, 10, 10, 100, 100
  6265.  
  6266.  
  6267. ΓòÉΓòÉΓòÉ 4.1.2.31. MENU Statement ΓòÉΓòÉΓòÉ
  6268.  
  6269.  The MENU statement defines the contents of a menu resource. 
  6270.  
  6271.  
  6272. ΓòÉΓòÉΓòÉ 4.1.2.31.1. Syntax ΓòÉΓòÉΓòÉ
  6273.  
  6274. MENU menu-id [load-option] [mem-option]
  6275. BEGIN
  6276. menuitem-definition
  6277.     .
  6278.     .
  6279.     .
  6280. END
  6281.  
  6282.  
  6283. ΓòÉΓòÉΓòÉ 4.1.2.31.2. Description ΓòÉΓòÉΓòÉ
  6284.  
  6285. A menu resource is a collection of information that defines the appearance and 
  6286. function of an application menu. A menu is a special input tool that lets a 
  6287. user choose commands from a list of command names. A menu resource can be 
  6288. loaded from the executable file when needed by using the WinLoadMenu function. 
  6289.  
  6290. You can provide any number of MENU statements in a resource script file, but 
  6291. each statement must specify a unique menu-id value. You can provide any number 
  6292. of menuitem-definition statements in the menu. These define the submenus and 
  6293. menu items (commands) in the menu. The order of the statements defines the 
  6294. order of the menu items. 
  6295.  
  6296.  
  6297. ΓòÉΓòÉΓòÉ 4.1.2.31.3. Example ΓòÉΓòÉΓòÉ
  6298.  
  6299. This example creates a menu resource whose menu identifier is 1. The menu 
  6300. contains a menu item named Alpha and a submenu named Beta. The submenu contains 
  6301. two menu items:  Item 1 and Item 2. 
  6302.  
  6303. =
  6304. MENU 1
  6305. BEGIN
  6306.     MENUITEM "Alpha", 100
  6307.     SUBMENU "Beta", 101
  6308.     BEGIN
  6309.         MENUITEM "Item 1", 200
  6310.         MENUITEM "Item 2", 201, , MIA_CHECKED
  6311.     END
  6312. END
  6313.  
  6314.  
  6315. ΓòÉΓòÉΓòÉ 4.1.2.32. MENUITEM Statement ΓòÉΓòÉΓòÉ
  6316.  
  6317.  The MENUITEM statement creates a menu item for a menu. 
  6318.  
  6319.  
  6320. ΓòÉΓòÉΓòÉ 4.1.2.32.1. Syntax ΓòÉΓòÉΓòÉ
  6321.  
  6322. MENUITEM text, menu-id [, menuitem-style [, menuitem-attributerbrk.]
  6323.  
  6324.  
  6325. ΓòÉΓòÉΓòÉ 4.1.2.32.2. Description ΓòÉΓòÉΓòÉ
  6326.  
  6327. This statement defines the text, identifier, and attributes of a menu item. Use 
  6328. the MENUITEM statement only in a MENU or SUBMENU statement. 
  6329.  
  6330. The system displays the text when it displays the corresponding menu. If the 
  6331. user chooses the menu item, the system generates a WM_COMMAND message that 
  6332. includes the specified menu-item identifier and sends it to the window owning 
  6333. the menu. 
  6334.  
  6335. You can provide any number of MENUITEM statements, but each must have a unique 
  6336. menu-id value. 
  6337.  
  6338. The alternative form of the MENUITEM statement, MENUITEM SEPARATOR, creates a 
  6339. menu separator. A menu separator is a horizontal dividing bar between two menu 
  6340. items in a submenu. The separator is not active - that is, the user cannot 
  6341. choose it, it has no text associated with it, and it has no identifier. 
  6342.  
  6343. You can use the \t or \a character combination in any item name. The \t 
  6344. character inserts a tab when the name is displayed and is typically used to 
  6345. separate the menu-item name from the name of an accelerator key. The \a 
  6346. character aligns to the right all text that follows it. These characters are 
  6347. intended to be used for menu items in submenus only. The width of the displayed 
  6348. submenu is always adjusted so there is at least one space (and usually more) 
  6349. between any pieces of text separated by a \t or \a. (When compiling the menu 
  6350. resource, the compiler stores the \t and \a characters as control characters. 
  6351. For example, the \t is stored as 0x09.) 
  6352.  
  6353. A tilde ( ~ ) character in the item name indicates that the following character 
  6354. is used as a mnemonic character for the item. When the menu is displayed, the 
  6355. tilde is not shown, but the mnemonic character is underlined. The user can 
  6356. choose the menu item by pressing the key corresponding to the underlined 
  6357. mnemonic character. 
  6358.  
  6359.  
  6360. ΓòÉΓòÉΓòÉ 4.1.2.32.3. Example ΓòÉΓòÉΓòÉ
  6361.  
  6362. This example creates a menu item named Alpha. The item identifier is 101. 
  6363.  
  6364. MENUITEM "Alpha", 101
  6365.  
  6366. This example creates a menu item named Beta. The item identifier is 102. The 
  6367. menu item has a text style and a checked attribute. 
  6368.  
  6369. MENUITEM "Beta", 102, MIS_TEXT, MIA_CHECKED
  6370.  
  6371. This example creates a menu separator between menu items named Gamma and Delta. 
  6372.  
  6373. MENUITEM "Gamma", 103
  6374. MENUITEM SEPARATOR
  6375. MENUITEM "Delta", 104
  6376.  
  6377. This example creates a menu item that has a bit map instead of a name. The 
  6378. bit-map identifier, 1, is first defined using a BITMAP statement. The 
  6379. identifier for the menu item is 301. Note that a # sign must be placed in front 
  6380. of the bit map identifier in the MENUITEM statement. 
  6381.  
  6382. BITMAP 1 mybitmap.bmp
  6383.  
  6384. MENUITEM "#1", 301, MIS_BITMAP
  6385.  
  6386.  
  6387. ΓòÉΓòÉΓòÉ 4.1.2.33. MESSAGETABLE Statement ΓòÉΓòÉΓòÉ
  6388.  
  6389.  The MESSAGETABLE statement creates one or more string resources for an 
  6390. application. 
  6391.  
  6392.  
  6393. ΓòÉΓòÉΓòÉ 4.1.2.33.1. Syntax ΓòÉΓòÉΓòÉ
  6394.  
  6395. MESSAGETABLE [load-option] [mem-option]
  6396. BEGIN
  6397. string-id string-definition
  6398.     .
  6399.     .
  6400.     .
  6401. END
  6402.  
  6403.  
  6404. ΓòÉΓòÉΓòÉ 4.1.2.33.2. Description ΓòÉΓòÉΓòÉ
  6405.  
  6406. A string resource is a null-terminated character string that has a unique 
  6407. string identifier. A string resource can be loaded from the executable file 
  6408. when needed by using the DosGetResource function with the RT_MESSAGE resource 
  6409. type. RT_MESSAGE resources are bundled together in groups of 16, with any 
  6410. missing IDs replaced with zero length strings. Each group, or bundle, is 
  6411. assigned a unique sequential ID. The resource string ID is not necessarily the 
  6412. same as the ID specified when using DosGetResource. The formula for calculating 
  6413. the ID of the resource bundle, for use in DosGetResource, is as follows: 
  6414.  
  6415. bundle ID = ( id / 16) +1,
  6416. where id is the string ID assigned in the RC file. 
  6417.  
  6418. Thus, bundle 1 contains strings 0 to 15, bundle 2 contains strings 16 to 31, 
  6419. and so on. Once the address of the bundle has been returned by DosGetResource 
  6420. (using the calculated ID), the buffer can be parsed to locate the particular 
  6421. string within the bundle. The number of the string is calculated by the 
  6422. formula: 
  6423.  
  6424. string = id % 16
  6425. (string = remainder for id/16). 
  6426.  
  6427. The buffer returned consists of the CodePage of the strings in the first 
  6428. USHORT, followed by the 16 strings in the bundle. The first BYTE of each string 
  6429. is the length of the string (including the null terminator), followed by the 
  6430. string and the terminator. A zero length string is represented by two bytes: 
  6431. 01 (string length) followed by the null terminator. 
  6432.  
  6433. You can provide any number of MESSAGETABLE statements in a resource script 
  6434. file. The compiler treats all the strings from the various MESSAGETABLE 
  6435. statements as if they belonged to a single statement. This means that no two 
  6436. strings in a resource script file can have the same string identifier. 
  6437.  
  6438. Although the MESSAGETABLE and STRINGTABLE statements are nearly identical, most 
  6439. applications use the STRINGTABLE statement instead of the MESSAGETABLE 
  6440. statement to create string resources. 
  6441.  
  6442. You can continue a string on multiple lines by terminating the line with a 
  6443. backslash (\) or by terminating the line with a double quotation mark (") and 
  6444. then starting the next line with a double quotation mark. 
  6445.  
  6446.  
  6447. ΓòÉΓòÉΓòÉ 4.1.2.33.3. Example ΓòÉΓòÉΓòÉ
  6448.  
  6449. This example creates two string resources whose string identifiers are 1 and 2. 
  6450.  
  6451. MESSAGETABLE
  6452. BEGIN
  6453.     1 "Filename not found"
  6454.     2 "Cannot open file for reading"
  6455. END
  6456.  
  6457.  
  6458. ΓòÉΓòÉΓòÉ 4.1.2.34. MLE Statement ΓòÉΓòÉΓòÉ
  6459.  
  6460.  The MLE statement creates a multiple-line entry-field control. 
  6461.  
  6462.  
  6463. ΓòÉΓòÉΓòÉ 4.1.2.34.1. Syntax ΓòÉΓòÉΓòÉ
  6464.  
  6465. MLE text, id, x, y, width, height [, style]
  6466.  
  6467.  
  6468. ΓòÉΓòÉΓòÉ 4.1.2.34.2. Description ΓòÉΓòÉΓòÉ
  6469.  
  6470. The control is a rectangle in which the user can type and edit multiple lines 
  6471. of text. The control displays a pointer when the user selects it. The user can 
  6472. then use the keyboard to enter text or edit the existing text. Editing keys 
  6473. include the BACKSPACE and DELETE keys. By using the mouse or the DIRECTION 
  6474. keys, the user can select the characters to delete or select the place to 
  6475. insert new characters. The MLE statement, which you can use only in a DIALOG or 
  6476. WINDOW statement, defines the text, identifier, dimensions, and attributes of a 
  6477. control window. The predefined class for this control is WC_MLE. If you do not 
  6478. specify a style, the default style is MLS_BORDER, WS_GROUP, and WS_TABSTOP. 
  6479.  
  6480.  
  6481. ΓòÉΓòÉΓòÉ 4.1.2.34.3. Example ΓòÉΓòÉΓòÉ
  6482.  
  6483. This example creates a multiple-line entry-field control that is not labeled. 
  6484.  
  6485. MLE "", 101, 10, 10, 50, 100
  6486.  
  6487.  
  6488. ΓòÉΓòÉΓòÉ 4.1.2.35. NOTEBOOK Statement ΓòÉΓòÉΓòÉ
  6489.  
  6490.  The NOTEBOOK statement creates a notebook control within the dialog window. 
  6491.  
  6492.  
  6493. ΓòÉΓòÉΓòÉ 4.1.2.35.1. Syntax ΓòÉΓòÉΓòÉ
  6494.  
  6495. NOTEBOOK   id, x, y, width, height [, style]
  6496.  
  6497.  
  6498. ΓòÉΓòÉΓòÉ 4.1.2.35.2. Description ΓòÉΓòÉΓòÉ
  6499.  
  6500. This control is used to organize information on individual pages so that it can 
  6501. be located and displayed easily. The NOTEBOOK statement defines the identifier, 
  6502. position, dimensions, and attributes of a notebook control. The predefined 
  6503. class for this control is WC_NOTEBOOK. If you do not specify a style, the 
  6504. default style is WS_TABSTOP and WS_VISIBLE. 
  6505.  
  6506. Use the NOTEBOOK statement only in a DIALOG or WINDOW statement. 
  6507.  
  6508.  
  6509. ΓòÉΓòÉΓòÉ 4.1.2.35.3. Example ΓòÉΓòÉΓòÉ
  6510.  
  6511. This example creates a notebook control at position (20, 20) within the dialog 
  6512. window. The notebook has a width of 200 character units and a height of 50 
  6513. character units. Its resource ID is 201. The tabs style BKS_ROUNDEDTABS 
  6514. specification overrides the notebook default style of square tabs. The default 
  6515. styles WS_TABSTOP and WS_GROUP are both in effect, although only the latter is 
  6516. specified. 
  6517.  
  6518. #define    IDC_NOTEBOOK     201
  6519. #define    IDD_NOTEBOOKDLG  503
  6520. DIALOG "Notebook", IDD_NOTEBOOKDLG, 11, 11, 420, 420, FS_NOBYTEALIGN |
  6521.         WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  6522.   BEGIN
  6523.     NOTEBOOK   IDC_NOTEBOOK, 20, 20, 200, 400, BKS_ROUNDEDTABS | WS_GROUP
  6524.   END
  6525.  
  6526.  
  6527. ΓòÉΓòÉΓòÉ 4.1.2.36. POINTER Statement ΓòÉΓòÉΓòÉ
  6528.  
  6529.  The POINTER statement defines a pointer resource for an application. 
  6530.  
  6531.  
  6532. ΓòÉΓòÉΓòÉ 4.1.2.36.1. Syntax ΓòÉΓòÉΓòÉ
  6533.  
  6534. POINTER pointer-id [load-option] [mem-option] filename
  6535.  
  6536.  
  6537. ΓòÉΓòÉΓòÉ 4.1.2.36.2. Description ΓòÉΓòÉΓòÉ
  6538.  
  6539. A pointer resource, typically created by using the OS/2 Icon Editor, is a bit 
  6540. map defining the shape of the mouse pointer on the screen. The POINTER 
  6541. statement copies the pointer resource from the file specified in the filename 
  6542. field and adds it to the application's other resources. A pointer resource can 
  6543. be loaded from the executable file when needed by using the WinLoadPointer 
  6544. function. 
  6545.  
  6546. You can provide any number of POINTER statements in a resource script file, but 
  6547. each statement must specify a unique pointer-id value. 
  6548.  
  6549.  
  6550. ΓòÉΓòÉΓòÉ 4.1.2.36.3. Example ΓòÉΓòÉΓòÉ
  6551.  
  6552. This example defines a pointer whose pointer identifier is 10. The pointer 
  6553. resource is copied from the file custom.cur. 
  6554.  
  6555. POINTER 10 custom.cur
  6556.  
  6557.  
  6558. ΓòÉΓòÉΓòÉ 4.1.2.37. PRESPARAMS Statement ΓòÉΓòÉΓòÉ
  6559.  
  6560.  The PRESPARAMS statement defines presentation fields that customize a dialog 
  6561. box, menu, window, or control. 
  6562.  
  6563.  
  6564. ΓòÉΓòÉΓòÉ 4.1.2.37.1. Syntax ΓòÉΓòÉΓòÉ
  6565.  
  6566. PRESPARAMS presparam, value [, value]  ...
  6567.  
  6568.  
  6569. ΓòÉΓòÉΓòÉ 4.1.2.37.2. Description ΓòÉΓòÉΓòÉ
  6570.  
  6571. PRESPARAMS data is a series of types and values. The window procedure of the 
  6572. dialog box, menu, window, or control receives and processes this data when the 
  6573. item is created. The data for custom controls can be in any format. 
  6574.  
  6575. PRESPARAMS is often used to supply data to control the appearance of the 
  6576. customized window when it is first created. For example, the PRESPARAMS 
  6577. statement may specify the colors to be used in the window. 
  6578.  
  6579.  
  6580. ΓòÉΓòÉΓòÉ 4.1.2.37.3. Example ΓòÉΓòÉΓòÉ
  6581.  
  6582. This example creates a menu resource with a menu identifier of 1. The 
  6583. PRESPARAMS statement specifies that the following three menu items be displayed 
  6584. in the 12-point Helvetica** font. 
  6585.  
  6586. MENU 1
  6587. BEGIN
  6588.     PRESPARAMS PP_FONTNAMESIZE, "12.Helv"
  6589.     MENUITEM "New", 100
  6590.     MENUITEM "Open", 101
  6591.     MENUITEM "Save", 102
  6592. END
  6593.  
  6594.  
  6595. ΓòÉΓòÉΓòÉ 4.1.2.38. PUSHBUTTON Statement ΓòÉΓòÉΓòÉ
  6596.  
  6597.  The PUSHBUTTON statement creates a push-button control. 
  6598.  
  6599.  
  6600. ΓòÉΓòÉΓòÉ 4.1.2.38.1. Syntax ΓòÉΓòÉΓòÉ
  6601.  
  6602. PUSHBUTTON text, id, x, y, width, height [, style ]
  6603.  
  6604.  
  6605. ΓòÉΓòÉΓòÉ 4.1.2.38.2. Description ΓòÉΓòÉΓòÉ
  6606.  
  6607. The control is a round-cornered rectangle containing the given text. The 
  6608. control sends a message to its parent whenever the user chooses the control. 
  6609. The PUSHBUTTON statement defines the text, identifier, dimensions, and 
  6610. attributes of a control window. The predefined class for this control is 
  6611. WC_BUTTON. If you do not specify a style, the default style is BS_PUSHBUTTON 
  6612. and WS_TABSTOP. 
  6613.  
  6614. Use the PUSHBUTTON statement only in a DIALOG or WINDOW statement. 
  6615.  
  6616.  
  6617. ΓòÉΓòÉΓòÉ 4.1.2.38.3. Example ΓòÉΓòÉΓòÉ
  6618.  
  6619. This example creates a push-button control that is labeled "OK." 
  6620.  
  6621. PUSHBUTTON "OK", 101, 10, 10, 100, 100
  6622.  
  6623.  
  6624. ΓòÉΓòÉΓòÉ 4.1.2.39. RADIOBUTTON Statement ΓòÉΓòÉΓòÉ
  6625.  
  6626.  The RADIOBUTTON statement creates a radio-button control, which is a small 
  6627. circle that has the given text displayed to its right. 
  6628.  
  6629.  
  6630. ΓòÉΓòÉΓòÉ 4.1.2.39.1. Syntax ΓòÉΓòÉΓòÉ
  6631.  
  6632. RADIOBUTTON text, id, x, y, width, height [, style]
  6633.  
  6634.  
  6635. ΓòÉΓòÉΓòÉ 4.1.2.39.2. Description ΓòÉΓòÉΓòÉ
  6636.  
  6637. The control highlights the circle and sends a message to its parent window when 
  6638. the user selects the button. The control removes the highlight and sends a 
  6639. message when the button is next selected. The RADIOBUTTON statement defines the 
  6640. text, identifier, dimensions, and attributes of a control window. The 
  6641. predefined class for this control is WC_BUTTON. If you do not specify a style, 
  6642. the default style is BS_RADIOBUTTON. 
  6643.  
  6644. Use the RADIOBUTTON statement only in a DIALOG or WINDOW statement. 
  6645.  
  6646.  
  6647. ΓòÉΓòÉΓòÉ 4.1.2.39.3. Example ΓòÉΓòÉΓòÉ
  6648.  
  6649. This example creates a radio-button control that is labeled "Italic." 
  6650.  
  6651. RADIOBUTTON "Italic", 101, 10, 10, 24, 50
  6652.  
  6653.  
  6654. ΓòÉΓòÉΓòÉ 4.1.2.40. RCDATA Statement ΓòÉΓòÉΓòÉ
  6655.  
  6656.  The RCDATA statement defines a custom-data resource for an application. 
  6657.  
  6658.  
  6659. ΓòÉΓòÉΓòÉ 4.1.2.40.1. Syntax ΓòÉΓòÉΓòÉ
  6660.  
  6661. RCDATA resource-id
  6662. BEGIN
  6663. data-definition [, data-definition]   ...
  6664.     .
  6665.     .
  6666.     .
  6667. END
  6668.  
  6669.  
  6670. ΓòÉΓòÉΓòÉ 4.1.2.40.2. Description ΓòÉΓòÉΓòÉ
  6671.  
  6672. The custom data can be in whatever format the application requires. You can 
  6673. provide any number of RCDATA statements in a resource script file, but each 
  6674. statement must specify a unique resource-id value. A custom-data resource can 
  6675. be loaded from the executable file when needed by using the DosGetResource or 
  6676. DosGetResource2 functions with the RT_RCDATA resource type. 
  6677.  
  6678.  
  6679. ΓòÉΓòÉΓòÉ 4.1.2.40.3. Example ΓòÉΓòÉΓòÉ
  6680.  
  6681. This example defines custom data that has a resource identifier of 5. 
  6682.  
  6683. RCDATA 5
  6684. BEGIN
  6685.     "E. A. Poe", 1849, -32, 3L, 0x8000000l, 3+4+5
  6686. END
  6687.  
  6688.  
  6689. ΓòÉΓòÉΓòÉ 4.1.2.41. RCINCLUDE Statement ΓòÉΓòÉΓòÉ
  6690.  
  6691.  The RCINCLUDE statement causes RC to process the resource script file 
  6692. specified in the filename field along with the current resource script file. 
  6693.  
  6694.  
  6695. ΓòÉΓòÉΓòÉ 4.1.2.41.1. Syntax ΓòÉΓòÉΓòÉ
  6696.  
  6697. RCINCLUDE filename
  6698.  
  6699.  
  6700. ΓòÉΓòÉΓòÉ 4.1.2.41.2. Description ΓòÉΓòÉΓòÉ
  6701.  
  6702. The contents of both script files are compiled by RC and the results are placed 
  6703. in one binary resource file and/or executable file. 
  6704.  
  6705. RCINCLUDE statements are processed before any other processing is done, 
  6706. including preprocessing by RCPP.EXE, which removes comments, replaces values in 
  6707. the define directives, and so forth. 
  6708.  
  6709. When specifying a high performance file system (HPFS) file name on an RCINCLUDE 
  6710. statement, enclose the path and file name in double quotes; for example: 
  6711.  
  6712.    RCINCLUDE "d:\project\long dialog.dlg"
  6713.  
  6714. Double quotes enable the resource compiler to recognize a name containing 
  6715. embedded blank characters. 
  6716.  
  6717.  
  6718. ΓòÉΓòÉΓòÉ 4.1.2.41.3. Example ΓòÉΓòÉΓòÉ
  6719.  
  6720. This example includes the file DIALOGS.RC as part of the current resource 
  6721. script file. 
  6722.  
  6723. RCINCLUDE dialogs.rc
  6724.  
  6725.  
  6726. ΓòÉΓòÉΓòÉ 4.1.2.42. RESOURCE Statement ΓòÉΓòÉΓòÉ
  6727.  
  6728.  The RESOURCE statement defines a custom resource for an application. 
  6729.  
  6730.  
  6731. ΓòÉΓòÉΓòÉ 4.1.2.42.1. Syntax ΓòÉΓòÉΓòÉ
  6732.  
  6733. RESOURCE type-id resource-id [load-option] [mem-option] filename
  6734.  
  6735.  
  6736. ΓòÉΓòÉΓòÉ 4.1.2.42.2. Description ΓòÉΓòÉΓòÉ
  6737.  
  6738. A custom resource can be any data in any format. The RESOURCE statement copies 
  6739. the custom resource from the specified file and adds it to the application's 
  6740. other resources. A custom resource can be loaded from the executable file when 
  6741. needed by using the DosGetResource or DosGetResource2 function and specifying 
  6742. the resource's type and resource identifier. 
  6743.  
  6744. You can provide any number of RESOURCE statements in a resource script file, 
  6745. but each statement must specify a unique combination of type-id and resource-id 
  6746. values. That is, RESOURCE statements having the same type-id value are 
  6747. permitted as long as the resource-id value for each is unique. 
  6748.  
  6749.  
  6750. ΓòÉΓòÉΓòÉ 4.1.2.42.3. Example ΓòÉΓòÉΓòÉ
  6751.  
  6752. This example defines a custom resource whose type identifier is 300 and whose 
  6753. resource identifier is 14. The custom resource is copied from the file 
  6754. CUSTOM.RES. 
  6755.  
  6756. RESOURCE 300 14 custom.res
  6757.  
  6758.  
  6759. ΓòÉΓòÉΓòÉ 4.1.2.43. RTEXT Statement ΓòÉΓòÉΓòÉ
  6760.  
  6761.  The RTEXT statement creates a right-aligned text control. 
  6762.  
  6763.  
  6764. ΓòÉΓòÉΓòÉ 4.1.2.43.1. Syntax ΓòÉΓòÉΓòÉ
  6765.  
  6766. RTEXT text, id, x, y, width, height [, style]
  6767.  
  6768.  
  6769. ΓòÉΓòÉΓòÉ 4.1.2.43.2. Description ΓòÉΓòÉΓòÉ
  6770.  
  6771. The control is a simple rectangle displaying the given text right-aligned in 
  6772. the rectangle. The text is formatted before it is displayed. Words that would 
  6773. extend past the end of a line are automatically wrapped to the beginning of the 
  6774. next line. The RTEXT statement, which you can use only in a DIALOG or WINDOW 
  6775. statement, defines the text, identifier, dimensions, and attributes of the 
  6776. control. The predefined class for the control is WC_STATIC. If you do not 
  6777. specify a style, the default style is SS_TEXT, DT_RIGHT, and WS_GROUP. 
  6778.  
  6779.  
  6780. ΓòÉΓòÉΓòÉ 4.1.2.43.3. Example ΓòÉΓòÉΓòÉ
  6781.  
  6782. This example creates a right-aligned text control that is labeled "Filename." 
  6783.  
  6784. RTEXT "Filename", 101, 10, 10, 100, 100
  6785.  
  6786.  
  6787. ΓòÉΓòÉΓòÉ 4.1.2.44. SLIDER Statement ΓòÉΓòÉΓòÉ
  6788.  
  6789.  The SLIDER statement creates a slider control within the dialog window. 
  6790.  
  6791.  
  6792. ΓòÉΓòÉΓòÉ 4.1.2.44.1. Syntax ΓòÉΓòÉΓòÉ
  6793.  
  6794. SLIDER   id, x, y, width, height [, style]
  6795.  
  6796.  
  6797. ΓòÉΓòÉΓòÉ 4.1.2.44.2. Description ΓòÉΓòÉΓòÉ
  6798.  
  6799. This control lets the user set, display, or modify a value by moving a slider 
  6800. arm along a slider shaft. The SLIDER statement defines the identifier, 
  6801. position, dimensions, and attributes of a slider control. The predefined class 
  6802. for this control is WC_SLIDER. If you do not specify a style, the default style 
  6803. is WS_TABSTOP and WS_VISIBLE. 
  6804.  
  6805. Use the SLIDER statement only in a DIALOG or WINDOW statement. 
  6806.  
  6807.  
  6808. ΓòÉΓòÉΓòÉ 4.1.2.44.3. Example ΓòÉΓòÉΓòÉ
  6809.  
  6810. This example creates a slider control at position (40, 30) within the dialog 
  6811. window.  The slider has a width of 120 character units and a height of 2 
  6812. character units.  Its resource ID is 101. The style specification 
  6813. SLS_BUTTONSLEFT adds buttons to the left of the slider shaft.  The default 
  6814. styles WS_TABSTOP and WS_VISIBLE are both in effect, although only the latter 
  6815. is specified. 
  6816.  
  6817. #define    IDC_SLIDER       101
  6818. #define    IDD_SLIDERDLG    502
  6819. DIALOG "Slider", IDD_SLIDERDLG, 11, 11, 200, 240, FS_NOBYTEALIGN |
  6820.         WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  6821.   BEGIN
  6822.     SLIDER   IDC_SLIDER, 40, 30, 120, 16, SLS_BUTTONSLEFT | WS_VISIBLE
  6823.   END
  6824.  
  6825.  
  6826. ΓòÉΓòÉΓòÉ 4.1.2.45. SPINBUTTON Statement ΓòÉΓòÉΓòÉ
  6827.  
  6828.  The SPINBUTTON statement creates a spin-button control within the dialog 
  6829. window. 
  6830.  
  6831.  
  6832. ΓòÉΓòÉΓòÉ 4.1.2.45.1. Syntax ΓòÉΓòÉΓòÉ
  6833.  
  6834. SPINBUTTON   id, x, y, width, height [, style]
  6835.  
  6836.  
  6837. ΓòÉΓòÉΓòÉ 4.1.2.45.2. Description ΓòÉΓòÉΓòÉ
  6838.  
  6839. This control gives the user quick access to a finite set of data. The 
  6840. SPINBUTTON statement defines the identifier, position, dimensions, and 
  6841. attributes of a spin-button control. The predefined class for this control is 
  6842. WC_SPINBUTTON. If you do not specify a style, the default style is WS_TABSTOP, 
  6843. WS_VISIBLE, and SPBS_MASTER. 
  6844.  
  6845. Use the SPINBUTTON statement only in a DIALOG or WINDOW statement. 
  6846.  
  6847.  
  6848. ΓòÉΓòÉΓòÉ 4.1.2.45.3. Example ΓòÉΓòÉΓòÉ
  6849.  
  6850. This example creates a spin-button control at position (80, 20) within the 
  6851. dialog window. The spin button has a width of 60 character units and a height 
  6852. of 3 character units. Its resource ID is 302. The style specification 
  6853. SPBS_NUMERICONLY creates a control which accepts only the digits 0-9 and 
  6854. virtual keys. The default styles SPBS_MASTER, WS_TABSTOP, and WS_VISIBLE are 
  6855. all in effect, although only WS_TABSTOP is specified. 
  6856.  
  6857. #define    IDC_SPINBUTTON   302
  6858. #define    IDD_SPINDLG    502
  6859. DIALOG "Spin button", IDD_SPINDLG, 11, 11, 200, 240, FS_NOBYTEALIGN |
  6860.         WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  6861.   BEGIN
  6862.     SPINBUTTON  IDC_SPINBUTTON, 80, 20, 60, 24, SPBS_NUMERICONLY | WS_TABSTOP
  6863.   END
  6864.  
  6865.  
  6866. ΓòÉΓòÉΓòÉ 4.1.2.46. STRINGTABLE Statement ΓòÉΓòÉΓòÉ
  6867.  
  6868.  The STRINGTABLE statement creates one or more string resources for an 
  6869. application. 
  6870.  
  6871.  
  6872. ΓòÉΓòÉΓòÉ 4.1.2.46.1. Syntax ΓòÉΓòÉΓòÉ
  6873.  
  6874. STRINGTABLE [load-option] [mem-option]
  6875. BEGIN
  6876. string-id string-definition
  6877.     .
  6878.     .
  6879.     .
  6880. END
  6881.  
  6882.  
  6883. ΓòÉΓòÉΓòÉ 4.1.2.46.2. Description ΓòÉΓòÉΓòÉ
  6884.  
  6885. A string resource is a null-terminated character string that has a unique 
  6886. string identifier. A string resource can be loaded from the executable file 
  6887. when needed by using WinLoadString or with DosGetResource with the RT_STRING 
  6888. resource type. RT_STRING resources are bundled together in groups of 16, with 
  6889. any missing IDs replaced with zero length strings. Each group, or bundle, is 
  6890. assigned a unique sequential ID. The resource string ID is not necessarily the 
  6891. same as the ID specified when using DosGetResource. The formula for calculating 
  6892. the ID of the resource bundle, for use in DosGetResource, is as follows: 
  6893.  
  6894. bundle ID = ( id / 16) +1
  6895. where id is the string ID assigned in the RC file. 
  6896.  
  6897. Thus, bundle 1 contains strings 0 to 15, bundle 2 contains strings 16 to 31, 
  6898. and so on. Once the address of the bundle has been returned by DosGetResource 
  6899. (using the calculated ID), the buffer can be parsed to locate the particular 
  6900. string within the bundle. The number of the string is calculated by the 
  6901. formula: 
  6902.  
  6903. string = id % 16
  6904. (string = remainder for id/16). 
  6905.  
  6906. The buffer returned consists of the CodePage of the strings in the first 
  6907. USHORT, followed by the 16 strings in the bundle. The first BYTE of each string 
  6908. is the length of the string (including the null terminator), followed by the 
  6909. string and the terminator. A zero length string is represented by two bytes: 
  6910. 01 (string length) followed by the null terminator. 
  6911.  
  6912. You can provide any number of STRINGTABLE statements in a resource script file. 
  6913. The compiler treats all the strings from the various STRINGTABLE statements as 
  6914. if they belonged to a single statement. This means that no two strings in a 
  6915. resource script file can have the same string identifier. 
  6916.  
  6917. You can continue a string on multiple lines by terminating the line with a 
  6918. backslash (\) or by terminating the line with a double quotation mark (") and 
  6919. then starting the next line with a double quotation mark. 
  6920.  
  6921.  
  6922. ΓòÉΓòÉΓòÉ 4.1.2.46.3. Example ΓòÉΓòÉΓòÉ
  6923.  
  6924. This example creates two string resources whose string identifiers are 1 and 2. 
  6925.  
  6926. #define IDS_HELLO    1
  6927. #define IDS_GOODBYE  2
  6928.  
  6929. STRINGTABLE
  6930. BEGIN
  6931.     IDS_HELLO   "Hello"
  6932.     IDS_GOODBYE "Goodbye"
  6933. END
  6934.  
  6935.  
  6936. ΓòÉΓòÉΓòÉ 4.1.2.47. SUBITEMSIZE Statement ΓòÉΓòÉΓòÉ
  6937.  
  6938.  The SUBITEMSIZE statement specifies the size, in words, of each help subitem 
  6939. in a help subtable. 
  6940.  
  6941.  
  6942. ΓòÉΓòÉΓòÉ 4.1.2.47.1. Syntax ΓòÉΓòÉΓòÉ
  6943.  
  6944. SUBITEMSIZE  size
  6945.  
  6946.  
  6947. ΓòÉΓòÉΓòÉ 4.1.2.47.2. Description ΓòÉΓòÉΓòÉ
  6948.  
  6949. The minimum size is two words, and each help subitem in a help subtable must be 
  6950. the same size. When used, the SUBITEMSIZE statement must appear after the 
  6951. HELPSUBTABLE statement and before the BEGIN keyword. 
  6952.  
  6953. You do not need to use the SUBITEMSIZE statement if the help subitems are the 
  6954. default size (2). 
  6955.  
  6956.  
  6957. ΓòÉΓòÉΓòÉ 4.1.2.47.3. Example ΓòÉΓòÉΓòÉ
  6958.  
  6959. The SUBITEMSIZE statement in this example specifies that each HELPSUBITEM 
  6960. statement contains three words. 
  6961.  
  6962. HELPSUBTABLE 1
  6963. SUBITEMSIZE 3
  6964. BEGIN
  6965.     HELPSUBITEM IDCLD_FILEMENU, IDHP_FILEMENU, 5
  6966.     HELPSUBITEM IDCLD_HELPMENU, IDHP_HELPMENU, 6
  6967. END
  6968.  
  6969.  
  6970. ΓòÉΓòÉΓòÉ 4.1.2.48. SUBMENU Statement ΓòÉΓòÉΓòÉ
  6971.  
  6972.  The SUBMENU statement creates a submenu for a given menu. 
  6973.  
  6974.  
  6975. ΓòÉΓòÉΓòÉ 4.1.2.48.1. Syntax ΓòÉΓòÉΓòÉ
  6976.  
  6977. SUBMENU text, submenu-id [, menuitem-style[, menuitem-attributerbrk.]
  6978. BEGIN
  6979. menuitem-definition
  6980.     .
  6981.     .
  6982.     .
  6983. END
  6984.  
  6985.  
  6986. ΓòÉΓòÉΓòÉ 4.1.2.48.2. Description ΓòÉΓòÉΓòÉ
  6987.  
  6988. A submenu is a vertical list of menu items from which the user can choose a 
  6989. command. 
  6990.  
  6991. You can provide any number of SUBMENU statements in a MENU statement, but each 
  6992. SUBMENU statement must specify a unique submenu-id value. You can provide any 
  6993. number of menuitem-definition statements in the SUBMENU statement. These define 
  6994. the menu items (commands) in the menu. The order of the statements determines 
  6995. the order of the menu items. 
  6996.  
  6997.  
  6998. ΓòÉΓòÉΓòÉ 4.1.2.48.3. Example ΓòÉΓòÉΓòÉ
  6999.  
  7000. This example creates a submenu named Elements. Its identifier is 2. The submenu 
  7001. contains three menu items, which are created by using MENUITEM statements. 
  7002.  
  7003. SUBMENU "Elements", 2
  7004. BEGIN
  7005.     MENUITEM "Oxygen", 200
  7006.     MENUITEM "Carbon", 201, , MIA_CHECKED
  7007.     MENUITEM "Hydrogen", 202
  7008. END
  7009.  
  7010.  
  7011. ΓòÉΓòÉΓòÉ 4.1.2.49. VALUESET Statement ΓòÉΓòÉΓòÉ
  7012.  
  7013.  The VALUESET statement creates a value set control within the dialog window. 
  7014.  
  7015.  
  7016. ΓòÉΓòÉΓòÉ 4.1.2.49.1. Syntax ΓòÉΓòÉΓòÉ
  7017.  
  7018. VALUESET   id, x, y, width, height [, style]
  7019.  
  7020.  
  7021. ΓòÉΓòÉΓòÉ 4.1.2.49.2. Description ΓòÉΓòÉΓòÉ
  7022.  
  7023. This control lets a user select one choice from a group of mutually exclusive 
  7024. choices. The VALUESET statement defines the identifier, position, dimensions, 
  7025. and attributes of a value set control. The predefined class for this control is 
  7026. WC_VALUESET. If you do not specify a style, the default style is WS_TABSTOP and 
  7027. WS_VISIBLE. 
  7028.  
  7029. Use the VALUESET statement only in a DIALOG or WINDOW statement. 
  7030.  
  7031.  
  7032. ΓòÉΓòÉΓòÉ 4.1.2.49.3. Example ΓòÉΓòÉΓòÉ
  7033.  
  7034. This example creates a value set control at position (40, 40) within the dialog 
  7035. window. The value set control has a width of 220 character units and a height 
  7036. of 20 character units. Its resource ID is 302. The style specification VS_ICON 
  7037. creates a control to show items in icon form. The default styles WS_TABSTOP and 
  7038. WS_VISIBLE are both in effect, although only WS_TABSTOP is specified. 
  7039.  
  7040. #define    IDC_VALUESET     302
  7041. #define    IDD_VALUESETDLG  501
  7042. DIALOG "Value set", IDD_VALUESETDLG, 11, 11, 260, 240, FS_NOBYTEALIGN |
  7043.         WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  7044.   BEGIN
  7045.     VALUESET  IDC_VALUESET, 40, 40, 220, 160, VS_ICON | WS_TABSTOP
  7046.   END
  7047.  
  7048.  
  7049. ΓòÉΓòÉΓòÉ 4.1.2.50. WINDOW Statement ΓòÉΓòÉΓòÉ
  7050.  
  7051.  The WINDOW statement creates a window of the specified class. 
  7052.  
  7053.  
  7054. ΓòÉΓòÉΓòÉ 4.1.2.50.1. Syntax ΓòÉΓòÉΓòÉ
  7055.  
  7056. WINDOW text, id, x, y, width, height, class [, style [, framect]]
  7057.   data-definitions
  7058. [ BEGIN
  7059. control-definition
  7060.     .
  7061.     .
  7062.     .
  7063. END ]
  7064.  
  7065.  
  7066. ΓòÉΓòÉΓòÉ 4.1.2.50.2. Description ΓòÉΓòÉΓòÉ
  7067.  
  7068. The statement defines the position and dimensions of the window relative to its 
  7069. parent window, as well as the window-box style. The WINDOW statement is 
  7070. typically used in a WINDOWTEMPLATE or FRAME statement. 
  7071.  
  7072. Usually, only one WINDOW statement is used in a FRAME statement. It defines the 
  7073. client window belonging to the corresponding frame window. The optional BEGIN 
  7074. and END keywords enclose any CONTROL statements that are given with the window. 
  7075. CONTROL statements given in this manner represent child windows belonging to 
  7076. the window created by the WINDOW statement. 
  7077.  
  7078. The WINDOW statement can actually contain any combination of CONTROL, DIALOG, 
  7079. and WINDOW statements. Typically, a WINDOW statement contains one or no such 
  7080. statements. 
  7081.  
  7082.  
  7083. ΓòÉΓòÉΓòÉ 4.1.2.50.3. Example ΓòÉΓòÉΓòÉ
  7084.  
  7085. This example creates a client window belonging to the frame window. The client 
  7086. window belongs to the "MyClientClass" window class and has the standard window 
  7087. identifier FID_CLIENT. 
  7088.  
  7089. WINDOWTEMPLATE 1
  7090. BEGIN
  7091.     FRAME "My Window", 1, 10, 10, 320, 130,
  7092.              0, FCF_STANDARD | FCF_VERTSCROLL
  7093.     BEGIN
  7094.         WINDOW "", FID_CLIENT, 0, 0, 0, 0, "MyClientClass"
  7095.     END
  7096. END
  7097.  
  7098.  
  7099. ΓòÉΓòÉΓòÉ 4.1.2.51. WINDOWTEMPLATE Statement ΓòÉΓòÉΓòÉ
  7100.  
  7101.  The WINDOWTEMPLATE statement creates a window template. 
  7102.  
  7103.  
  7104. ΓòÉΓòÉΓòÉ 4.1.2.51.1. Syntax ΓòÉΓòÉΓòÉ
  7105.  
  7106. WINDOWTEMPLATE window-id [load-option] [mem-option]
  7107. BEGIN
  7108. window-definition
  7109.     .
  7110.     .
  7111.     .
  7112. END
  7113.  
  7114.  
  7115. ΓòÉΓòÉΓòÉ 4.1.2.51.2. Description ΓòÉΓòÉΓòÉ
  7116.  
  7117. A window template consists of a series of statements that define the window 
  7118. identifier, load and memory options, window dimensions, and controls in the 
  7119. window. The window template can be loaded from the executable file by using the 
  7120. WinLoadDlg function. 
  7121.  
  7122. You can provide any number of window templates in a resource script file, but 
  7123. each template must have a unique window-id value. 
  7124.  
  7125. A WINDOWTEMPLATE statement can contain DIALOG, CONTROL, and WINDOW statements. 
  7126. Typically, only one WINDOW statement is used in the WINDOWTEMPLATE statement. 
  7127.  
  7128.  
  7129. ΓòÉΓòÉΓòÉ 4.2. Directive Descriptions ΓòÉΓòÉΓòÉ
  7130.  
  7131. This section provides the syntax, a description, and an example of each of the 
  7132. directives. 
  7133.  
  7134.  
  7135. ΓòÉΓòÉΓòÉ 4.2.1. #define Directive ΓòÉΓòÉΓòÉ
  7136.  
  7137. The #define directive assigns the given value to the specified name. All 
  7138. subsequent occurrences of the name are replaced by the value. 
  7139.  
  7140.  
  7141. ΓòÉΓòÉΓòÉ 4.2.1.1. Syntax ΓòÉΓòÉΓòÉ
  7142.  
  7143.  #define name value
  7144.  
  7145.  
  7146. ΓòÉΓòÉΓòÉ 4.2.1.2. Example ΓòÉΓòÉΓòÉ
  7147.  
  7148. This example assigns values to the names "NONZERO" and "USERCLASS". 
  7149.  
  7150.   #define     NONZERO     1
  7151.   #define     USERCLASS   "MyControlClass"
  7152.  
  7153.  
  7154. ΓòÉΓòÉΓòÉ 4.2.2. #elif Directive ΓòÉΓòÉΓòÉ
  7155.  
  7156. The #elif directive marks an optional clause of a conditional-compilation block 
  7157. defined by a #ifdef, #ifndef, or #if directive. The directive controls 
  7158. conditional compilation of the resource file by checking the specified constant 
  7159. expression. If the constant expression is nonzero, #elif directs the compiler 
  7160. to continue processing statements up to the next #endif, #else, or #elif 
  7161. directive and then skip to the statement after #endif. If the constant 
  7162. expression is zero, #elif directs the compiler to skip to the next #endif, 
  7163. #else, or #elif directive. You can use any number of #elif directives in a 
  7164. conditional block. 
  7165.  
  7166.  
  7167. ΓòÉΓòÉΓòÉ 4.2.2.1. Syntax ΓòÉΓòÉΓòÉ
  7168.  
  7169. #elif constant-expression
  7170.  
  7171.  
  7172. ΓòÉΓòÉΓòÉ 4.2.2.2. Example ΓòÉΓòÉΓòÉ
  7173.  
  7174. In this example, #elif directs the compiler to process the second BITMAP 
  7175. statement only if the value assigned to the name "Version" is less than 7. The 
  7176. #elif directive itself is processed only if Version is greater than or equal to 
  7177. 3. 
  7178.  
  7179. #if Version < 3
  7180. BITMAP 1 errbox.bmp
  7181. #elif Version < 7
  7182. BITMAP 1 userbox.bmp
  7183. #endif
  7184.  
  7185.  
  7186. ΓòÉΓòÉΓòÉ 4.2.3. #else Directive ΓòÉΓòÉΓòÉ
  7187.  
  7188. The #else directive marks an optional clause of a conditional-compilation block 
  7189. defined by a #ifdef, #ifndef, or #if directive. The #else directive must be the 
  7190. last directive before the #endif directive. 
  7191.  
  7192. This directive has no arguments. 
  7193.  
  7194.  
  7195. ΓòÉΓòÉΓòÉ 4.2.3.1. Syntax ΓòÉΓòÉΓòÉ
  7196.  
  7197. #else 
  7198.  
  7199.  
  7200. ΓòÉΓòÉΓòÉ 4.2.3.2. Example ΓòÉΓòÉΓòÉ
  7201.  
  7202. This example compiles the second BITMAP statement only if the name "DEBUG" is 
  7203. not defined. 
  7204.  
  7205.     #ifdef DEBUG
  7206.         BITMAP 1 errbox.bmp
  7207.     #else
  7208.         BITMAP 1 userbox.bmp
  7209.     #endif
  7210.  
  7211.  
  7212. ΓòÉΓòÉΓòÉ 4.2.4. #endif directive ΓòÉΓòÉΓòÉ
  7213.  
  7214. The #endif directive marks the end of a conditional-compilation block defined 
  7215. by a #ifdef directive. One #endif is required for each #if, #ifdef, or #ifndef 
  7216. directive. 
  7217.  
  7218. This directive has no arguments. 
  7219.  
  7220.  
  7221. ΓòÉΓòÉΓòÉ 4.2.4.1. Syntax ΓòÉΓòÉΓòÉ
  7222.  
  7223. #endif 
  7224.  
  7225.  
  7226. ΓòÉΓòÉΓòÉ 4.2.5. #if Directive ΓòÉΓòÉΓòÉ
  7227.  
  7228. The #if directive controls conditional compilation of the resource file by 
  7229. checking the specified constant expression. If the constant expression is 
  7230. nonzero, #if directs the compiler to continue processing statements up to the 
  7231. next #endif, #else, or #elif directive and then skip to the statement after the 
  7232. #endif directive. If the constant expression is zero, it directs the compiler 
  7233. to skip to the next #endif, #else, or #elif directive. 
  7234.  
  7235.  
  7236. ΓòÉΓòÉΓòÉ 4.2.5.1. Syntax ΓòÉΓòÉΓòÉ
  7237.  
  7238. #if constant-expression
  7239.  
  7240.  
  7241. ΓòÉΓòÉΓòÉ 4.2.5.2. Example ΓòÉΓòÉΓòÉ
  7242.  
  7243. This example compiles the BITMAP statement only if the value assigned to the 
  7244. name "Version" is less than 3. 
  7245.  
  7246. #if Version < 3
  7247. BITMAP 1 errbox.bmp
  7248. #endif
  7249.  
  7250.  
  7251. ΓòÉΓòÉΓòÉ 4.2.6. #ifdef Directive ΓòÉΓòÉΓòÉ
  7252.  
  7253. The #ifdef directive controls conditional compilation of the resource file by 
  7254. checking the specified name. If the name has been defined by using a define 
  7255. directive or by using the -d command-line option of rc, #ifdef directs the 
  7256. compiler to continue with the statement immediately after the #ifdef directive. 
  7257. If the name has not been defined, #ifdef directs the compiler to skip all 
  7258. statements up to the next #endif directive. 
  7259.  
  7260.  
  7261. ΓòÉΓòÉΓòÉ 4.2.6.1. Syntax ΓòÉΓòÉΓòÉ
  7262.  
  7263. #ifdef name 
  7264.  
  7265.  
  7266. ΓòÉΓòÉΓòÉ 4.2.6.2. Example ΓòÉΓòÉΓòÉ
  7267.  
  7268. This example compiles the BITMAP statement only if the name "Debug" is defined. 
  7269.  
  7270. #ifdef Debug
  7271. BITMAP 1 errbox.bmp
  7272. #endif
  7273.  
  7274.  
  7275. ΓòÉΓòÉΓòÉ 4.2.7. #ifndef Directive ΓòÉΓòÉΓòÉ
  7276.  
  7277. The #ifndef directive controls conditional compilation of the resource file by 
  7278. checking the specified name. If the name has not been defined or if its 
  7279. definition has been removed by using the #undef directive, #ifndef directs the 
  7280. compiler to continue processing statements up to the next #endif, #else, or 
  7281. #elif directive and then skip to the statement after the #endif directive. If 
  7282. the name is defined, #ifndef directs the compiler to skip to the next #endif, 
  7283. #else, or #elif directive. 
  7284.  
  7285.  
  7286. ΓòÉΓòÉΓòÉ 4.2.7.1. Syntax ΓòÉΓòÉΓòÉ
  7287.  
  7288. #ifndef name 
  7289.  
  7290.  
  7291. ΓòÉΓòÉΓòÉ 4.2.7.2. Example ΓòÉΓòÉΓòÉ
  7292.  
  7293. This example compiles the BITMAP statement only if the name "Optimize" is not 
  7294. defined. 
  7295.  
  7296. #ifndef Optimize
  7297. BITMAP 1 errbox.bmp
  7298. #endif
  7299.  
  7300.  
  7301. ΓòÉΓòÉΓòÉ 4.2.8. #include Directive ΓòÉΓòÉΓòÉ
  7302.  
  7303. The #include directive causes RC to process the file specified in the filename 
  7304. field. This file should be a header file that defines the constants used in the 
  7305. resource script file. Only the define directives in the specified file are 
  7306. processed. All other statements are ignored. 
  7307.  
  7308. The filename field is handled as a C string. Therefore, you must include two 
  7309. backslashes (\\) wherever one is required in the path. (As an alternative, you 
  7310. can use a single forward slash (/) instead of two backslashes.) 
  7311.  
  7312.  
  7313. ΓòÉΓòÉΓòÉ 4.2.8.1. Syntax ΓòÉΓòÉΓòÉ
  7314.  
  7315. #include filename
  7316.  
  7317.  
  7318. ΓòÉΓòÉΓòÉ 4.2.8.2. Example ΓòÉΓòÉΓòÉ
  7319.  
  7320. This example processes the header files OS2.H and HEADERS\MYDEFS.H\I while 
  7321. compiling the resource script file. 
  7322.  
  7323. #include <os2.h>
  7324. #include "headers\\\\mydefs.h"
  7325.  
  7326.  
  7327. ΓòÉΓòÉΓòÉ 4.2.9. #undef Directive ΓòÉΓòÉΓòÉ
  7328.  
  7329. The undef directive removes the current definition of the specified name. All 
  7330. subsequent occurrences of the name are processed without replacement. 
  7331.  
  7332.  
  7333. ΓòÉΓòÉΓòÉ 4.2.9.1. Syntax ΓòÉΓòÉΓòÉ
  7334.  
  7335. #undef name 
  7336.  
  7337.  
  7338. ΓòÉΓòÉΓòÉ 4.2.9.2. Example ΓòÉΓòÉΓòÉ
  7339.  
  7340. This example removes the definitions for the names "nonzero" and "USERCLASS". 
  7341.  
  7342. #undef     nonzero
  7343. #undef     USERCLASS
  7344.  
  7345.  
  7346. ΓòÉΓòÉΓòÉ 4.3. Using Resource Files ΓòÉΓòÉΓòÉ
  7347.  
  7348. This section explains how to create a resource script file, compile it using 
  7349. the Resource Compiler (RC.EXE), and optionally add the resources to your 
  7350. executable file. Resource script files have a default file-name extension of 
  7351. .RC. 
  7352.  
  7353. For resource information on the individual controls, see the chapter on the 
  7354. specific control. For example, an example of a resource script file for frame 
  7355. windows is in Frame Windows. 
  7356.  
  7357.  
  7358. ΓòÉΓòÉΓòÉ 4.3.1. Creating and Compiling a Resource File ΓòÉΓòÉΓòÉ
  7359.  
  7360. The resource compiler (RC) compiles a resource script file to create a new 
  7361. file, called a binary resource file, which has a .RES file-name extension. The 
  7362. binary resource file can be added to the executable file of the application, 
  7363. thereby replacing any existing resources in that file. 
  7364.  
  7365. The RC command line has the following three basic forms: 
  7366.  
  7367.   rc resource-script-file [executable-file]
  7368.  
  7369.   rc binary-resource-file [executable-file]
  7370.  
  7371.   rc -r  resource-script-file [binary-resource-file]
  7372.  
  7373. Note:  The third option does not add to the executable file.
  7374.  
  7375.   The resource-script-file parameter is the file name of the resource script 
  7376.  file to be compiled. 
  7377.  
  7378.  The executable-file parameter must be the name of the executable file to 
  7379.  receive the compiled resources. This is a file having a file-name extension of 
  7380.  either .EXE or .DLL. If you omit the executable-file field, RC adds the 
  7381.  compiled resources to the executable file that has the same name as the 
  7382.  resource script file but which has the .EXE file-name extension. 
  7383.  
  7384.  The binary-resource-file parameter is the name of the binary resource file to 
  7385.  be added to the executable file. 
  7386.  
  7387.  The -r option directs RC to compile the resource script file without adding it 
  7388.  to an executable file. 
  7389.  
  7390.  
  7391. ΓòÉΓòÉΓòÉ 4.3.1.1. Compiling and Adding Resources to the .EXE File ΓòÉΓòÉΓòÉ
  7392.  
  7393. To compile the resource script file EXAMPLE.RC and add the result to the 
  7394. executable file EXAMPLE.EXE, use the following command: 
  7395.  
  7396.   rc example
  7397.  
  7398. You do not need to specify the .RC extension. RC creates the binary resource 
  7399. file EXAMPLE.RES and adds the compiled resource to the executable file 
  7400. EXAMPLE.EXE. 
  7401.  
  7402.  
  7403. ΓòÉΓòÉΓòÉ 4.3.1.2. Compiling without Adding Resources to the .EXE File ΓòÉΓòÉΓòÉ
  7404.  
  7405. To compile the resource script file EXAMPLE.RC into a binary resource file 
  7406. without adding the resources to an executable file, use the following command: 
  7407.  
  7408.   rc -r example
  7409.  
  7410. The compiler creates the binary resource file EXAMPLE.RES. To create a binary 
  7411. resource file that has a name different from the resource script file, use the 
  7412. following command: 
  7413.  
  7414.   rc -r example newfile.res
  7415.  
  7416.  
  7417. ΓòÉΓòÉΓòÉ 4.3.1.3. Adding the Compiled Resources to the .EXE File ΓòÉΓòÉΓòÉ
  7418.  
  7419. To add the compiled resources in the binary resource file EXAMPLE.RES to an 
  7420. executable file, use the following command: 
  7421.  
  7422.   rc example.res
  7423.  
  7424. To specify the name of the executable file, if the name is different from the 
  7425. resource file, use the following command: 
  7426.  
  7427.   rc example.res newfile.exe
  7428.  
  7429.  
  7430. ΓòÉΓòÉΓòÉ 4.3.1.4. Adding the Compiled Resources to a DLL ΓòÉΓòÉΓòÉ
  7431.  
  7432. To add the compiled resources to a dynamic-link-library (DLL) file, use the 
  7433. following command: 
  7434.  
  7435.   rc example.res dynalink.dll
  7436.  
  7437.  
  7438. ΓòÉΓòÉΓòÉ 5. Scroll-Bar Controls ΓòÉΓòÉΓòÉ
  7439.  
  7440. Scroll bars are control windows that convert mouse and keyboard input into 
  7441. integers; they are used by an application to scroll the contents of a client 
  7442. window.  This chapter describes how to create and use scroll bars in PM 
  7443. applications. 
  7444.  
  7445.  
  7446. ΓòÉΓòÉΓòÉ 5.1. About Scroll Bars ΓòÉΓòÉΓòÉ
  7447.  
  7448. A scroll bar has three main parts:  the bar, its arrows, and a slider. 
  7449.  
  7450. The arrows are located at each end of the scroll bar. The left scroll arrow, on 
  7451. the left side of a horizontal scroll bar, enables the user to scroll to the 
  7452. left in a document. The right scroll arrow lets the user scroll to the right. 
  7453.  
  7454. On a vertical scroll bar, the upper scroll arrow enables the user to scroll 
  7455. upward in the document; the lower scroll arrow, downward.  The slider, which 
  7456. lies between the two scroll arrows, reflects the current value of the scroll 
  7457. bar.  Scroll bars monitor the slider and send notification messages to the 
  7458. owner window when the slider position changes as a result of mouse or keyboard 
  7459. input. 
  7460.  
  7461. Although, typically, scroll bars are used in frame windows, an application can 
  7462. use stand-alone scroll bars of any size or shape, at any position, in a window 
  7463. of almost any class.  Scroll bars can be used as parts of other control 
  7464. windows; for example, a list box uses a scroll bar to enable the user to view 
  7465. items when the list box is too small to display all the items. 
  7466.  
  7467.  
  7468. ΓòÉΓòÉΓòÉ 5.1.1. Scroll-Bar Creation ΓòÉΓòÉΓòÉ
  7469.  
  7470. An application can include a scroll bar in a standard frame window by 
  7471. specifying the FCF_HORZSCROLL or FCF_VERTSCROLL flag in the WinCreateStdWindow 
  7472. function.  To create a scroll bar in another type of window, an application can 
  7473. specify the predefined (preregistered) window class WC_SCROLLBAR in the 
  7474. WinCreateWindow function or in the CONTROL statement in a resource file. 
  7475.  
  7476. Although most applications specify an owner window when creating a scroll bar, 
  7477. an owner is not required.  If an application does not specify an owner, the 
  7478. scroll bar does not send notification messages. 
  7479.  
  7480.  
  7481. ΓòÉΓòÉΓòÉ 5.1.1.1. Scroll-Bar Styles ΓòÉΓòÉΓòÉ
  7482.  
  7483. A scroll bar has styles that determine what it looks like and how it responds 
  7484. to input.  Styles are specified in the WinCreateWindow function or the CONTROL 
  7485. statement.  A scroll-bar can have the following styles: 
  7486.  
  7487. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  7488. ΓöéStyle          ΓöéMeaning                                      Γöé
  7489. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7490. ΓöéSBS_AUTOTRACK  ΓöéCauses the entire slider to track the        Γöé
  7491. Γöé               Γöémovement of the mouse pointer when the user  Γöé
  7492. Γöé               Γöéscrolls the window. Without this style, only Γöé
  7493. Γöé               Γöéan outlined image of the slider tracks the   Γöé
  7494. Γöé               Γöémovement of the mouse pointer, and the sliderΓöé
  7495. Γöé               Γöéjumps to the new location when the user      Γöé
  7496. Γöé               Γöéreleases the mouse button.                   Γöé
  7497. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7498. ΓöéSBS_HORZ       ΓöéCreates a horizontal scroll bar.             Γöé
  7499. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7500. ΓöéSBS_THUMBSIZE  ΓöéUsed to calculate the size of the scroll-bar Γöé
  7501. Γöé               Γöéslider from the SBCDATA passed to            Γöé
  7502. Γöé               ΓöéWinCreateWindow.                             Γöé
  7503. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7504. ΓöéSBS_VERT       ΓöéCreates a vertical scroll bar.               Γöé
  7505. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  7506.  
  7507.  
  7508. ΓòÉΓòÉΓòÉ 5.1.1.2. Scroll-Bar Range and Position ΓòÉΓòÉΓòÉ
  7509.  
  7510. Every scroll bar has a range and a slider position.  The range specifies the 
  7511. minimum and maximum values for the slider position.  As the user moves the 
  7512. slider in a scroll bar, the scroll bar reports the slider position as an 
  7513. integer in this range.  If the slider position is the minimum value, the slider 
  7514. is at the top of a vertical scroll bar or at the left end of a horizontal 
  7515. scroll bar.  If the slider position is the maximum value, the slider is at the 
  7516. bottom or right end of the vertical or horizontal scroll bar, respectively. 
  7517.  
  7518. An application can adjust the range to convenient integers by using 
  7519. SBM_SETSCROLLBAR or WM_SETWINDOWPARAMS, or by using the SBCDATA structure 
  7520. during creation of the scroll bar. This enables you to easily translate the 
  7521. slider position into a value that corresponds to the data being scrolled.  For 
  7522. example, an application attempting to display 100 lines of text (numbered 0 to 
  7523. 99) in a window that can show only 20 lines at a time could set the vertical 
  7524. scroll-bar range from 0-99, permitting any line to be the top line, and 
  7525. requiring blank lines to fill the viewing area when there are not sufficient 
  7526. lines of information to fill the area (lines 80-99). More likely, the range 
  7527. would be set to 0-79, so that only the first 80 lines could be the top line; 
  7528. this guarantees that there would always be 20 lines of text to fill the window. 
  7529.  
  7530. The current settings can be obtained using SBM_QUERYRANGE or 
  7531. WM_QUERYWINDOWPARAMS. 
  7532.  
  7533. To establish a useful relationship between the scroll-bar range and the data, 
  7534. an application must adjust the range whenever the data or the size of the 
  7535. window changes.  This means the application should adjust the range as part of 
  7536. processing WM_SIZE messages. 
  7537.  
  7538. An application must move the slider in a scroll bar.  Although the user 
  7539. requests scrolling in a scroll bar, the scroll bar does not update the slider 
  7540. position.  Instead, it passes the request to the owner window, which scrolls 
  7541. the data and updates the slider position using the SBM_SETPOS message.  The 
  7542. application controls the slider movement and can move the slider in the 
  7543. increments best suited for the data being scrolled. 
  7544.  
  7545. An application can retrieve the current slider position of a scroll bar by 
  7546. sending the SBM_QUERYPOS message to the scroll bar. 
  7547.  
  7548. If a scroll bar is a descendant of a frame window, its position relative to its 
  7549. parent can change when the position of the frame window changes.  Frame windows 
  7550. draw scroll bars relative to the upper-left corner of the frame window (rather 
  7551. than the lower-left corner).  The frame window can adjust the y coordinate of 
  7552. the scroll-bar position, which would be desirable if the scroll bar is a child 
  7553. of the frame window, but would be undesirable if the scroll bar is not a child 
  7554. window. 
  7555.  
  7556.  
  7557. ΓòÉΓòÉΓòÉ 5.1.1.3. Scroll-Bar Slider Size ΓòÉΓòÉΓòÉ
  7558.  
  7559. The slider can be displayed either as a square (the default), or as a portion 
  7560. of the scroll bar if SBCDATA and the SBS_THUMBSIZE style are specified at 
  7561. creation. Displaying the slider as a proportional rectangle permits the size of 
  7562. the slider to be proportional to the amount of data being viewed in the visible 
  7563. range. The size is set based on the visible range and the number of values in 
  7564. the range. As an example, where the viewing area is 20 items and the range is 
  7565. 100, the slider size would be 20% of the potential slider area. Note that there 
  7566. is no direct connection between the scroll bar range and the range value used 
  7567. to set the slider size.  It is possible to set the scroll-bar range from 0-99, 
  7568. and base the slider size on a viewing area of 500 and a range of 1000.  This 
  7569. will set the scroll-bar to have 100 positions and will display a slider that is 
  7570. half the size of the scroll bar. 
  7571.  
  7572. The slider size can be set using SBM_SETTHUMBSIZE or WM_SETWINDOWPARAMS, and 
  7573. obtained using WM_QUERYWINDOWPARAMS. 
  7574.  
  7575.  
  7576. ΓòÉΓòÉΓòÉ 5.1.2. Scroll-Bar Notification Messages ΓòÉΓòÉΓòÉ
  7577.  
  7578. A scroll bar sends notification messages to its owner whenever the user clicks 
  7579. the scroll bar.  WM_VSCROLL and WM_HSCROLL are the notification messages for 
  7580. vertical and horizontal scroll bars, respectively.  If the scroll bar is a 
  7581. frame control window, the frame window passes the message to its client window. 
  7582.  
  7583. Each notification message includes the scroll-bar identifier, scroll-bar 
  7584. command code corresponding to the action of the user, and, in some cases, the 
  7585. position of the slider.  If an application creates a scroll bar as part of a 
  7586. frame control window, the scroll-bar identifier is the predefined constant 
  7587. FID_VERTSCROLL or FID_HORZSCROLL.  Otherwise, it is the identifier given in the 
  7588. WinCreateWindow function. 
  7589.  
  7590. The scroll-bar command codes specify the action the user has taken.  Operating 
  7591. system user-interface guidelines recommend certain responses for each action. 
  7592.  
  7593. Following is a list of the command codes; for each code, the user action is 
  7594. specified, followed by the application's response. In each case, a scrolling 
  7595. unit, appropriate for the given data, must be defined by the application.  For 
  7596. example, for scrolling text vertically, the typical unit is a line. 
  7597.  
  7598. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  7599. ΓöéCommand Code        ΓöéDescription                             Γöé
  7600. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7601. ΓöéSB_LINEUP           ΓöéIndicates that the user clicked the top Γöé
  7602. Γöé                    Γöéscroll arrow. Decrement the slider      Γöé
  7603. Γöé                    Γöéposition by one, and scroll toward the  Γöé
  7604. Γöé                    Γöétop of the data by one unit.            Γöé
  7605. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7606. ΓöéSB_LINEDOWN         ΓöéIndicates that the user clicked the     Γöé
  7607. Γöé                    Γöébottom scroll arrow. Increment the      Γöé
  7608. Γöé                    Γöéslider position by one, and scroll      Γöé
  7609. Γöé                    Γöétoward the bottom of the data by one    Γöé
  7610. Γöé                    Γöéunit.                                   Γöé
  7611. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7612. ΓöéSB_LINELEFT         ΓöéIndicates that the user clicked the leftΓöé
  7613. Γöé                    Γöéscroll arrow. Decrement the slider      Γöé
  7614. Γöé                    Γöéposition by one, and scroll toward the  Γöé
  7615. Γöé                    Γöéleft end of the data by one unit.       Γöé
  7616. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7617. ΓöéSB_LINERIGHT        ΓöéIndicates that the user clicked the     Γöé
  7618. Γöé                    Γöéright scroll arrow. Increment the sliderΓöé
  7619. Γöé                    Γöéposition by one, and scroll toward the  Γöé
  7620. Γöé                    Γöéright end of the data by one unit.      Γöé
  7621. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7622. ΓöéSB_PAGEUP           ΓöéIndicates that the user clicked the     Γöé
  7623. Γöé                    Γöéscroll-bar background above the slider. Γöé
  7624. Γöé                    ΓöéDecrement the slider position by the    Γöé
  7625. Γöé                    Γöénumber of data units in the window, and Γöé
  7626. Γöé                    Γöéscroll toward the top of the data by theΓöé
  7627. Γöé                    Γöésame number of units.                   Γöé
  7628. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7629. ΓöéSB_PAGEDOWN         ΓöéIndicates that the user clicked the     Γöé
  7630. Γöé                    Γöéscroll-bar background below the slider. Γöé
  7631. Γöé                    ΓöéIncrement the slider position by the    Γöé
  7632. Γöé                    Γöénumber of data units in the window, and Γöé
  7633. Γöé                    Γöéscroll toward the bottom of the data by Γöé
  7634. Γöé                    Γöéthe same number of units.               Γöé
  7635. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7636. ΓöéSB_PAGELEFT         ΓöéIndicates that the user clicked the     Γöé
  7637. Γöé                    Γöéscroll-bar background to the left of theΓöé
  7638. Γöé                    Γöéslider. Decrement the slider position byΓöé
  7639. Γöé                    Γöéthe number of data units in the window, Γöé
  7640. Γöé                    Γöéand scroll toward the left end of the   Γöé
  7641. Γöé                    Γöédata by the same number of units.       Γöé
  7642. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7643. ΓöéSB_PAGERIGHT        ΓöéIndicates that the user clicked the     Γöé
  7644. Γöé                    Γöéscroll-bar background to the right of   Γöé
  7645. Γöé                    Γöéthe slider. Increment the slider        Γöé
  7646. Γöé                    Γöéposition by the number of data units in Γöé
  7647. Γöé                    Γöéthe window, and scroll toward the right Γöé
  7648. Γöé                    Γöéend of the data by the same number of   Γöé
  7649. Γöé                    Γöéunits.                                  Γöé
  7650. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7651. ΓöéSB_SLIDERTRACK      ΓöéIndicates that the user is dragging the Γöé
  7652. Γöé                    Γöéslider. Applications that draw data     Γöé
  7653. Γöé                    Γöéquickly can set the slider to the       Γöé
  7654. Γöé                    Γöéposition given in the message, and      Γöé
  7655. Γöé                    Γöéscroll the data by the same number of   Γöé
  7656. Γöé                    Γöéunits the slider has moved. ApplicationsΓöé
  7657. Γöé                    Γöéthat cannot draw data quickly should    Γöé
  7658. Γöé                    Γöéwait for the SB_SLIDERPOSITION code     Γöé
  7659. Γöé                    Γöébefore moving the slider and scrolling  Γöé
  7660. Γöé                    Γöéthe data.                               Γöé
  7661. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7662. ΓöéSB_SLIDERPOSITION   ΓöéIndicates that the user released the    Γöé
  7663. Γöé                    Γöéslider after dragging it. Set the sliderΓöé
  7664. Γöé                    Γöéto the position given in the message,   Γöé
  7665. Γöé                    Γöéand scroll the data by the same number  Γöé
  7666. Γöé                    Γöéof units the slider was moved.          Γöé
  7667. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7668. ΓöéSB_ENDSCROLL        ΓöéIndicates that the user released the    Γöé
  7669. Γöé                    Γöémouse after holding it on an arrow or inΓöé
  7670. Γöé                    Γöéthe scroll-bar background. No response  Γöé
  7671. Γöé                    Γöéis necessary.                           Γöé
  7672. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  7673. If the command code is SB_SLIDERTRACK or SB_SLIDERPOSITION, indicating that the 
  7674. user is moving the scroll-bar slider, the notification message also contains 
  7675. the current position of the slider. 
  7676.  
  7677. The owner window can send a message to the scroll bar to read or reset the 
  7678. current value and range of the scroll bar.  To reflect any changes in the state 
  7679. of the scroll bar, the owner window also can adjust the data the scroll bar 
  7680. controls. 
  7681.  
  7682. An application can use the WinEnableWindow function to disable a scroll bar.  A 
  7683. disabled scroll bar ignores the actions of the user, sending out no 
  7684. notification messages when the user tries to manipulate it.  If an application 
  7685. has no data to scroll, or if all data fits in the client window, the 
  7686. application should disable the scroll bar. 
  7687.  
  7688.  
  7689. ΓòÉΓòÉΓòÉ 5.1.3. Scroll Bars and the Keyboard ΓòÉΓòÉΓòÉ
  7690.  
  7691. When a scroll bar has the keyboard focus, it generates notification messages 
  7692. for the following keys: 
  7693.  
  7694. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  7695. ΓöéKeys           ΓöéResponse                                     Γöé
  7696. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7697. ΓöéUP             ΓöéSB_LINEUP or SB_LINELEFT                     Γöé
  7698. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7699. ΓöéLEFT           ΓöéSB_LINEUP or SB_LINELEFT                     Γöé
  7700. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7701. ΓöéDOWN           ΓöéSB_LINEDOWN or SB_LINERIGHT                  Γöé
  7702. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7703. ΓöéRIGHT          ΓöéSB_LINEDOWN or SB_LINERIGHT                  Γöé
  7704. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7705. ΓöéPGUP           ΓöéSB_PAGEUP or SB_PAGELEFT                     Γöé
  7706. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7707. ΓöéPGDN           ΓöéSB_PAGEDOWN or SB_PAGERIGHT                  Γöé
  7708. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  7709.  
  7710. If an application uses scroll bars to scroll data but does not give the scroll 
  7711. bar the input focus, the window with the focus must process keyboard input. 
  7712. The window can generate scroll-bar notification messages or carry out the 
  7713. indicated scrolling.  The following table shows the responses to keys that a 
  7714. window must process: 
  7715.  
  7716. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  7717. ΓöéKey            ΓöéResponse                                     Γöé
  7718. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7719. ΓöéUP             ΓöéSB_LINEUP                                    Γöé
  7720. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7721. ΓöéDOWN           ΓöéSB_LINEDOWN                                  Γöé
  7722. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7723. ΓöéPGUP           ΓöéSB_PAGEUP                                    Γöé
  7724. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7725. ΓöéPGDN           ΓöéSB_PAGEDOWN                                  Γöé
  7726. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7727. ΓöéCTRL+HOME      ΓöéSB_SLIDERTRACK, with the slider set to the   Γöé
  7728. Γöé               Γöéminimum position                             Γöé
  7729. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7730. ΓöéCTRL+END       ΓöéSB_SLIDERTRACK, with the slider set to the   Γöé
  7731. Γöé               Γöémaximum position                             Γöé
  7732. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7733. ΓöéLEFT           ΓöéSB_LINELEFT                                  Γöé
  7734. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7735. ΓöéRIGHT          ΓöéSB_LINERIGHT                                 Γöé
  7736. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7737. ΓöéCTRL+PGUP      ΓöéSB_PAGELEFT                                  Γöé
  7738. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7739. ΓöéCTRL+PGDN      ΓöéSB_PAGERIGHT                                 Γöé
  7740. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7741. ΓöéHOME           ΓöéSB_SLIDERTRACK, with the slider set to the   Γöé
  7742. Γöé               Γöéminimum position                             Γöé
  7743. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7744. ΓöéEND            ΓöéSB_SLIDERTRACK, with the slider set to the   Γöé
  7745. Γöé               Γöémaximum position                             Γöé
  7746. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  7747.  
  7748. For vertical scroll bars that are part of list boxes, the following table shows 
  7749. the responses to keys: 
  7750.  
  7751. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  7752. ΓöéKey            ΓöéCommand                                      Γöé
  7753. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7754. ΓöéCTRL+UP        ΓöéSB_SLIDERTRACK, with the slider set to the   Γöé
  7755. Γöé               Γöéminimum position                             Γöé
  7756. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7757. ΓöéCTRL+DOWN      ΓöéSB_SLIDERTRACK, with the slider set to the   Γöé
  7758. Γöé               Γöémaximum position                             Γöé
  7759. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7760. ΓöéF7             ΓöéSB_PAGEUP                                    Γöé
  7761. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7762. ΓöéF8             ΓöéSB_PAGEDOWN                                  Γöé
  7763. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  7764.  
  7765.  
  7766. ΓòÉΓòÉΓòÉ 5.2. Using Scroll Bars ΓòÉΓòÉΓòÉ
  7767.  
  7768. This section explains how to perform the following tasks: 
  7769.  
  7770.      Create scroll bars 
  7771.      Retrieve a scroll-bar handle 
  7772.      Initialize, adjust, and read the scroll-bar range and position 
  7773.  
  7774.  
  7775. ΓòÉΓòÉΓòÉ 5.2.1. Creating Scroll Bars ΓòÉΓòÉΓòÉ
  7776.  
  7777. When creating a frame window, you can add scroll bars by specifying the 
  7778. FCF_HORZSCROLL flag, FCF_VERTSCROLL flag, or both flags in the 
  7779. WinCreateStdWindow function.  This adds horizontal, vertical, or both (as 
  7780. specified) scroll bars to the frame window.  The frame window owns the scroll 
  7781. bars and passes notification messages from the scroll bars to the client 
  7782. window. The following code fragment adds scroll bars to a frame window: 
  7783.  
  7784.  
  7785.     /* Set flags for a main window with scroll bars. */
  7786.     ULONG ulFrameControlFlags =
  7787.         FCF_STANDARD | FCF_HORZSCROLL | FCF_VERTSCROLL;
  7788.  
  7789.     /* Create the window.                            */
  7790.     hwndFrame = WinCreateStdWindow(HWND_DESKTOP,
  7791.         WS_VISIBLE,
  7792.         &ulFrameControlFlags,
  7793.         szClientClass,
  7794.         szFrameTitle,
  7795.         0,
  7796.         (HMODULE) NULL,
  7797.         0,
  7798.         &hwndClient);
  7799.  
  7800. Scroll bars created this way have the window identifier FID_HORZSCROLL or 
  7801. FID_VERTSCROLL.  To determine the size and position of the scroll bars, the 
  7802. frame window uses the standard size specified by the system values SV_CXVSCROLL 
  7803. and SV_CYHSCROLL.  The position always is defined by the right and bottom edges 
  7804. of the frame window. 
  7805.  
  7806. Another way to create scroll bars is using the WinCreateWindow function.  This 
  7807. method is most commonly used for stand-alone scroll bars.  Creating scroll bars 
  7808. this way lets you set the size and position of the scroll bars.  You also can 
  7809. specify which window should receive notification messages. 
  7810.  
  7811. The following code fragment creates a stand-alone scroll bar: 
  7812.  
  7813.     #define ID_SCROLL_BAR 1
  7814.  
  7815.     HWND hwndScroll,hwndClient;
  7816.     hwndScroll = WinCreateWindow(
  7817.         hwndClient,                      /* Scroll-bar parent window       */
  7818.         WC_SCROLLBAR,                    /* Preregistered scroll-bar class */
  7819.         (PSZ) NULL,                      /* No window title                */
  7820.         SBS_VERT | WS_VISIBLE,           /* Vertical style and visible     */
  7821.         10, 10,                          /* Position & Size                */
  7822.         20, 100,                         /* Size                           */
  7823.         hwndClient,                      /* Owner                          */
  7824.         HWND_TOP,                        /* Z-order position               */
  7825.         ID_SCROLL_BAR,                   /* Scroll-bar identifier          */
  7826.         NULL,                            /* No class-specific data         */
  7827.         NULL);                           /* No presentation parameters     */
  7828.  
  7829.  
  7830. ΓòÉΓòÉΓòÉ 5.2.2. Retrieving a Scroll-Bar Handle ΓòÉΓòÉΓòÉ
  7831.  
  7832. If you use the WinCreateStdWindow function to create a scroll bar as a child of 
  7833. the frame window, you must be able to retrieve the scroll-bar handle.  One way 
  7834. to do this is to use the WinWindowFromID function, the frame-window handle, and 
  7835. a predefined identifier (such as FID_HORZSCROLL or FID_VERTSCROLL), as shown in 
  7836. the following code fragment: 
  7837.  
  7838.     HWND hwndFrame,hwndHorzScroll,hwndVertScroll;
  7839.  
  7840.     hwndHorzScroll = WinWindowFromID(hwndFrame, FID_HORZSCROLL);
  7841.     hwndVertScroll = WinWindowFromID(hwndFrame, FID_VERTSCROLL);
  7842.  
  7843. If the standard frame window includes a client window, you can use that handle 
  7844. to access the scroll bars.  The idea is to get the frame-window handle first; 
  7845. then, the scroll-bar handle. 
  7846.  
  7847.  
  7848.     HWND hwndScroll,hwndClient;
  7849.  
  7850.     /* Get a handle to the horizontal scroll bar. */
  7851.     hwndScroll = WinWindowFromID(
  7852.         WinQueryWindow(hwndClient, QW_PARENT),
  7853.         FID_HORZSCROLL);
  7854.  
  7855.  
  7856. ΓòÉΓòÉΓòÉ 5.2.3. Using the Scroll-Bar Range and Position ΓòÉΓòÉΓòÉ
  7857.  
  7858. You can initialize the current value and range of a scroll bar to non-default 
  7859. values by sending the SBCDATA structure with class-specific data for a call to 
  7860. WinCreateWindow: 
  7861.  
  7862.     #define ID_SCROLL_BAR 1
  7863.  
  7864.     SBCDATA sbcd;
  7865.     HWND hwndScroll,hwndClient;
  7866.  
  7867.     /* Set up scroll-bar control data.                     */
  7868.     sbcd.posFirst = 200;
  7869.     sbcd.posLast  = 400;
  7870.     sbcd.posThumb = 300;
  7871.  
  7872.     /* Create the scroll bar.                              */
  7873.     hwndScroll = WinCreateWindow(hwndClient,
  7874.         WC_SCROLLBAR,
  7875.         (PSZ) NULL,
  7876.         SBS_VERT | WS_VISIBLE,
  7877.         10, 10,
  7878.         20, 100,
  7879.         hwndClient,
  7880.         HWND_TOP,
  7881.         ID_SCROLL_BAR,
  7882.         &sbcd,                     /* Class-specific data  */
  7883.         NULL);
  7884.  
  7885. You can adjust a scroll-bar value and range by sending it an SBM_SETSCROLLBAR 
  7886. message: 
  7887.  
  7888.     /* Set the scroll-bar value and range. */
  7889.  
  7890.     WinSendMsg(hwndScroll, SBM_SETSCROLLBAR,
  7891.         (MPARAM)300,
  7892.         MPFROM2SHORT(200, 400));
  7893.  
  7894. You can read a scroll-bar value by sending it an SBM_QUERYPOS message: 
  7895.  
  7896.     USHORT usSliderPos;
  7897.  
  7898.     /* Read the scroll-bar value. */
  7899.     usSliderPos = (USHORT) WinSendMsg(hwndScroll,
  7900.         SBM_QUERYPOS, (MPARAM) NULL, (MPARAM) NULL);
  7901.  
  7902. Similarly, you can set a scroll-bar value by sending an SBM_SETPOS message: 
  7903.  
  7904.     /* Set the vertical scroll-bar value. */
  7905.     WinSendMsg(hwndScroll, SBM_SETPOS, (MPARAM)300, (MPARAM) NULL);
  7906.  
  7907. You can read a scroll-bar range by sending it an SBM_QUERYRANGE message: 
  7908.  
  7909.     MRESULT mr;
  7910.     USHORT  usMinimum, usMaximum;
  7911.  
  7912.     /* Read the vertical scroll-bar range.                               */
  7913.     mr = WinSendMsg(hwndScroll, SBM_QUERYRANGE, (MPARAM) NULL, (MPARAM) NULL);
  7914.  
  7915.     usMinimum = SHORT1FROMMR(mr);            /* minimum in the low word  */
  7916.     usMaximum = SHORT2FROMMR(mr);            /* maximum in the high word */
  7917.  
  7918.  
  7919. ΓòÉΓòÉΓòÉ 6. Slider Controls ΓòÉΓòÉΓòÉ
  7920.  
  7921. A slider control is a visual component that displays a range of values and 
  7922. allows a user to set, display, or modify a value by moving a slider arm. There 
  7923. are two types of sliders: 
  7924.  
  7925.      The linear slider is represented as a shaft along which the slider arm 
  7926.       can be moved by the user to set a value. 
  7927.  
  7928.      The circular slider is represented as a dial with the slider arm shown as 
  7929.       the radius of the dial. 
  7930.  
  7931.  This chapter explains how to use each of these slider controls in PM 
  7932.  applications. 
  7933.  
  7934.  
  7935. ΓòÉΓòÉΓòÉ 6.1. About Slider Controls ΓòÉΓòÉΓòÉ
  7936.  
  7937. This section covers linear and circular slider controls. Linear sliders are 
  7938. used to set values that have familiar increments. Circular sliders, although 
  7939. different in appearance from linear sliders, provide much the same function. 
  7940. Both types of sliders can be used in a window to create a user interface. 
  7941.  
  7942.  
  7943. ΓòÉΓòÉΓòÉ 6.1.1. Linear Sliders ΓòÉΓòÉΓòÉ
  7944.  
  7945. Typically, linear sliders are used to easily set values that have familiar 
  7946. increments, such as feet, inches, degrees, and decibels. They also can be used 
  7947. for other purposes when immediate feedback is required, such as blending colors 
  7948. or showing a task's percentage of completion. For example, an application might 
  7949. let a user mix and match color shades by moving a slider arm, or a read-only 
  7950. slider could show how much of a task is complete by filling in the slider shaft 
  7951. as the task progresses. These are just a few examples of the ways in which 
  7952. sliders can be used. 
  7953.  
  7954. The slider arm shows the value currently set by its position on the slider 
  7955. shaft. The user selects slider values by changing the location of the slider 
  7956. arm. 
  7957.  
  7958. A tick mark indicates an incremental value in a slider scale. A detent, which 
  7959. is similar to a tick mark, also represents a value on the scale. However, a 
  7960. detent can be placed anywhere along the slider scale, rather than only in 
  7961. specific increments, and can be selected. 
  7962.  
  7963. The appearance of a slider and the user interaction with a slider are similar 
  7964. to that of a scroll bar. However, these two controls are not interchangeable 
  7965. because each has a unique purpose. A scroll bar scrolls information into view 
  7966. that is outside a window's work area, while the slider is used to set, display, 
  7967. or modify that information, whether it is in or out of the work area. 
  7968.  
  7969. Although linear sliders usually use values that have familiar increments, text 
  7970. also can be used. However, if the text is too long it can overlap the text 
  7971. displayed on the next tick mark or detent. Also, if the text on the far edge 
  7972. markers is too long, some of the text will not be displayed on screen. To 
  7973. prevent this use one of the following: 
  7974.  
  7975.      Smaller font 
  7976.      Shorter text values 
  7977.      Static controls 
  7978.  
  7979.  The slider can be customized to meet varying application requirements, while 
  7980.  providing a user interface component that can be used easily to develop 
  7981.  products that conform to the Systems Application Architecture (SAA) Common 
  7982.  User Access (CUA) user interface guidelines. The application can specify 
  7983.  different scales, sizes, and orientations for its sliders, but the underlying 
  7984.  function of the control remains the same. For a complete description of CUA 
  7985.  sliders, refer to the SAA CUA Guide to User Interface Design and the SAA CUA 
  7986.  Advanced Interface Design Reference. 
  7987.  
  7988.  
  7989. ΓòÉΓòÉΓòÉ 6.1.1.1. Linear Slider Styles ΓòÉΓòÉΓòÉ
  7990.  
  7991. Slider control styles are set when a slider window is created. The following 
  7992. table describes linear slider control styles. If no styles are specified, 
  7993. defaults are used as indicated in the table. 
  7994.  
  7995. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  7996. ΓöéStyle Name            ΓöéDescription                           Γöé
  7997. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  7998. ΓöéSLS_BOTTOM            ΓöéPositions the slider at the bottom of Γöé
  7999. Γöé                      Γöéthe slider window. Valid only for     Γöé
  8000. Γöé                      Γöéhorizontal sliders.                   Γöé
  8001. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8002. ΓöéSLS_BUTTONSBOTTOM     ΓöéSpecifies that the optional slider    Γöé
  8003. Γöé                      Γöébuttons are to be used and places themΓöé
  8004. Γöé                      Γöéat the bottom of the slider shaft. TheΓöé
  8005. Γöé                      Γöébuttons move the slider arm by one    Γöé
  8006. Γöé                      Γöéposition, up or down, in the directionΓöé
  8007. Γöé                      Γöéselected. Valid only for vertical     Γöé
  8008. Γöé                      Γöésliders.                              Γöé
  8009. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8010. ΓöéSLS_BUTTONSLEFT       ΓöéSpecifies that the optional slider    Γöé
  8011. Γöé                      Γöébuttons are to be used and places themΓöé
  8012. Γöé                      Γöéto the left of the slider shaft. The  Γöé
  8013. Γöé                      Γöébuttons move the slider arm by one    Γöé
  8014. Γöé                      Γöéposition, left or right, in the       Γöé
  8015. Γöé                      Γöédirection selected. Valid only for    Γöé
  8016. Γöé                      Γöéhorizontal sliders.                   Γöé
  8017. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8018. ΓöéSLS_BUTTONSRIGHT      ΓöéSpecifies that the optional slider    Γöé
  8019. Γöé                      Γöébuttons are to be used and places themΓöé
  8020. Γöé                      Γöéto the right of the slider shaft. The Γöé
  8021. Γöé                      Γöébuttons move the slider arm by one    Γöé
  8022. Γöé                      Γöéposition, left or right, in the       Γöé
  8023. Γöé                      Γöédirection selected. Valid only for    Γöé
  8024. Γöé                      Γöéhorizontal sliders.                   Γöé
  8025. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8026. ΓöéSLS_BUTTONSTOP        ΓöéSpecifies that the optional slider    Γöé
  8027. Γöé                      Γöébuttons are to be used and places themΓöé
  8028. Γöé                      Γöéat the top of the slider shaft. The   Γöé
  8029. Γöé                      Γöébuttons move the slider arm by one    Γöé
  8030. Γöé                      Γöéposition, up or down, in the directionΓöé
  8031. Γöé                      Γöéselected. Valid only for vertical     Γöé
  8032. Γöé                      Γöésliders.                              Γöé
  8033. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8034. ΓöéSLS_CENTER            ΓöéCenters the slider within the slider  Γöé
  8035. Γöé                      Γöéwindow. This is the default position  Γöé
  8036. Γöé                      Γöéof the slider.                        Γöé
  8037. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8038. ΓöéSLS_HOMEBOTTOM        ΓöéSpecifies the slider arm's home       Γöé
  8039. Γöé                      Γöéposition. The bottom of the slider is Γöé
  8040. Γöé                      Γöéused as the base value for            Γöé
  8041. Γöé                      Γöéincrementing. Valid only for vertical Γöé
  8042. Γöé                      Γöésliders.                              Γöé
  8043. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8044. ΓöéSLS_HOMELEFT          ΓöéSpecifies the slider arm's home       Γöé
  8045. Γöé                      Γöéposition. The left edge is used as theΓöé
  8046. Γöé                      Γöébase value for incrementing. This is  Γöé
  8047. Γöé                      Γöéthe default for horizontal sliders andΓöé
  8048. Γöé                      Γöéis valid only for horizontal sliders. Γöé
  8049. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8050. ΓöéSLS_HOMERIGHT         ΓöéSpecifies the slider arm's home       Γöé
  8051. Γöé                      Γöéposition. The right edge is used as   Γöé
  8052. Γöé                      Γöéthe base value for incrementing. ValidΓöé
  8053. Γöé                      Γöéonly for horizontal sliders.          Γöé
  8054. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8055. ΓöéSLS_HOMETOP           ΓöéSpecifies the slider arm's home       Γöé
  8056. Γöé                      Γöéposition. The top of the slider is    Γöé
  8057. Γöé                      Γöéused as the base value for            Γöé
  8058. Γöé                      Γöéincrementing. Valid only for vertical Γöé
  8059. Γöé                      Γöésliders.                              Γöé
  8060. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8061. ΓöéSLS_HORIZONTAL        ΓöéPositions the slider horizontally. TheΓöé
  8062. Γöé                      Γöéslider arm can move left and right on Γöé
  8063. Γöé                      Γöéthe slider shaft. A scale can be      Γöé
  8064. Γöé                      Γöéplaced on top of the slider shaft,    Γöé
  8065. Γöé                      Γöébelow the slider shaft, or in both    Γöé
  8066. Γöé                      Γöéplaces. This is the default           Γöé
  8067. Γöé                      Γöéorientation of the slider.            Γöé
  8068. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8069. ΓöéSLS_LEFT              ΓöéPositions the slider at the left edge Γöé
  8070. Γöé                      Γöéof the slider window. Valid only for  Γöé
  8071. Γöé                      Γöévertical sliders.                     Γöé
  8072. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8073. ΓöéSLS_OWNERDRAW         ΓöéNotifies the application whenever the Γöé
  8074. Γöé                      Γöéslider shaft, the ribbon strip, the   Γöé
  8075. Γöé                      Γöéslider arm, and the slider background Γöé
  8076. Γöé                      Γöéare to be drawn.                      Γöé
  8077. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8078. ΓöéSLS_PRIMARYSCALE1     ΓöéDetermines the location of the scale  Γöé
  8079. Γöé                      Γöéon the slider shaft by using incrementΓöé
  8080. Γöé                      Γöéand spacing specified for scale 1 as  Γöé
  8081. Γöé                      Γöéthe incremental value for positioning Γöé
  8082. Γöé                      Γöéthe slider arm. Scale 1 is displayed  Γöé
  8083. Γöé                      Γöéabove the slider shaft of a horizontalΓöé
  8084. Γöé                      Γöéslider and to the right of the slider Γöé
  8085. Γöé                      Γöéshaft of a vertical slider. This is   Γöé
  8086. Γöé                      Γöéthe default for a slider.             Γöé
  8087. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8088. ΓöéSLS_PRIMARYSCALE2     ΓöéDetermines the location of the scale  Γöé
  8089. Γöé                      Γöéon the slider shaft by using incrementΓöé
  8090. Γöé                      Γöéand spacing specified for scale 2 as  Γöé
  8091. Γöé                      Γöéthe incremental value for positioning Γöé
  8092. Γöé                      Γöéthe slider arm. Scale 2 is displayed  Γöé
  8093. Γöé                      Γöébelow the slider shaft of a horizontalΓöé
  8094. Γöé                      Γöéslider and to the left of the slider  Γöé
  8095. Γöé                      Γöéshaft of a vertical slider.           Γöé
  8096. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8097. ΓöéSLS_READONLY          ΓöéCreates a read-only slider, which     Γöé
  8098. Γöé                      Γöépresents information to the user but  Γöé
  8099. Γöé                      Γöéallows no interaction with the user.  Γöé
  8100. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8101. ΓöéSLS_RIBBONSTRIP       ΓöéFills, as the slider arm moves, the   Γöé
  8102. Γöé                      Γöéslider shaft between the home positionΓöé
  8103. Γöé                      Γöéand the slider arm with a color value Γöé
  8104. Γöé                      Γöédifferent from slider shaft color,    Γöé
  8105. Γöé                      Γöésimilar to mercury in a thermometer.  Γöé
  8106. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8107. ΓöéSLS_RIGHT             ΓöéPositions the slider at the right edgeΓöé
  8108. Γöé                      Γöéof the slider window. Valid only for  Γöé
  8109. Γöé                      Γöévertical sliders.                     Γöé
  8110. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8111. ΓöéSLS_SNAPTOINCREMENT   ΓöéCauses the slider arm, when positionedΓöé
  8112. Γöé                      Γöébetween two values, to be positioned  Γöé
  8113. Γöé                      Γöéto the nearest value and redrawn at   Γöé
  8114. Γöé                      Γöéthat position.                        Γöé
  8115. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8116. ΓöéSLS_TOP               ΓöéPositions the slider at the top of theΓöé
  8117. Γöé                      Γöéslider window. Valid only for         Γöé
  8118. Γöé                      Γöéhorizontal sliders.                   Γöé
  8119. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8120. ΓöéSLS_VERTICAL          ΓöéPositions the slider vertically. The  Γöé
  8121. Γöé                      Γöéslider arm can move up and down the   Γöé
  8122. Γöé                      Γöéslider shaft. A scale can be placed onΓöé
  8123. Γöé                      Γöéthe left side of the slider shaft, on Γöé
  8124. Γöé                      Γöéthe right side of the slider shaft, orΓöé
  8125. Γöé                      Γöéin both places.                       Γöé
  8126. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  8127.  
  8128.  
  8129. ΓòÉΓòÉΓòÉ 6.1.1.1.1. More on Linear Slider Styles ΓòÉΓòÉΓòÉ
  8130.  
  8131.  
  8132. This section summarizes information in the table and provides additional 
  8133. information on some of the styles. 
  8134.  
  8135.  
  8136. ΓòÉΓòÉΓòÉ 6.1.1.1.1.1. Slider Orientation ΓòÉΓòÉΓòÉ
  8137.  
  8138.  
  8139. The slider's orientation is determined by specifying SLS_HORIZONTAL or 
  8140. SLS_VERTICAL. The default orientation is horizontal, with the slider arm moving 
  8141. left and right on the shaft. 
  8142.  
  8143.  
  8144. ΓòÉΓòÉΓòÉ 6.1.1.1.1.2. Slider Positioning ΓòÉΓòÉΓòÉ
  8145.  
  8146.  
  8147. The slider's positioning within the slider window is determined by specifying 
  8148. SLS_CENTER, SLS_BOTTOM, SLS_TOP, SLS_LEFT, or SLS_RIGHT. The default 
  8149. positioning is centered in the slider window. 
  8150.  
  8151.  
  8152. ΓòÉΓòÉΓòÉ 6.1.1.1.1.3. Slider Scale Location ΓòÉΓòÉΓòÉ
  8153.  
  8154.  
  8155. The location of the scale on the slider shaft is determined by specifying 
  8156. SLS_PRIMARYSCALE1 or SLS_PRIMARYSCALE2. The default is to use the increment and 
  8157. spacing specified for scale 1 as the incremental value for positioning the 
  8158. slider arm. Scale 1 is displayed above the slider shaft of a horizontal slider 
  8159. and to the right of the slider shaft of a vertical slider. 
  8160.  
  8161.  
  8162. ΓòÉΓòÉΓòÉ 6.1.1.1.1.4. Slider Arm Home Position ΓòÉΓòÉΓòÉ
  8163.  
  8164.  
  8165. The slider arm's home position is determined by specifying SLS_HOMELEFT, 
  8166. SLS_HOMERIGHT, SLS_HOMEBOTTOM, or SLS_HOMETOP. The default is SLS_HOMELEFT for 
  8167. horizontal sliders and SLS_HOMEBOTTOM for vertical sliders. 
  8168.  
  8169.  
  8170. ΓòÉΓòÉΓòÉ 6.1.1.1.1.5. Slider Buttons Location ΓòÉΓòÉΓòÉ
  8171.  
  8172.  
  8173. The location of the slider buttons, if used, is determined by specifying 
  8174. SLS_BUTTONSLEFT, SLS_BUTTONSRIGHT, SLS_BUTTONSBOTTOM, or SLS_BUTTONSTOP. If you 
  8175. do not specify one of these styles, or if conflicting styles are specified, 
  8176. slider buttons are not included in the slider control. 
  8177.  
  8178.  
  8179. ΓòÉΓòÉΓòÉ 6.1.1.1.1.6. Other Styles ΓòÉΓòÉΓòÉ
  8180.  
  8181.  
  8182. If SLS_SNAPTOINCREMENT is specified and the slider arm is moved to a position 
  8183. between two values on the slider scale, it is positioned on the nearest value 
  8184. and redrawn at that position. If this style is not specified, the slider arm 
  8185. remains at the position to which it is moved. 
  8186.  
  8187. SLS_READONLY creates a read-only slider. This means the user cannot interact 
  8188. with the slider. It is simply used as to present a quantity to the user, such 
  8189. as the percentage of completion of an ongoing task. Visual differences for a 
  8190. read-only slider include a narrow slider arm, no slider buttons, and no 
  8191. detents. 
  8192.  
  8193. The SLS_RIBBONSTRIP style allows movement of the slider arm to cause the slider 
  8194. shaft between home position and the slider arm to be filled with a color value 
  8195. that is different from the slider shaft color, similar to mercury in a 
  8196. thermometer. 
  8197.  
  8198. If SLS_OWNERDRAW is specified, the application is notified whenever the slider 
  8199. shaft, the ribbon strip, the slider arm, and the slider background are to be 
  8200. drawn. 
  8201.  
  8202.  
  8203. ΓòÉΓòÉΓòÉ 6.1.2. Circular Sliders ΓòÉΓòÉΓòÉ
  8204.  
  8205. The circular slider, although different in appearance from the linear slider, 
  8206. provides much the same function. The circular slider control provides an analog 
  8207. user interface and emulates the controls of stereo and video equipment. Because 
  8208. the circular slider takes up less space on the screen, it may be more practical 
  8209. to use in cases where you might want to have several controls in the same 
  8210. window. You may want to use both types of sliders in a window to create a user 
  8211. interface that makes good use of available space and provides a familiar 
  8212. appearance to the user. 
  8213.  
  8214. The slider arm shows the value currently set by its position on the slider 
  8215. dial. The slider arm can also be represented as a small circular thumb on the 
  8216. dial rather than a line. The user selects slider values by changing the 
  8217. location of the slider arm on the dial. Outside the perimeter of the dial is a 
  8218. circular scale with tick marks representing incremental values the slider arm 
  8219. can point to. Its values can be tracked by pointing to any area on the dial and 
  8220. pressing the select button while moving the mouse on the desktop. 
  8221.  
  8222. The circular slider can have a set of buttons, one to the left and the other to 
  8223. the right of the scroll range, similar to the buttons found on the linear 
  8224. slider, that can be used to modify the value shown on the slider. 
  8225.  
  8226. The minus sign on the left button and plus sign on the right button can be 
  8227. replaced with other symbols. For example, you might want to use a left arrow 
  8228. and a right arrow instead of the minus and plus signs. 
  8229.  
  8230. Another option of the circular slider is to have a window, in the center of the 
  8231. dial, that displays the value of the dial in scrollable numeric text. 
  8232.  
  8233. The appearance and functionality of the circular slider are controlled by the 
  8234. circular slider control styles specified. These style bits are summarized in 
  8235. the section that follows. 
  8236.  
  8237.  
  8238. ΓòÉΓòÉΓòÉ 6.1.2.1. Circular Slider Styles ΓòÉΓòÉΓòÉ
  8239.  
  8240. Circular slider control style bits control the appearance and behavior of the 
  8241. slider. The following table describes circular slider control styles: 
  8242.  
  8243. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  8244. ΓöéStyle Name            ΓöéDescription                           Γöé
  8245. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8246. ΓöéCSS_360               ΓöéExtends the scroll range of the dial  Γöé
  8247. Γöé                      Γöéto 360 degrees. When this style is    Γöé
  8248. Γöé                      Γöéset, CSS_NONUMBER and CSS_NOBUTTON    Γöé
  8249. Γöé                      Γöéstyles automatically are set.         Γöé
  8250. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8251. ΓöéCSS_CIRCULARVALUE     ΓöéDraws a circular thumb, rather than a Γöé
  8252. Γöé                      Γöéline, for the value indicator.        Γöé
  8253. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8254. ΓöéCSS_MIDPOINT          ΓöéEnlarges the mid-point and end-point  Γöé
  8255. Γöé                      Γöétick marks.                           Γöé
  8256. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8257. ΓöéCSS_NOBUTTON          ΓöéPrevents the display of the + and -   Γöé
  8258. Γöé                      Γöévalue buttons.                        Γöé
  8259. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8260. ΓöéCSS_NONUMBER          ΓöéPrevents the display of a scrollable  Γöé
  8261. Γöé                      Γöénumeric value on the dial indicating  Γöé
  8262. Γöé                      Γöéthe dial's value.                     Γöé
  8263. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8264. ΓöéCSS_NOTEXT            ΓöéPrevents the display of a window titleΓöé
  8265. Γöé                      Γöébeneath the dial.                     Γöé
  8266. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8267. ΓöéCSS_POINTSELECT       ΓöéEnables tracking of the dial's value  Γöé
  8268. Γöé                      Γöéwith the mouse.                       Γöé
  8269. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  8270. ΓöéCSS_PROPORTIONALTICKS ΓöéEnables the length of the tick marks  Γöé
  8271. Γöé                      Γöéto be calculated as a percentage of   Γöé
  8272. Γöé                      Γöéthe dial's radius.                    Γöé
  8273. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  8274.  
  8275.  
  8276. ΓòÉΓòÉΓòÉ 6.1.2.1.1. More on Circular Slider Styles ΓòÉΓòÉΓòÉ
  8277.  
  8278.  
  8279. This section provides information on some of the styles. 
  8280.  
  8281.  
  8282. ΓòÉΓòÉΓòÉ 6.1.2.1.1.1. Circular Slider Buttons ΓòÉΓòÉΓòÉ
  8283.  
  8284.  
  8285. The circular slider has a set of buttons, one to the left and the other to the 
  8286. right of the scroll range. These buttons are similar to the buttons found on 
  8287. the linear slider. When selected, they modify the value of the circular slider 
  8288. in opposing ways. If you decide you do not want to display these buttons as 
  8289. part of your circular slider, specify the style CSS_NOBUTTON. 
  8290.  
  8291. The bit maps that show a minus sign (-) on the left button and a plus sign (+) 
  8292. on the right button can be replaced. For example, you might want to use a left 
  8293. arrow () and a right arrow (). To set the bit map data for the replacement 
  8294. bit maps, the owner window must send the CSM_SETBITMAPDATA control message. The 
  8295. optimal size for the button bit maps is 10x10 pels. 
  8296.  
  8297.  
  8298. ΓòÉΓòÉΓòÉ 6.1.2.1.1.2. Window Title ΓòÉΓòÉΓòÉ
  8299.  
  8300.  
  8301. Centered beneath the dial of the circular slider is a rectangular text field 
  8302. that contains the title of the window. To prevent the display of this feature, 
  8303. specify CSS_NOTEXT. 
  8304.  
  8305.  
  8306. ΓòÉΓòÉΓòÉ 6.1.2.1.1.3. Dial Value Window ΓòÉΓòÉΓòÉ
  8307.  
  8308.  
  8309. Another option of the circular slider is a window, in the center of the dial, 
  8310. that displays the value of the dial in scrollable numeric text. To prevent the 
  8311. display of this window, specify CSS_NONUMBER. 
  8312.  
  8313.  
  8314. ΓòÉΓòÉΓòÉ 6.1.2.1.1.4. 360-Degree Scale ΓòÉΓòÉΓòÉ
  8315.  
  8316.  
  8317. You can choose a scale of 360 degrees for your slider with CSS_360. Setting 
  8318. this style causes the CSS_NOBUTTON and CSS_NONUMBER styles to be set 
  8319. automatically. The CSS_NONUMBER style prevents the value indicator from 
  8320. corrupting the dial value. A 360-degree circular slider is displayed without 
  8321. the bit maps for the plus and minus buttons. 
  8322.  
  8323.  
  8324. ΓòÉΓòÉΓòÉ 6.1.2.1.1.5. Tracking Modes for Direct Manipulation ΓòÉΓòÉΓòÉ
  8325.  
  8326.  
  8327. There are two tracking modes used for direct manipulation of the circular 
  8328. slider: scrolling the dial and point selection. 
  8329.  
  8330. The default tracking behavior is scrolling, where the dial position of the 
  8331. slider is changed gradually. For example, by holding down the select mouse 
  8332. button while the pointer is positioned on the indicator line of the dial, you 
  8333. can move the mouse and cause the dial to rotate. This gradual changing of the 
  8334. dial value might be desirable for a volume control. 
  8335.  
  8336. If the CSS_POINTSELECT style is specified for the circular slider, the position 
  8337. of the dial is changed immediately to a point on the scale that has been 
  8338. selected by the mouse. Point selection allows value changes to occur 
  8339. immediately. 
  8340.  
  8341.  
  8342. ΓòÉΓòÉΓòÉ 6.1.2.1.1.6. Sizing Tick Marks ΓòÉΓòÉΓòÉ
  8343.  
  8344.  
  8345. When a low-resolution display is being used, or in situations where the 
  8346. circular slider must be made very small, the length of the tick marks can be 
  8347. sized proportionately to allow effective sizing of the circular slider. 
  8348. Specifying the CSS_PROPORTIONALTICKS style causes the length of the tick marks 
  8349. to be calculated as a percentage of the dial's radius. This style does not 
  8350. adversely affect the size of the push buttons and bit-map graphics an 
  8351. application might provide. 
  8352.  
  8353.  
  8354. ΓòÉΓòÉΓòÉ 6.2. Using Slider Controls ΓòÉΓòÉΓòÉ
  8355.  
  8356. This section explains how to use sliders in your PM applications. It covers: 
  8357.  
  8358.      Creating a linear slider 
  8359.      Retrieving data for selected slider values 
  8360.      Creating a circular slider 
  8361.  
  8362.  Code samples are provided. 
  8363.  
  8364.  
  8365. ΓòÉΓòÉΓòÉ 6.2.1. Creating a Linear Slider ΓòÉΓòÉΓòÉ
  8366.  
  8367. Before the slider is created, a temporary SLDCDATA data structure is allocated, 
  8368. and variables are specified for the slider control window handle and slider 
  8369. style. The SLDCDATA data structure is allocated so that the scale increments 
  8370. and spacing of the slider can be specified. 
  8371.  
  8372. The slider style variable enables the application to specify style bits, SLS_* 
  8373. values, that are used to customize the slider. 
  8374.  
  8375. You create a slider by using the WC_SLIDER window class name in the ClassName 
  8376. parameter of WinCreateWindow call. The handle of the slider control window is 
  8377. returned in the slider window variable. 
  8378.  
  8379. After the slider is created, but before it is made visible, the application can 
  8380. set other slider control characteristics, such as: 
  8381.  
  8382.      Size and placement of tick marks 
  8383.      Text above one or more tick marks 
  8384.      One or more detents 
  8385.      Initial slider arm position 
  8386.  
  8387.  The settings in the preceding list are just a few that an application can 
  8388.  specify. Slider control messages are used to specify these settings. 
  8389.  
  8390.  The sample code in the following figure shows an example of how a linear 
  8391.  slider is created. The main components of the slider are labeled. 
  8392.  
  8393.   SLDCDATA sldcData;                  /* SLDCDATA data structure        */
  8394.   CHAR     szTickText[5];             /* Text strings variable          */
  8395.   USHORT   idx;                       /* Counter for setting text       */
  8396.                                       /* strings                        */
  8397.   HWND     hwndSlider;                /* Slider window handle           */
  8398.   ULONG    ulSliderStyle;             /* Slider styles                  */
  8399.  
  8400.   /**********************************************************************/
  8401.   /* Initialize the parameters in the data structure.                   */
  8402.   /**********************************************************************/
  8403.   sldcData.cbSize = sizeof(SLDCDATA); /* Size of SLDCDATA structure     */
  8404.   sldcData.usScale1Increments = 6;    /* Number of increments           */
  8405.   sldcData.usScale1Spacing = 0;       /* Use 0 to have slider calculate */
  8406.                                       /* spacing                        */
  8407.  
  8408.   /**********************************************************************/
  8409.   /* Set the SLS_* style flags to the default values, plus slider       */
  8410.   /* buttons right.                                                     */
  8411.   /**********************************************************************/
  8412.   ulSliderStyle = SLS_HORIZONTAL    | /* Slider is horizontal           */
  8413.                   SLS_CENTER        | /* Slider shaft centered in       */
  8414.                                       /* slider window                  */
  8415.                   SLS_HOMELEFT      | /* Home position is left edge of  */
  8416.                                       /* slider                         */
  8417.                   SLS_PRIMARYSCALE1 | /* Scale is displayed above       */
  8418.                                       /* slider shaft                   */
  8419.                   SLS_BUTTONSRIGHT;   /* Slider buttons at right end of */
  8420.                                       /* slider                         */
  8421.  
  8422.   /**********************************************************************/
  8423.   /* Create the slider control window.                                  */
  8424.   /* The handle of the window is returned in hwndSlider.                */
  8425.   /**********************************************************************/
  8426.   hwndSlider = WinCreateWindow(
  8427.                  hwndClient,          /* Parent window handle           */
  8428.                  WC_SLIDER,           /* Slider window class name       */
  8429.                  (PSZ)NULL,           /* No window text                 */
  8430.                  ulSliderStyle,       /* Slider styles variable         */
  8431.                  (SHORT)10,           /* X coordinate                   */
  8432.                  (SHORT)10,           /* Y coordinate                   */
  8433.                  (SHORT)150,          /* Window width                   */
  8434.                  (SHORT)80,           /* Window height                  */
  8435.                  hwndClient,          /* Owner window handle            */
  8436.                  HWND_TOP,            /* Sibling window handle          */
  8437.                  ID_SLIDER,           /* Slider control window ID       */
  8438.                  &sldcData,           /* Control data structure         */
  8439.                  (PVOID)NULL);        /* No presentation parameters     */
  8440.  
  8441.   /**********************************************************************/
  8442.   /* Set tick marks at several places on the slider shaft using the     */
  8443.   /* primary scale.                                                     */
  8444.   /**********************************************************************/
  8445.   WinSendMsg(hwndSlider,              /* Slider window handle           */
  8446.              SLM_SETTICKSIZE,         /* Message for setting tick mark  */
  8447.                                       /* size.                          */
  8448.              MPFROM2SHORT(
  8449.                SMA_SETALLTICKS,       /* Attribute for setting all tick */
  8450.                                       /* marks to the same size         */
  8451.                6),                    /* Draw tick marks 6 pixels long  */
  8452.              NULL);                   /* Reserved value                 */
  8453.  
  8454.   /**********************************************************************/
  8455.   /* Set text above the tick marks.                                     */
  8456.   /**********************************************************************/
  8457.   for (idx = 0; idx <= 5; idx++)      /* Count from 0 to 5              */
  8458.   {
  8459.     itoa(10*idx, szTickText, 10);     /* Set text at increments of 10   */
  8460.  
  8461.     WinSendMsg(hwndSlider,            /* Slider window handle           */
  8462.              SLM_SETSCALETEXT,        /* Message for setting text on a  */
  8463.                                       /* slider scale                   */
  8464.              MPFROMSHORT(idx),        /* Text string counter            */
  8465.              MPFROMP(szTickText));    /* Text to put on slider scale    */
  8466.   }
  8467.  
  8468.   /**********************************************************************/
  8469.   /* Set detents between two of the tick marks on the slider shaft.     */
  8470.   /**********************************************************************/
  8471.   WinSendMsg(hwndSlider,              /* Slider window handle           */
  8472.              SLM_ADDDETENT,           /* Message for adding detents to  */
  8473.                                       /* a slider scale                 */
  8474.              MPFROMSHORT(5),          /* Put a detent 5 pixels from home*/
  8475.              NULL);                   /* Reserved value                 */
  8476.  
  8477.   WinSendMsg(hwndSlider,              /* Slider window handle           */
  8478.              SLM_ADDDETENT,           /* Message for adding detents to  */
  8479.                                       /* slider scale                   */
  8480.              MPFROMSHORT(25),         /* Put a detent 25 pixels from    */
  8481.                                       /* home                           */
  8482.              NULL);                   /* Reserved value                 */
  8483.  
  8484.   /**********************************************************************/
  8485.   /* Set the slider arm position to the 1st increment on the scale.     */
  8486.   /**********************************************************************/
  8487.   WinSendMsg(hwndSlider,              /* Slider window handle           */
  8488.              SLM_SETSLIDERINFO,       /* Message for setting slider     */
  8489.                                       /* attributes                     */
  8490.              MPFROM2SHORT(
  8491.                SMA_SLIDERARMPOSITION, /* Modify slider arm position     */
  8492.                SMA_INCREMENTVALUE),   /* Use an increment value         */
  8493.              MPFROMSHORT(1));         /* Value to use is 1st            */
  8494.                                       /* increment                      */
  8495.  
  8496.   /**********************************************************************/
  8497.   /* Since all items have been set, make the control visible.           */
  8498.   /**********************************************************************/
  8499.   WinShowWindow(hwndSlider,           /* Slider window handle           */
  8500.                 TRUE);                /* Make the window visible        */
  8501.  
  8502.  
  8503. ΓòÉΓòÉΓòÉ 6.2.2. Retrieving Data for Selected Slider Values ΓòÉΓòÉΓòÉ
  8504.  
  8505. To retrieve data represented by a slider value, specify a variable for the 
  8506. current position of the slider arm. Then, use the SLM_QUERYSLIDERINFO message 
  8507. to retrieve information about the current slider arm position in increment 
  8508. coordinates. The code fragment in the following figure shows how to retrieve 
  8509. data for a selected slider value: 
  8510.  
  8511. ULONG  ulValue;                     /* Variable in which to store     */
  8512.                                     /* current slider arm position    */
  8513.  
  8514. /**********************************************************************/
  8515. /* Get the information about the current slider arm position in       */
  8516. /* incremental coordinates.                                           */
  8517. /**********************************************************************/
  8518. ulValue = (ULONG)WinSendMsg(
  8519.   hwndSlider,                       /* Slider window handle           */
  8520.   SLM_QUERYSLIDERINFO,              /* Message for querying slider    */
  8521.                                     /* attributes                     */
  8522.   MPFROM2SHORT(
  8523.     SMA_SLIDERARMPOSITION,          /* Get increment at which slider  */
  8524.     SMA_INCREMENTVALUE),            /* arm is located                 */
  8525.   NULL);                            /* Reserved value                 */
  8526.  
  8527.  
  8528. ΓòÉΓòÉΓòÉ 6.2.3. Creating a Circular Slider ΓòÉΓòÉΓòÉ
  8529.  
  8530. The circular slider PM window class WC_CIRCULARSLIDER is similar to the window 
  8531. class of a linear slider or a scroll bar. This window class must be registered 
  8532. with WinRegisterCircularSlider before you can create a circular slider. A 
  8533. circular slider can be created by a CONTROL statement in a dialog resource, as 
  8534. shown in the following figure: 
  8535.  
  8536. CONTROL "~Balance",
  8537.         ID_BALANCECS,
  8538.         10, 50, 60, 60,
  8539.         WC_CIRCULARSLIDER,
  8540.         WS_TABSTOP |
  8541.         WS_VISIBLE |
  8542.         CSS_POINTSELECT
  8543.  
  8544. A circular slider also can be created by specifying the WC_CIRCULARSLIDER 
  8545. window class name as a parameter of the WinCreateWindow call, as shown in the 
  8546. following sample code: 
  8547.  
  8548. hwndCS = WinCreateWindow (hwndClient,           /* Parent handle  */
  8549.                           WC_CIRCULARSLIDER,    /* Class name     */
  8550.                           "~Balance",           /* Window text    */
  8551.                           WS_VISIBLE |
  8552.                           WS_TABSTOP |
  8553.                           CSS_POINTSELECT,
  8554.                           0,0,0,0,              /* Coordinates    */
  8555.                           hwndClient,           /* Owner handle   */
  8556.                           HWND_TOP,             /* Z-order        */
  8557.                           ID_BALANCECS,         /* Window ID      */
  8558.                           NULL,                 /* Control data   */
  8559.                           NULL);                /* Presparam      */
  8560.  
  8561.  
  8562. ΓòÉΓòÉΓòÉ 6.2.4. Circular Slider Sample ΓòÉΓòÉΓòÉ
  8563.  
  8564. The following is a complete coding example for adding a circular slider, and 
  8565. includes the following files: 
  8566.  
  8567.      CIRCLE.C 
  8568.      CIRCLE.RC 
  8569.      CIRCLE.H 
  8570.  
  8571.   ================
  8572.   CIRCLE.C
  8573.   ================
  8574.   #define  INCL_WIN
  8575.  
  8576.   #include <os2.h>
  8577.   #include "circle.h"
  8578.  
  8579.   /* Procedure Prototype */
  8580.   MRESULT EXPENTRY MyWindowProc(HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2);
  8581.   MRESULT EXPENTRY MainProc(HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2);
  8582.  
  8583.   /* Global Variables */
  8584.   HAB     hab;
  8585.   HMQ     hmq;
  8586.   QMSG    qmsg;
  8587.   HWND    hwndFrame;
  8588.   ULONG   flCreate;
  8589.   HWND    hwndClient;
  8590.  
  8591.   INT main(VOID)
  8592.   {
  8593.     /* Convert system pointer into hourglass pointer */
  8594.     WinSetPointer(HWND_DESKTOP,
  8595.       WinQuerySysPointer(HWND_DESKTOP,SPTR_WAIT,FALSE));
  8596.  
  8597.     hab = WinInitialize(0);
  8598.     hmq = WinCreateMsgQueue(hab,0);
  8599.  
  8600.     WinRegisterClass(hab,"Client",MainProc,CS_SIZEREDRAW,0);
  8601.  
  8602.     flCreate = FCF_SYSMENU       |
  8603.                FCF_SIZEBORDER    |
  8604.                FCF_TITLEBAR      |
  8605.                FCF_MENU          |
  8606.                FCF_MINMAX        |
  8607.                FCF_SHELLPOSITION |
  8608.                FCF_TASKLIST;
  8609.  
  8610.     hwndFrame = WinCreateStdWindow(HWND_DESKTOP,
  8611.                                    WS_VISIBLE,
  8612.                                    &flCreate,
  8613.                                    "Client",
  8614.                                    "My Dial",
  8615.                                    0L, 0,
  8616.                                    MAIN_FRAME,
  8617.                                    &hwndClient);
  8618.  
  8619.     /* Convert system pointer into arrow pointer */
  8620.     WinSetPointer(HWND_DESKTOP,
  8621.       WinQuerySysPointer(HWND_DESKTOP,SPTR_ARROW,FALSE));
  8622.  
  8623.     while (WinGetMsg(hab,&qmsg,0,0,0))WinDispatchMsg(hab,&qmsg);
  8624.  
  8625.     WinDestroyWindow(hwndFrame);
  8626.     WinDestroyMsgQueue(hmq);
  8627.     WinTerminate(hab);
  8628.  
  8629.     /* Beep when done */
  8630.     DosBeep(750,500);
  8631.     return(0);
  8632.   }
  8633.  
  8634.   MRESULT EXPENTRY MainProc(HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2)
  8635.   {
  8636.       HPS     hps;
  8637.       static  HWND hwndCirc;
  8638.       SWP     swp;
  8639.       switch(msg)
  8640.  
  8641.       {
  8642.           case WM_CLOSE:
  8643.               WinPostMsg(hwnd,WM_QUIT,0L,0L);
  8644.               return ((MRESULT)NULL);
  8645.  
  8646.           case WM_COMMAND:
  8647.               /* Exit option was selected in the menu bar */
  8648.               switch(SHORT1FROMMP(mp1))
  8649.               {
  8650.                   case IDM_FILEEXIT:
  8651.                       WinPostMsg(hwnd,WM_QUIT,0L,0L);
  8652.                       return ((MRESULT)NULL);
  8653.               }
  8654.               return ((MRESULT)NULL);
  8655.  
  8656.           case WM_CONTROL:
  8657.               /* Process circular slider notification messages */
  8658.               if (SHORT1FROMMP(mp1) == ID_DIAL)
  8659.               {
  8660.                 switch (SHORT2FROMMP(mp1))
  8661.                 {
  8662.                  /* Notification codes can be specified here */
  8663.                 }
  8664.               }
  8665.               /* Default processing for other control window ids */
  8666.               return (WinDefWindowProc(hwnd,msg,mp1,mp2));
  8667.  
  8668.           case WM_CREATE:
  8669.               /* Create circular slider control */
  8670.               hwndCirc = WinCreateWindow(hwnd,
  8671.                           WC_CIRCULARSLIDER,
  8672.                           "My Dial Window",
  8673.                           WS_VISIBLE,
  8674.                           0, 0, 0, 0,          /* Position & size      */
  8675.                           hwnd,                /* Client window        */
  8676.                           HWND_TOP,
  8677.                           ID_DIAL,
  8678.                           NULL,NULL);
  8679.  
  8680.               /* Specify range of values for circular slider */
  8681.               WinSendMsg (hwndCirc,
  8682.                           CSM_SETRANGE,
  8683.                           MPFROMLONG(0L),
  8684.                           MPFROMLONG(100L));
  8685.  
  8686.               /* Specify scroll & tick mark increments */
  8687.               WinSendMsg (hwndCirc,
  8688.                           CSM_SETINCREMENT,
  8689.                           MPFROMLONG(10L),
  8690.                           MPFROMLONG(2L));
  8691.  
  8692.               /* Set initial value */
  8693.               WinSendMsg (hwndCirc,
  8694.                           CSM_SETVALUE,
  8695.                           MPFROMLONG(80L),
  8696.                           NULL);
  8697.  
  8698.               return (MRESULT)FALSE;
  8699.  
  8700.           case WM_SIZE:
  8701.               /* The frame window has changed in size */
  8702.               /* Recalculate size of circular slider  */
  8703.               WinQueryWindowPos(hwnd,&swp);
  8704.               WinSetWindowPos(hwndCirc,
  8705.                               HWND_TOP,
  8706.                               0, 0,
  8707.                               swp.cx,
  8708.                               swp.cy,
  8709.                               SWP_MOVE |
  8710.                               SWP_SIZE);
  8711.               return (MRESULT)NULL;
  8712.  
  8713.           case WM_PAINT:
  8714.               hps = WinBeginPaint(hwnd,0,NULL);
  8715.               WinEndPaint(hps);
  8716.               return (MRESULT)NULL;
  8717.  
  8718.           default:
  8719.               return (WinDefWindowProc(hwnd,msg,mp1,mp2));
  8720.       }
  8721.   }
  8722.  
  8723.   ================
  8724.    CIRCLE.RC
  8725.   ================
  8726.   #include <os2.h>
  8727.   #include "circle.h"
  8728.  
  8729.   ACCELTABLE MAIN_FRAME
  8730.   {
  8731.           VK_F3, IDM_FILEEXIT, VIRTUALKEY
  8732.   }
  8733.  
  8734.   MENU    MAIN_FRAME
  8735.   {
  8736.       SUBMENU         "~File",            IDM_FILEMENU
  8737.       {
  8738.           MENUITEM    "E~xit\tF3",        IDM_FILEEXIT
  8739.       }
  8740.   }
  8741.  
  8742.   ================
  8743.   CIRCLE.H
  8744.   ================
  8745.   #define MAIN_FRAME    255
  8746.   #define IDM_FILEMENU  256
  8747.   #define IDM_FILEEXIT  257
  8748.   #define ID_DIAL       258
  8749.  
  8750.  
  8751. ΓòÉΓòÉΓòÉ 6.3. Graphical User Interface Support for Slider Controls ΓòÉΓòÉΓòÉ
  8752.  
  8753. This section describes the support the slider control provides for graphical 
  8754. user interfaces (GUIs). Except where noted, this support conforms to the 
  8755. guidelines in the SAA CUA Advanced Interface Design Reference. 
  8756.  
  8757. Since slider values all are mutually exclusive, only one of them can be 
  8758. selected at a time. Therefore, the only type of selection supported by the 
  8759. slider control is single selection. 
  8760.  
  8761. Note:  If more than one slider window is open, selecting values in one slider 
  8762.        window has no effect on the values selected in any other slider window. 
  8763.        For linear sliders, a black square is drawn in the center of the slider 
  8764.        arm to show which slider control window has the focus. 
  8765.  
  8766.  An initial value is selected when the slider control is first displayed. If 
  8767.  the application does not provide the initial selection for a linear slider 
  8768.  (using the SLM_SETSLIDERINFO message) to position the slider arm, the value at 
  8769.  the home position is selected automatically. The home position is the end of 
  8770.  the slider that contains the lowest value on the scale. 
  8771.  
  8772.  
  8773. ΓòÉΓòÉΓòÉ 6.3.1. Slider Navigation Techniques ΓòÉΓòÉΓòÉ
  8774.  
  8775. The slider control supports the use of pointing devices and the keyboard for 
  8776. selecting values. 
  8777.  
  8778.  
  8779. ΓòÉΓòÉΓòÉ 6.3.1.1. Pointing Device Support ΓòÉΓòÉΓòÉ
  8780.  
  8781. A user can select slider values with a pointing device. The CUA guidelines 
  8782. defines mouse button 1 (the select button) as the button for selecting values, 
  8783. and button 2 (the drag button) for dragging the slider arm to a value. These 
  8784. definitions also apply to the same buttons on any other pointing device, such 
  8785. as a joystick. 
  8786.  
  8787. The select button and drag button can be used in conjunction with the following 
  8788. slider components to select slider values: 
  8789.  
  8790.      Slider arm 
  8791.  
  8792.       Moving the pointer over the slider arm, then pressing and holding the 
  8793.       select or drag buttons while moving the pointer, causes the slider arm to 
  8794.       move in the direction the pointer is moving. When the button is released, 
  8795.       the value closest to the slider arm position becomes the selected value. 
  8796.  
  8797.      Slider shaft 
  8798.  
  8799.       Clicking the select button when the pointer is over the slider shaft 
  8800.       causes the slider arm to move one increment in the direction of the 
  8801.       pointer. For linear sliders, increments are determined by the initial 
  8802.       values passed for the primary scale specified (SLS_PRIMARYSCALE1 or 
  8803.       SLS_PRIMARYSCALE2) when the slider is created. 
  8804.  
  8805.       Clicking the drag button when the pointer is over the slider shaft causes 
  8806.       the slider arm to move to the pointer's location. 
  8807.  
  8808.      Slider buttons 
  8809.  
  8810.       Clicking the select button when the pointer is over a slider button 
  8811.       causes the slider arm to move one increment in the direction the arrow on 
  8812.       the slider button is pointing. 
  8813.  
  8814.       Slider buttons are optional. If used, two slider buttons are available to 
  8815.       the user. The arrows on top of the slider buttons point to opposite ends 
  8816.       of the slider. Both slider buttons are positioned at the same end of the 
  8817.       slider. 
  8818.  
  8819.       For linear sliders, slider buttons are enabled by specifying the 
  8820.       appropriate SLS_* value when the slider control window is created. For 
  8821.       horizontal sliders, you can specify either SLS_BUTTONSLEFT or 
  8822.       SLS_BUTTONSRIGHT. For vertical sliders, you can specify either 
  8823.       SLS_BUTTONSBOTTOM or SLS_BUTTONSTOP. The default is no slider buttons. If 
  8824.       more than one of these style bits is specified, no slider buttons are 
  8825.       enabled. 
  8826.  
  8827.      Detents 
  8828.  
  8829.       A detent is similar to a tick mark on a linear slider scale because it 
  8830.       represents a value on the scale. However, unlike a tick mark, a detent 
  8831.       can be placed anywhere along the slider scale instead of in specific 
  8832.       increments. 
  8833.  
  8834.       A detent can be selected by moving the pointer over it and pressing the 
  8835.       select button on the pointing device. When this happens, the slider arm 
  8836.       moves to the position on the slider shaft indicated by the detent. 
  8837.  
  8838.  
  8839. ΓòÉΓòÉΓòÉ 6.3.1.2. Keyboard Support ΓòÉΓòÉΓòÉ
  8840.  
  8841. A user can select a value by using the navigation keys to move the slider arm 
  8842. to the value or by typing a value in an entry field, if one is provided by the 
  8843. application, to change the slider arm position. The following list describes 
  8844. these methods of selecting slider values: 
  8845.  
  8846.      Values can be selected using the Up, Down, Left, and Right Arrow keys to 
  8847.       move the slider arm one increment at a time. The Up and Down Arrow keys 
  8848.       are enabled for vertical sliders, and the Right and Left Arrow keys are 
  8849.       enabled for horizontal sliders. If no tick mark exists on the scale in 
  8850.       the requested direction, the slider arm does not move. 
  8851.  
  8852.       If an Arrow key is pressed in conjunction with the Shift key, the slider 
  8853.       arm moves to the next detent instead of the next tick mark. If no detent 
  8854.       exists on the scale in the requested direction, the slider arm does not 
  8855.       move. 
  8856.  
  8857.      The Home and End keys can be used to select the lowest and highest 
  8858.       values, respectively, in the scale. If the Ctrl key is pressed in 
  8859.       combination with the Home or End keys, the result is the same as pressing 
  8860.       only the Home or End keys. 
  8861.  
  8862.      The application can provide an optional entry field for the slider 
  8863.       control. The entry field is a separate control, but it can work in 
  8864.       conjunction with the slider control. 
  8865.  
  8866.       If the application provides an entry field for the slider control window, 
  8867.       it must be implemented as follows: 
  8868.  
  8869.         -  The user must be allowed to type a value into the entry field. 
  8870.  
  8871.         -  If the typed value is within the range of the slider scale, the 
  8872.            slider arm moves to that value as soon as the value is typed. 
  8873.  
  8874.         -  No other action, such as pressing the Enter key, is required. 
  8875.  
  8876.  
  8877. ΓòÉΓòÉΓòÉ 7. Spin Button Controls ΓòÉΓòÉΓòÉ
  8878.  
  8879. A spin button control (WC_SPINBUTTON window class) is a visual component that 
  8880. gives users quick access to a finite set of data by letting them select from a 
  8881. scrollable ring of choices. Because the user can see only one item at a time, a 
  8882. spin button should be used only with data that is intuitively related, such as 
  8883. a list of the months of the year, or an alphabetic list of cities or states. 
  8884. This chapter explains when and how to use spin buttons in PM applications. 
  8885.  
  8886.  
  8887. ΓòÉΓòÉΓòÉ 7.1. About Spin Button Controls ΓòÉΓòÉΓòÉ
  8888.  
  8889. A spin button consists of at least one spin field that is a single-line entry 
  8890. (SLE) field, and up and down arrows that are stacked on top of one another. 
  8891. These arrows are positioned to the right of the SLE field. 
  8892.  
  8893. You can create multi-field spin buttons for those applications in which users 
  8894. must select more than one value. For example, in setting a date, the spin 
  8895. button control can provide individual fields for setting the month, day, and 
  8896. year. The first spin field in the spin button could contain a list of months; 
  8897. the second, a list of numbers; and the third, a list of years. 
  8898.  
  8899. The application uses a multi-field spin button by creating one master component 
  8900. that contains a spin field and the spin arrows, and servant components that 
  8901. contain only spin fields. The spin buttons are created at component 
  8902. initialization. The servant components are passed a handle to the master 
  8903. component in a message. When a servant spin field has the focus, it is spun by 
  8904. the arrows in the master component. 
  8905.  
  8906. The list of values in a spin button entry field can be an array of data or a 
  8907. list of consecutive integers, defined by an upper and a lower limit. 
  8908.  
  8909.  
  8910. ΓòÉΓòÉΓòÉ 7.2. Using Spin Button Controls ΓòÉΓòÉΓòÉ
  8911.  
  8912. This section describes how to create a spin button control. 
  8913.  
  8914.  
  8915. ΓòÉΓòÉΓòÉ 7.2.1. Creating a Spin Button ΓòÉΓòÉΓòÉ
  8916.  
  8917. A spin button is created as a public window class by using WinCreateWindow, 
  8918. with a class style of WC_SPINBUTTON and a window style of WS_VISIBLE. These are 
  8919. joined with any of the spin button style flags by using a logical OR (|). The 
  8920. spin button style flags let you specify: 
  8921.  
  8922.      Character input restrictions (none, numeric, read-only) 
  8923.      Presentation of the data in the spin field (left-justified, 
  8924.       right-justified, centered) 
  8925.      Presence or absence of a border around the spin field 
  8926.      Spin speed 
  8927.      Zero-padding of numeric spin fields 
  8928.  
  8929.  The placement and width of the spin button component are specified as 
  8930.  parameters in WinCreateWindow. 
  8931.  
  8932.  The upper and lower limits of numeric fields, the value array pointer for 
  8933.  arrays of strings, and the initial value in the spin field are all set by 
  8934.  messages sent from the application to the component. 
  8935.  
  8936.  You can destroy the spin button component window using WinDestroyWindow when 
  8937.  finished. The component handle that was returned when the spin button was 
  8938.  created is the input parameter to WinDestroyWindow. The following sample code 
  8939.  shows an example of how to create a spin button. 
  8940.  
  8941.   ULONG      ulSpinStyle;              /* Spin Button style             */
  8942.   HWND       hwndSpin;                 /* Spin Button window handle     */
  8943.  
  8944.   /**********************************************************************/
  8945.   /* Set the SPBS_* style flags.                                        */
  8946.   /**********************************************************************/
  8947.   ulSpinStyle = SPBS_MASTER      |     /* Spin button has its own       */
  8948.                                        /* buttons,                      */
  8949.                 SPBS_NUMERICONLY |     /* and it only holds numbers     */
  8950.                 SPBS_JUSTRIGHT   |     /* that are right justified,     */
  8951.                 SPBS_FASTSPIN;         /* and it spins faster as        */
  8952.                                        /* the arrows are held down      */
  8953.  
  8954.   /**********************************************************************/
  8955.   /* Create the Spin Button control window.                             */
  8956.   /* The handle of the window is returned in hwndSpin.                  */
  8957.   /**********************************************************************/
  8958.   hwndSpin = WinCreateWindow (
  8959.                        hwndClient,     /* Parent window handle          */
  8960.                        WC_SPINBUTTON,  /* Spin Button window class name */
  8961.                        (PSZ)NULL,      /* No window text                */
  8962.                        ulSpinStyle,    /* Spin Button styles variable   */
  8963.  
  8964.                        (LONG)10,       /* X coordinate                  */
  8965.                        (LONG)10,       /* Y coordinate                  */
  8966.                        (LONG)150,      /* Window width                  */
  8967.                        (LONG)50,       /* Window height                 */
  8968.                        hwndClient,     /* Owner window handle           */
  8969.                        HWND_TOP,       /* Sibling window handle         */
  8970.                        ID_SPINBUTTON,  /* Spin Button control window ID */
  8971.                        (PVOID)NULL,    /* No control data structure     */
  8972.                        (PVOID)NULL);   /* No presentation parameters    */
  8973.  
  8974.   /**********************************************************************/
  8975.   /* Set the limits of the Spin Button control, since it has a style    */
  8976.   /* of SPBS_NUMERICONLY.                                               */
  8977.   /**********************************************************************/
  8978.   WinSendMsg (hwndSpin,                /* Spin Button window handle     */
  8979.               SPBM_SETLIMITS,          /* Set limits message            */
  8980.               (MPARAM)1000,            /* Spin Button maximum setting   */
  8981.               (MPARAM)0);              /* Spin Button minimum setting   */
  8982.  
  8983.   /**********************************************************************/
  8984.   /* Set the initial value of the Spin Button.                          */
  8985.   /**********************************************************************/
  8986.   WinSendMsg (hwndSpin,                /* Spin Button window handle     */
  8987.               SPBM_SETCURRENTVALUE,    /* Set current value message     */
  8988.               (MPARAM)100,             /* Spin Button initial value     */
  8989.               (MPARAM)NULL);           /* Reserved value                */
  8990.  
  8991.   /**********************************************************************/
  8992.   /* Because all items have been set, make the control visible.         */
  8993.   /**********************************************************************/
  8994.   WinShowWindow (hwndSpin,             /* Spin Button window handle     */
  8995.                  TRUE);                /* Make the window visible       */
  8996.  
  8997.  
  8998. ΓòÉΓòÉΓòÉ 7.3. Graphical User Interface Support for Spin Button Controls ΓòÉΓòÉΓòÉ
  8999.  
  9000. Users can interact with the spin button using either the keyboard or a pointing 
  9001. device, such as a mouse, as follows: 
  9002.  
  9003.      Using the select button (button 1) on the pointing device, users first 
  9004.       give focus to the spin field they want to change, and then click on 
  9005.       either the Up Arrow or Down Arrow until the value they want is displayed 
  9006.       in the spin field. 
  9007.  
  9008.      Using a keyboard, users press the: 
  9009.  
  9010.         -  Up Arrow and Down Arrow keys to see the choices 
  9011.  
  9012.         -  Left Arrow and Right Arrow keys to move the cursor left and right 
  9013.            within a spin field 
  9014.  
  9015.         -  Home and End keys to move the cursor to the first and last 
  9016.            characters in a spin field 
  9017.  
  9018.         -  Tab and Shift+Tab keys to move the input focus from one field to 
  9019.            another in multi-field spin buttons 
  9020.  
  9021.  Users can view the values in a spin field one at a time, or they can rapidly 
  9022.  scroll a list by keeping either the Up or Down Arrow keys pressed. When a spin 
  9023.  button is not read-only, users can advance quickly to the value they want to 
  9024.  set in a spin field by typing over the value currently displayed. 
  9025.  
  9026.  
  9027. ΓòÉΓòÉΓòÉ 8. Static Controls ΓòÉΓòÉΓòÉ
  9028.  
  9029. A static control is a simple text field, bit map, or icon that an application 
  9030. can use to label, enclose, or separate other control windows. This chapter 
  9031. describes how to create and use static controls in PM applications. 
  9032.  
  9033.  
  9034. ΓòÉΓòÉΓòÉ 8.1. About Static Controls ΓòÉΓòÉΓòÉ
  9035.  
  9036. Unlike the other types of control windows, a static control does not accept 
  9037. user input or send notification messages to its owner. The primary advantage of 
  9038. a static control is that it provides a label or graphic that requires little 
  9039. attention from an application. At most, an application might change the text or 
  9040. position of a static control. 
  9041.  
  9042.  
  9043. ΓòÉΓòÉΓòÉ 8.1.1. Keyboard Focus ΓòÉΓòÉΓòÉ
  9044.  
  9045. A static control never accepts the keyboard focus. When a static control 
  9046. receives a WM_SETFOCUS message, or when a user clicks the static control, the 
  9047. system advances the focus to the next sibling window that is not a static 
  9048. control. If the control has no siblings, the system gives the focus to the 
  9049. owner of the static control. 
  9050.  
  9051.  
  9052. ΓòÉΓòÉΓòÉ 8.1.2. Static Control Handle ΓòÉΓòÉΓòÉ
  9053.  
  9054. Every static control is associated with a 32-bit data field. A static control 
  9055. with the SS_BITMAP or SS_ICON style uses this field to store the handle of the 
  9056. bit map or icon that it displays. An application can obtain that handle by 
  9057. sending the SM_QUERYHANDLE message to the control. An application can replace 
  9058. the bit map or icon by sending the SM_SETHANDLE message to the control, 
  9059. specifying a valid icon or bit map handle. Changing the handle causes the 
  9060. system to redraw the control. 
  9061.  
  9062. For a non-icon or non-bit map static control, the data field is available for 
  9063. application-defined data and has no effect on the appearance of the control. 
  9064.  
  9065. An application can retrieve the data field of a static control window by 
  9066. calling WinWindowFromID, using the handle of the owner and the window 
  9067. identifier of the static control. The static control window identifier is 
  9068. specified in either the dialog-window template or WinCreateWindow. 
  9069.  
  9070.  
  9071. ΓòÉΓòÉΓòÉ 8.1.3. Static Control Styles ΓòÉΓòÉΓòÉ
  9072.  
  9073. A static control has style bits that determine whether the control displays 
  9074. text, draws a simple box containing text, displays an icon or a bit map, or 
  9075. shows a framed or unframed colored box. Applications can specify a combination 
  9076. of the following styles for a static control: 
  9077.  
  9078. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  9079. ΓöéStyle Name          ΓöéDescription                             Γöé
  9080. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9081. ΓöéSS_BITMAP           ΓöéDraws a bit map. The bit map resource   Γöé
  9082. Γöé                    Γöémust be provided in the                 Γöé
  9083. Γöé                    Γöéresource-definition file. To include theΓöé
  9084. Γöé                    Γöébit map in a dialog window, the resourceΓöé
  9085. Γöé                    Γöéidentifier must be specified in the textΓöé
  9086. Γöé                    Γöéparameter of the CONTROL statement in   Γöé
  9087. Γöé                    Γöéthe resource definition file. To includeΓöé
  9088. Γöé                    Γöéthe bit map in a non-dialog window, the Γöé
  9089. Γöé                    ΓöéASCII representation of the identifier  Γöé
  9090. Γöé                    Γöémust be specified in the pszName        Γöé
  9091. Γöé                    Γöéparameter of WinCreateWindow, that is,  Γöé
  9092. Γöé                    Γöéthe first byte of the pszName parameter Γöé
  9093. Γöé                    Γöémust be the cross-hatch character (#),  Γöé
  9094. Γöé                    Γöéand the remaining text must be the ASCIIΓöé
  9095. Γöé                    Γöérepresentation of the identifier, for   Γöé
  9096. Γöé                    Γöéexample, #125.                          Γöé
  9097. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9098. ΓöéSS_BKGNDFRAME       ΓöéCreates a box whose frame has the       Γöé
  9099. Γöé                    Γöébackground color.                       Γöé
  9100. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9101. ΓöéSS_BKGNDRECT        ΓöéCreates a rectangle filled with the     Γöé
  9102. Γöé                    Γöébackground color.                       Γöé
  9103. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9104. ΓöéSS_FGNDFRAME        ΓöéCreates a box whose frame has the       Γöé
  9105. Γöé                    Γöéforeground color.                       Γöé
  9106. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9107. ΓöéSS_FGNDRECT         ΓöéCreates a rectangle filled with the     Γöé
  9108. Γöé                    Γöéforeground color.                       Γöé
  9109. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9110. ΓöéSS_GROUPBOX         ΓöéCreates a box whose upper-right corner  Γöé
  9111. Γöé                    Γöécontains control text. This style is    Γöé
  9112. Γöé                    Γöéuseful for enclosing groups of radio    Γöé
  9113. Γöé                    Γöébuttons or check boxes in a box.        Γöé
  9114. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9115. ΓöéSS_HALFTONEFRAME    ΓöéCreates a box whose frame has halftone  Γöé
  9116. Γöé                    Γöéshading.                                Γöé
  9117. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9118. ΓöéSS_HALFTONERECT     ΓöéCreates a box filled with halftone      Γöé
  9119. Γöé                    Γöéshading.                                Γöé
  9120. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9121. ΓöéSS_ICON             ΓöéDraws an icon. The resource identifier  Γöé
  9122. Γöé                    Γöéfor the icon resource is determined the Γöé
  9123. Γöé                    Γöésame way as the SS_BITMAP style. The    Γöé
  9124. Γöé                    Γöéicon resource must be in the            Γöé
  9125. Γöé                    Γöéresource-definition file.               Γöé
  9126. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9127. ΓöéSS_SYSICON          ΓöéDraws a system-pointer icon. The        Γöé
  9128. Γöé                    Γöéresource identifier for the             Γöé
  9129. Γöé                    Γöésystem-pointer resource is determined   Γöé
  9130. Γöé                    Γöéthe same way as the SS_BITMAP style. To Γöé
  9131. Γöé                    Γöédisplay this system pointer, the system Γöé
  9132. Γöé                    Γöécalls WinQuerySysPointer with the       Γöé
  9133. Γöé                    Γöéspecified identifier.                   Γöé
  9134. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9135. ΓöéSS_TEXT             ΓöéCreates a box with formatted text. An   Γöé
  9136. Γöé                    Γöéapplication can combine various         Γöé
  9137. Γöé                    Γöéformatting options with this style to   Γöé
  9138. Γöé                    Γöéproduce formatted text in the boundariesΓöé
  9139. Γöé                    Γöéof the control. The formatting flags areΓöé
  9140. Γöé                    Γöéthe same as those used for WinDrawText. Γöé
  9141. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  9142.  
  9143.  
  9144. ΓòÉΓòÉΓòÉ 8.1.4. Default Static Control Performance ΓòÉΓòÉΓòÉ
  9145.  
  9146. The messages specifically handled by the predefined static control class 
  9147. (WC_STATIC) are as follows: 
  9148.  
  9149. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  9150. ΓöéMessage Name          ΓöéDescription                           Γöé
  9151. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9152. ΓöéSM_QUERYHANDLE        ΓöéReturns the handle associated with theΓöé
  9153. Γöé                      Γöéstatic control window.                Γöé
  9154. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9155. ΓöéSM_SETHANDLE          ΓöéSets the handle associated with the   Γöé
  9156. Γöé                      Γöéstatic control and invalidates the    Γöé
  9157. Γöé                      Γöécontrol window, forcing it to be      Γöé
  9158. Γöé                      Γöéredrawn.                              Γöé
  9159. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9160. ΓöéWM_ADJUSTWINDOWPOS    ΓöéAdjusts the SWP data structure so thatΓöé
  9161. Γöé                      Γöéthe new window size matches the bit   Γöé
  9162. Γöé                      Γöémap, icon, or system-pointer          Γöé
  9163. Γöé                      Γöédimensions associated with the static Γöé
  9164. Γöé                      Γöécontrol.                              Γöé
  9165. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9166. ΓöéWM_CREATE             ΓöéSets the text for a static-text       Γöé
  9167. Γöé                      Γöécontrol. Loads the bit map or icon    Γöé
  9168. Γöé                      Γöéresource for the bit map or icon      Γöé
  9169. Γöé                      Γöéstatic control. Returns TRUE if the   Γöé
  9170. Γöé                      Γöéresource cannot be loaded.            Γöé
  9171. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9172. ΓöéWM_DESTROY            ΓöéFrees the text for a static-text      Γöé
  9173. Γöé                      Γöécontrol. Destroys the bit map or icon Γöé
  9174. Γöé                      Γöéfor a bit map or icon static control. Γöé
  9175. Γöé                      ΓöéThe icon for a system-pointer static  Γöé
  9176. Γöé                      Γöécontrol is not destroyed because it   Γöé
  9177. Γöé                      Γöébelongs to the system.                Γöé
  9178. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9179. ΓöéWM_ENABLE             ΓöéInvalidates the entire static control Γöé
  9180. Γöé                      Γöéwindow, forcing it to be redrawn.     Γöé
  9181. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9182. ΓöéWM_HITTEST            ΓöéReturns the value HT_TRANSPARENT for  Γöé
  9183. Γöé                      Γöéthe following static-control styles:  Γöé
  9184. Γöé                      Γöéo SS_BKGNDFRAME                       Γöé
  9185. Γöé                      Γöéo SS_BKGNDRECT                        Γöé
  9186. Γöé                      Γöéo SS_FGNDFRAME                        Γöé
  9187. Γöé                      Γöéo SS_FGNDRECT                         Γöé
  9188. Γöé                      Γöéo SS_GROUPBOX                         Γöé
  9189. Γöé                      Γöéo SS_HALFTONEFRAME                    Γöé
  9190. Γöé                      Γöéo SS_HALFTONERECT.                    Γöé
  9191. Γöé                      Γöé                                      Γöé
  9192. Γöé                      ΓöéFor other styles, this message returnsΓöé
  9193. Γöé                      Γöéthe result of WinDefWindowProc.       Γöé
  9194. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9195. ΓöéWM_MATCHMNEMONIC      ΓöéReturns TRUE if the mnemonic passed inΓöé
  9196. Γöé                      Γöéthe mp1 parameter matches the mnemonicΓöé
  9197. Γöé                      Γöéin the control-window text.           Γöé
  9198. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9199. ΓöéWM_MOUSEMOVE          ΓöéSets the mouse pointer to the arrow   Γöé
  9200. Γöé                      Γöépointer and returns TRUE.             Γöé
  9201. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9202. ΓöéWM_PAINT              ΓöéDraws the static control based on its Γöé
  9203. Γöé                      Γöéstyle attributes.                     Γöé
  9204. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9205. ΓöéWM_QUERYDLGCODE       ΓöéReturns the predefined constant       Γöé
  9206. Γöé                      ΓöéDLGC_STATIC.                          Γöé
  9207. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9208. ΓöéWM_QUERYWINDOWPARAMS  ΓöéReturns the requested window          Γöé
  9209. Γöé                      Γöéparameters.                           Γöé
  9210. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9211. ΓöéWM_SETFOCUS           ΓöéSets the focus to the next sibling    Γöé
  9212. Γöé                      Γöéwindow that can accept the focus; or  Γöé
  9213. Γöé                      Γöéif no such sibling exists, sets the   Γöé
  9214. Γöé                      Γöéfocus to the parent window.           Γöé
  9215. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9216. ΓöéWM_SETWINDOWPARAMS    ΓöéAllows the text to be set (static-textΓöé
  9217. Γöé                      Γöécontrols only).                       Γöé
  9218. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  9219.  
  9220.  
  9221. ΓòÉΓòÉΓòÉ 8.2. Using Static Controls ΓòÉΓòÉΓòÉ
  9222.  
  9223. This section explains how to perform the following tasks: 
  9224.  
  9225.      Include a static control in a dialog window 
  9226.      Include a static control in a client window 
  9227.  
  9228.  
  9229. ΓòÉΓòÉΓòÉ 8.2.1. Including a Static Control in a Dialog Window ΓòÉΓòÉΓòÉ
  9230.  
  9231. To include a static control in a dialog window, you must define the control in 
  9232. a dialog-window template in a resource-definition file. The following 
  9233. resource-definition file creates a dialog window that contains a static-text 
  9234. control and three static-icon controls: 
  9235.  
  9236. DLGTEMPLATE IDD_TOOLDLG LOADONCALL MOVEABLE DISCARDABLE
  9237.   BEGIN
  9238.     DIALOG "",
  9239.            IDD_TOOLDLG,
  9240.            114, 53, 161, 127,
  9241.            FS_NOBYTEALIGN |
  9242.            FS_DLGBORDER   |
  9243.            WS_VISIBLE     |
  9244.            WS_SAVEBITS
  9245.  
  9246.     BEGIN
  9247.       CTEXT "Select a tool",
  9248.             IDS_TEXT,
  9249.             49, 110, 56, 8,
  9250.             SS_TEXT   |
  9251.             DT_CENTER |
  9252.             DT_TOP    |
  9253.             WS_GROUP  |
  9254.             WS_VISIBLE
  9255.  
  9256.       AUTORADIOBUTTON "Paintbrush",
  9257.                       IDB_BRUSH,
  9258.                       63, 87, 61, 10,
  9259.                       WS_TABSTOP |
  9260.                       WS_GROUP   |
  9261.                       WS_VISIBLE
  9262.  
  9263.       AUTORADIOBUTTON "Scissors",
  9264.                       IDB_SCISSORS,
  9265.                       63, 64, 60, 10,
  9266.                       WS_TABSTOP |
  9267.                       WS_VISIBLE
  9268.  
  9269.       AUTORADIOBUTTON "Eraser",
  9270.                       IDB_ERASER,
  9271.                       65, 39, 43, 10,
  9272.                       WS_TABSTOP |
  9273.                       WS_VISIBLE
  9274.  
  9275.       ICON IDI_BRUSH,
  9276.            IDI_BRUSHICON,
  9277.            33, 84, 22, 16,
  9278.            WS_GROUP |
  9279.            WS_VISIBLE
  9280.  
  9281.       ICON IDI_SCISSORS,
  9282.            IDI_SCISSORSICON,
  9283.            33, 60, 22, 16,
  9284.            WS_GROUP |
  9285.            WS_VISIBLE
  9286.  
  9287.       ICON IDI_ERASER,
  9288.            IDI_ERASERICON,
  9289.            33, 36, 22, 16,
  9290.            WS_GROUP |
  9291.            WS_VISIBLE
  9292.  
  9293.       PUSHBUTTON "OK",
  9294.                  DID_OK,
  9295.                  10, 12, 38, 13,
  9296.                  WS_TABSTOP |
  9297.                  WS_GROUP   |
  9298.                  WS_VISIBLE
  9299.  
  9300.       PUSHBUTTON "Cancel",
  9301.                  DID_CANCEL,
  9302.                  59, 12, 38, 13,
  9303.                  BS_DEFAULT |
  9304.                  WS_TABSTOP |
  9305.                  WS_GROUP   |
  9306.                  WS_VISIBLE
  9307.  
  9308.       PUSHBUTTON "Help",
  9309.                  IDB_HELP,
  9310.                  111, 13, 38, 13,
  9311.                  BS_HELP    |
  9312.                  WS_TABSTOP |
  9313.                  WS_GROUP   |
  9314.                  WS_VISIBLE
  9315.     END
  9316.   END
  9317.  
  9318. ICON IDI_BRUSH    brush.ico
  9319. ICON IDI_SCISSORS scissr.ico
  9320. ICON IDI_ERASER   eraser.ico
  9321.  
  9322.  
  9323. ΓòÉΓòÉΓòÉ 8.2.2. Including a Static Control in a Client Window ΓòÉΓòÉΓòÉ
  9324.  
  9325. An application can include a static control in a non-dialog window by calling 
  9326. WinCreateWindow with the window class WC_STATIC. The flStyle parameter to 
  9327. WinCreateWindow defines the appearance of the control. 
  9328.  
  9329. The following code fragment creates a static text control whose size and 
  9330. position are based on the size of the client window and the metrics for the 
  9331. current font: 
  9332.  
  9333. #define ID_TITLE 5
  9334. #define INCL_GPILCIDS
  9335.  
  9336. HWND hwnd,hwndStatic,hwndClient;
  9337. HPS hps;
  9338. RECTL rcl;
  9339. FONTMETRICS fm;
  9340. ULONG ulTitleLen;
  9341. CHAR szTitle[] = "Static Text Controls";
  9342.  
  9343. /* Obtain the size of the client window */
  9344. WinQueryWindowRect(hwnd, &rcl);
  9345.  
  9346. /* Obtain a presentation space handle and */
  9347. /* the metrics for the current font       */
  9348. hps = WinBeginPaint (hwnd, (HPS) NULL, (PRECTL) NULL);
  9349. GpiQueryFontMetrics(hps, sizeof(FONTMETRICS), &fm);
  9350.  
  9351. /* Obtain the size of the static control text string */
  9352. ulTitleLen = (ULONG) strlen(szTitle);
  9353.  
  9354. /* Create the static control. Base the size and  */
  9355. /* position on the size of the client window and */
  9356. /* the metrics of the current font.              */
  9357.  
  9358. hwndStatic = WinCreateWindow(
  9359.                hwndClient,                    /* Parent window          */
  9360.                WC_STATIC,                     /* Window class           */
  9361.                szTitle,                       /* Window text            */
  9362.                WS_VISIBLE |                   /* Make it visible        */
  9363.                SS_TEXT    |                   /* Static-text control    */
  9364.                DT_VCENTER |                   /* Center text vert.      */
  9365.                DT_CENTER,                     /* Center text horiz.     */
  9366.  
  9367.                ((rcl.xRight / 2) -
  9368.                (ulTitleLen / 2) * fm.lEmInc), /* x position             */
  9369.                rcl.yTop - fm.lEmHeight * 2,   /* y position             */
  9370.                fm.lEmInc * ulTitleLen,        /* Width                  */
  9371.                fm.lEmHeight * 2,              /* Height                 */
  9372.                hwndClient,                    /* Owner window           */
  9373.                HWND_TOP,                      /* Top of z-order         */
  9374.                ID_TITLE,                      /* Window identifier      */
  9375.                NULL,                          /* Control data           */
  9376.                NULL);                         /* Presentation parameters*/
  9377.  
  9378. WinEndPaint(hps);
  9379.  
  9380. If your application creates a static control with the SS_ICON or SS_BITMAP 
  9381. style, make sure that the resource identifier specified in the pszName 
  9382. parameter corresponds to an icon or a bit map resource in the 
  9383. resource-definition file. If there is no resource, the application cannot 
  9384. create the static control. 
  9385.  
  9386.  
  9387. ΓòÉΓòÉΓòÉ 9. Title-Bar Controls ΓòÉΓòÉΓòÉ
  9388.  
  9389. A title bar is one of several control windows that comprise a standard frame 
  9390. window, giving the frame window its distinctive look and performance 
  9391. capabilities.  This chapter describes how to create and use title-bar control 
  9392. windows in PM applications. 
  9393.  
  9394.  
  9395. ΓòÉΓòÉΓòÉ 9.1. About Title Bars ΓòÉΓòÉΓòÉ
  9396.  
  9397. The title bar in a standard frame window performs the following four functions: 
  9398.  
  9399.      Displays the title of the window across the top of the frame window 
  9400.  
  9401.      Changes its highlighted appearance to show whether the frame window is 
  9402.       active  (Ordinarily, the topmost window on the screen is the active 
  9403.       window.) 
  9404.  
  9405.      Responds to the actions of the user-for example, dragging the frame 
  9406.       window to a new location on the screen. 
  9407.  
  9408.      Flashes (as a result of the WinFlashWindow function) to get the attention 
  9409.       of the user. 
  9410.  
  9411.  Once the frame controls are in place in the frame window, an application 
  9412.  typically ignores them, because the system handles frame controls.  In some 
  9413.  cases, however, an application can take control of the title bar by sending 
  9414.  messages to the title-bar control window. 
  9415.  
  9416.  
  9417. ΓòÉΓòÉΓòÉ 9.1.1. Default Title-Bar Behavior ΓòÉΓòÉΓòÉ
  9418.  
  9419. A title-bar control window sends messages to its owner (the frame window) when 
  9420. the control receives user input.  Following are the messages that the title-bar 
  9421. control processes.  Each message is described in terms of how the title-bar 
  9422. control responds to that message. 
  9423.  
  9424. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  9425. ΓöéMessage             ΓöéDescription                             Γöé
  9426. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9427. ΓöéTBM_QUERYHILITE     ΓöéReturns the highlighted state of the    Γöé
  9428. Γöé                    Γöétitle bar.                              Γöé
  9429. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9430. ΓöéTBM_SETHILITE       ΓöéSets the highlighted state of the title Γöé
  9431. Γöé                    Γöébar, repainting the title bar if the    Γöé
  9432. Γöé                    Γöéstate is changing.                      Γöé
  9433. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9434. ΓöéWM_BUTTON1DBLCLK    ΓöéRestores the title bar if the owner     Γöé
  9435. Γöé                    Γöéwindow is minimized or maximized.  If   Γöé
  9436. Γöé                    Γöéthe window is neither minimized nor     Γöé
  9437. Γöé                    Γöémaximized, this message maximizes the   Γöé
  9438. Γöé                    Γöéwindow.                                 Γöé
  9439. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9440. ΓöéWM_BUTTON1DOWN      ΓöéSends the WM_TRACKFRAME message to the  Γöé
  9441. Γöé                    Γöéowner window to start the tracking      Γöé
  9442. Γöé                    Γöéoperation for the frame window.         Γöé
  9443. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9444. ΓöéWM_CREATE           ΓöéSets the text for the title bar. ReturnsΓöé
  9445. Γöé                    ΓöéFALSE if the text is already set.       Γöé
  9446. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9447. ΓöéWM_DESTROY          ΓöéFrees the window text for the title bar.Γöé
  9448. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9449. ΓöéWM_HITTEST          ΓöéAlways returns HT_NORMAL, so that the   Γöé
  9450. Γöé                    Γöétitle bar does not beep when it is      Γöé
  9451. Γöé                    Γöédisabled. (It is disabled when the frameΓöé
  9452. Γöé                    Γöéwindow is maximized.)                   Γöé
  9453. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9454. ΓöéWM_PAINT            ΓöéDraws the title bar.                    Γöé
  9455. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9456. ΓöéWM_QUERYDLGCODE     ΓöéReturns the predefined constant         Γöé
  9457. Γöé                    ΓöéDLGC_STATIC. The user cannot use the TabΓöé
  9458. Γöé                    Γöékey to move to the title bar in a dialogΓöé
  9459. Γöé                    Γöéwindow.                                 Γöé
  9460. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9461. ΓöéWM_QUERYWINDOWPARAMSΓöéReturns the requested window parameters.Γöé
  9462. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9463. ΓöéWM_SETWINDOWPARAMS  ΓöéSets the specified window parameters.   Γöé
  9464. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  9465. ΓöéWM_WINDOWPOSCHANGED ΓöéReturns FALSE. Processes this message toΓöé
  9466. Γöé                    Γöéprevent the WinDefWindowProc function   Γöé
  9467. Γöé                    Γöéfrom sending the size and show messages.Γöé
  9468. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  9469.  
  9470.  
  9471. ΓòÉΓòÉΓòÉ 9.2. Using Title-Bar Controls ΓòÉΓòÉΓòÉ
  9472.  
  9473. This section explains how to: 
  9474.  
  9475.      Include a title bar in a frame window 
  9476.      Alter the dragging action of a title bar 
  9477.  
  9478.  
  9479. ΓòÉΓòÉΓòÉ 9.2.1. Including a Title Bar in a Frame Window ΓòÉΓòÉΓòÉ
  9480.  
  9481. An application can include a title bar in a standard frame window by specifying 
  9482. the FCF_TITLEBAR flag in the WinCreateStdWindow function. 
  9483.  
  9484. The following code fragment shows how to create a standard frame window with a 
  9485. title bar, minimize and maximize (window-sizing) buttons, size border, system 
  9486. menu, and an application menu. 
  9487.  
  9488.     #define ID_MENU_RESOURCE 101
  9489.  
  9490.     HWND hwndFrame,hwndClient;
  9491.     UCHAR szClassName[255];
  9492.  
  9493.     ULONG flControlStyle = FCF_TITLEBAR | FCF_MINMAX | FCF_SIZEBORDER |
  9494.                            FCF_SYSMENU  | FCF_MENU;
  9495.  
  9496.     hwndFrame = WinCreateStdWindow(HWND_DESKTOP, WS_VISIBLE | FS_ACCELTABLE,
  9497.                                    &flControlStyle, szClassName, "",
  9498.                                    0, (HMODULE) NULL, ID_MENU_RESOURCE,
  9499.                                    &hwndClient);
  9500.  
  9501. To get the window handle of a title-bar control, an application calls 
  9502. WinWindowFromID, specifying the frame-window handle and a constant identifying 
  9503. the title-bar control, as shown in the following code fragment: 
  9504.  
  9505.  
  9506.     hwndTitleBar = WinWindowFromID(hwndFrame, FID_TITLEBAR);
  9507.  
  9508. To set the text of a title bar, an application can use the WinSetWindowText 
  9509. function.  The frame window passes the new text to the title-bar control in a 
  9510. WM_SETWINDOWPARAMS message. 
  9511.  
  9512.  
  9513. ΓòÉΓòÉΓòÉ 9.2.2. Altering Dragging Action ΓòÉΓòÉΓòÉ
  9514.  
  9515. When the user clicks the title bar, the title-bar control sends a WM_TRACKFRAME 
  9516. message to its owner (the frame window).  When the frame window receives the 
  9517. WM_TRACKFRAME message, the frame sends a WM_QUERYTRACKINFO message to itself to 
  9518. fill in a TRACKINFO structure that defines the tracking parameters and 
  9519. boundaries.  To modify the default behavior, an application must subclass the 
  9520. frame window, intercept the WM_QUERYTRACKINFO message, and modify the TRACKINFO 
  9521. structure.  If the application returns TRUE for the WM_QUERYTRACKINFO message, 
  9522. the tracking operation proceeds according to the information in the TRACKINFO 
  9523. structure.  If the application returns FALSE, no tracking occurs. 
  9524.  
  9525.  
  9526. ΓòÉΓòÉΓòÉ 10. Value Set Controls ΓòÉΓòÉΓòÉ
  9527.  
  9528. A value set control (WC_VALUESET window class), like a radio button,  is a 
  9529. visual component that enables a user to select one choice from a group of 
  9530. mutually exclusive choices. However, unlike radio buttons, a value set can use 
  9531. graphic images (bit maps or icons), as well as colors, text, and numbers, to 
  9532. represent the items a user can select. This chapter presents the basics about 
  9533. value set controls and tells you how to create and use them in PM applications. 
  9534.  
  9535.  
  9536. ΓòÉΓòÉΓòÉ 10.1. About Value Set Controls ΓòÉΓòÉΓòÉ
  9537.  
  9538. Even though text is supported, the purpose of a value set control is to display 
  9539. choices as graphic images for faster selection. The user can see the selections 
  9540. instead of having to take time to read descriptions of the choices. Using 
  9541. graphic images in a value set also lets you conserve space on the display 
  9542. screen. For example, if you want to let a user choose from a variety of 
  9543. patterns, you can present those patterns as value set choices, If long strings 
  9544. of data are to be displayed as choices, radio buttons should be used. However, 
  9545. for small sets of numeric or textual information, you can use either a value 
  9546. set or radio buttons. 
  9547.  
  9548. The value set is customizable to meet varying application requirements, while 
  9549. providing a user interface component that can be used easily to develop 
  9550. products that conform to the Common User Access (CUA) user interface 
  9551. guidelines. The application can specify different types of items, sizes, and 
  9552. orientations for its value sets, but the underlying function of the control 
  9553. remains the same. For a complete description of CUA value sets, refer to the 
  9554. SAA CUA Guide to User Interface Design and the SAA CUA Advanced Interface 
  9555. Design Reference. 
  9556.  
  9557.  
  9558. ΓòÉΓòÉΓòÉ 10.1.1. Value Set Styles ΓòÉΓòÉΓòÉ
  9559.  
  9560. Value set control window styles are set when a value set window is created. 
  9561.  
  9562.      Set one of the following styles when creating a value set control window. 
  9563.       You can override these styles by specifying VIA_BITMAP, VIA_ICON, 
  9564.       VIA_TEXT, VIA_RGB, or VIA_COLORINDEX attributes for individual value set 
  9565.       items. 
  9566.  
  9567.       VS_BITMAP                The attribute for each value set item is set to 
  9568.                                the VIA_BITMAP value set item attribute, which 
  9569.                                means the value set treats each item as a bit 
  9570.                                map unless otherwise specified. This is the 
  9571.                                default. 
  9572.  
  9573.       VS_COLORINDEX            The attribute for each value set item is set to 
  9574.                                the VIA_COLORINDEX value set item attribute, 
  9575.                                which means the value set treats each item as an 
  9576.                                index into the logical color table unless 
  9577.                                otherwise specified. This style is most often 
  9578.                                used when the colors currently available are 
  9579.                                adequate. 
  9580.  
  9581.       VS_ICON                  The attribute for each value set item is set to 
  9582.                                the VIA_ICON value set item attribute, which 
  9583.                                means the value set treats each item as an icon 
  9584.                                unless otherwise specified. 
  9585.  
  9586.       VS_RGB                   The attribute for each value set item is set to 
  9587.                                the VIA_RGB value set item attribute, which 
  9588.                                means the value set treats each item as a RGB 
  9589.                                color value unless otherwise specified. This 
  9590.                                style is most often used when you need to create 
  9591.                                new colors. 
  9592.  
  9593.       VS_TEXT                  The attribute for each value set item is set to 
  9594.                                the VIA_TEXT value set item attribute, which 
  9595.                                means the value set treats each item as a text 
  9596.                                string unless otherwise specified. 
  9597.  
  9598.      Specify one or more of the following optional window styles, if desired, 
  9599.       by using an OR operator (|) to combine them with the style specified from 
  9600.       the preceding list: 
  9601.  
  9602.       VS_BORDER                The value set draws a thin border around itself 
  9603.                                to delineate the control. 
  9604.  
  9605.       VS_ITEMBORDER            The value set draws a thin border around each 
  9606.                                item to delineate it from other items. 
  9607.  
  9608.                                Note:  The VS_ITEMBORDER style is useful for 
  9609.                                       items that are hard to see, such as faint 
  9610.                                       colors or patterns. 
  9611.  
  9612.       VS_OWNERDRAW             The application is notified whenever the 
  9613.                                background of the value set window is to be 
  9614.                                painted. 
  9615.  
  9616.       VS_RIGHTTOLEFT           The value set interprets column orientation as 
  9617.                                right-to-left, instead of the default 
  9618.                                left-to-right arrangement. This means columns 
  9619.                                are numbered from right-to-left with the 
  9620.                                rightmost column being 1 and counting up as you 
  9621.                                move left. Home is the rightmost column and end 
  9622.                                is the leftmost column. 
  9623.  
  9624.                                There is no visible difference between a value 
  9625.                                set ordered left-to-right and a value set 
  9626.                                ordered right-to-left. Therefore, if your 
  9627.                                application uses multiple value sets, the 
  9628.                                ordering of the items should be consistent in 
  9629.                                each value set to avoid confusing the user. 
  9630.  
  9631.                                Note:  The VS_RIGHTTOLEFT style is used on 
  9632.                                       creation of the control. Changing this 
  9633.                                       style after creation causes unexpected 
  9634.                                       results. 
  9635.  
  9636.       VS_SCALEBITMAPS          The value set automatically scales bit maps to 
  9637.                                the size of the cell. If this style is not used, 
  9638.                                each bit map is centered in its cell. Also, if 
  9639.                                the cell is smaller than the bit map, the bit 
  9640.                                map is clipped to the size of the cell. 
  9641.  
  9642.  
  9643. ΓòÉΓòÉΓòÉ 10.2. Using Value Set Controls ΓòÉΓòÉΓòÉ
  9644.  
  9645. This section provides information that will enable you to create and use a 
  9646. value set control effectively. 
  9647.  
  9648.  
  9649. ΓòÉΓòÉΓòÉ 10.2.1. Creating a Value Set ΓòÉΓòÉΓòÉ
  9650.  
  9651. You create a value set by using the WC_VALUESET window class name in the 
  9652. ClassName parameter of WinCreateWindow call. 
  9653.  
  9654. Before the value set is created, a temporary VSCDATA data structure is 
  9655. allocated so that the number of rows and columns of the value set can be 
  9656. specified. 
  9657.  
  9658. Also, VS_* values are specified in the ulValueSetStyle variable so that the 
  9659. value set can be customized. The following sample code shows the creation of a 
  9660. value set: 
  9661.  
  9662. VSCDATA vscData;                    /* VSCDATA data structure         */
  9663. HWND    hwndValueSet;               /* Value set window handle        */
  9664. ULONG   ulValueSetStyle;            /* Value set style variable       */
  9665.  
  9666. /**********************************************************************/
  9667. /* Initialize the parameters in the data structure.                   */
  9668. /**********************************************************************/
  9669. vscData.cbSize =                    /* Size of value set equals size  */
  9670.   sizeof(VSCDATA);                  /* of VSCDATA                     */
  9671. vscData.usRowCount = 1;             /* 1 row in the value set         */
  9672. vscData.usColumnCount = 3;          /* 3 columns in the value set     */
  9673.  
  9674. /**********************************************************************/
  9675. /* Set the VS_* style flags to customize the value set.               */
  9676. /**********************************************************************/
  9677. ulValueSetStyle =
  9678.   VS_RGB        |                   /* Use colors for items.          */
  9679.   VS_ITEMBORDER |                   /* Put border around each value   */
  9680.                                     /* set item.                      */
  9681.   VS_BORDER;                        /* Put border around the entire   */
  9682.                                     /* value set                      */
  9683.  
  9684. /**********************************************************************/
  9685. /* Create the value set control window.                               */
  9686. /* The handle of the window is returned in hwndValueSet.              */
  9687. /**********************************************************************/
  9688. hwndValueSet = WinCreateWindow(
  9689.                  hwndClient,        /* Parent window handle           */
  9690.                  WC_VALUESET,       /* Value set class name           */
  9691.                  (PSZ)NULL,         /* No window text                 */
  9692.                  ulValueSetStyle,   /* Value set styles               */
  9693.                  (SHORT)10,         /* X coordinate                   */
  9694.                  (SHORT)10,         /* Y coordinate                   */
  9695.  
  9696.                  (SHORT)300,        /* Window width                   */
  9697.                  (SHORT)200,        /* Window height                  */
  9698.                  hwndClient,        /* Owner window handle            */
  9699.                  HWND_TOP,          /* Z-order position               */
  9700.                  ID_VALUESET,       /* Value set window ID            */
  9701.                  &vscData,          /* Control data structure         */
  9702.                  (PVOID)NULL);      /* No presentation parameters     */
  9703.  
  9704. /**********************************************************************/
  9705. /* Set the color value for each item in each row and column.          */
  9706. /**********************************************************************/
  9707. WinSendMsg(hwndValueSet,            /* Value set window handle        */
  9708.            VM_SETITEM,              /* Message for setting items      */
  9709.            MPFROM2SHORT(1,1),       /* Set item in row 1, column 1    */
  9710.            MPFROMLONG(0x00FF0000)); /* to the color red.              */
  9711.  
  9712. WinSendMsg(hwndValueSet,            /* Value set window handle        */
  9713.            VM_SETITEM,              /* Message for setting items      */
  9714.            MPFROM2SHORT(1,2),       /* Set item in row 1, column 2    */
  9715.            MPFROMLONG(0x0000FF00)); /* to the color green.            */
  9716.  
  9717. WinSendMsg(hwndValueSet,            /* Value set window handle        */
  9718.            VM_SETITEM,              /* Message for setting items      */
  9719.            MPFROM2SHORT(1,3),       /* Set item in row 1, column 3    */
  9720.            MPFROMLONG(0x000000FF)); /* to the color blue.             */
  9721.  
  9722. /**********************************************************************/
  9723. /* Set the default selection.                                         */
  9724. /**********************************************************************/
  9725. WinSendMsg(hwndValueSet,            /* Value set window handle        */
  9726.            VM_SELECTITEM,           /* Message for selecting items    */
  9727.            MPFROM2SHORT(1,2),       /* Item in row 1, column 2        */
  9728.            NULL);                   /* Reserved value                 */
  9729.  
  9730. /**********************************************************************/
  9731. /* Since all items have been set in the control,                      */
  9732. /* make the control visible.                                          */
  9733. /**********************************************************************/
  9734. WinShowWindow(hwndValueSet,         /* Value set window handle        */
  9735.               TRUE);                /* Make the window visible        */
  9736.  
  9737.  
  9738. ΓòÉΓòÉΓòÉ 10.2.2. Retrieving Data for Selected Value Set Items ΓòÉΓòÉΓòÉ
  9739.  
  9740. The next step is to be able to retrieve the data represented by a value set 
  9741. item. To do this, variables are specified for combined row and column index 
  9742. values, item attributes, and item information. Then the VM_QUERYSELECTEDITEM, 
  9743. VM_QUERYITEMATTR, and VM_QUERYITEM messages are used to retrieve the index 
  9744. values, attributes, and data. The following sample code shows how data for 
  9745. selected value set items is retrieved: 
  9746.  
  9747. ULONG  ulIdx;                       /* Combined row and column        */
  9748.                                     /* index value                    */
  9749. USHORT usItemAttr;                  /* Item attributes                */
  9750. ULONG  ulItemData;                  /* Item data                      */
  9751.  
  9752. /**********************************************************************/
  9753. /* Get the row and column index values of the item selected by the    */
  9754. /* user.  These values are returned in the ulIdx parameter.           */
  9755. /**********************************************************************/
  9756. ulIdx = (ULONG)WinSendMsg(
  9757.   hwndValueSet,                     /* Value set window handle        */
  9758.   VM_QUERYSELECTEDITEM,             /* Message for querying           */
  9759.                                     /* the selected item              */
  9760.   NULL, NULL);                      /* Reserved values                */
  9761.  
  9762. /**********************************************************************/
  9763. /* Determine the type of item that was selected. This message is      */
  9764. /* only to determine how to interpret item data when a value set      */
  9765. /* contains different types of items.                                 */
  9766. /**********************************************************************/
  9767. usItemAttr = (USHORT)WinSendMsg(
  9768.   hwndValueSet,                /* Value set window handle             */
  9769.   VM_QUERYITEMATTR,            /* Message for querying item attribute */
  9770.   MPFROMLONG(ulIdx),           /* Row and column of selected item     */
  9771.   NULL);                       /* Reserved value                      */
  9772.  
  9773. /**********************************************************************/
  9774. /* Get the information about the selected (non-textual) item.         */
  9775. /* If you are dealing with text, you need to allocate a buffer        */
  9776. /* for the text string.                                               */
  9777. /**********************************************************************/
  9778. ulItemData = (ULONG)WinSendMsg(
  9779.   hwndValueSet,                /* Value set window handle             */
  9780.   VM_QUERYITEM,                /* Message for querying an item        */
  9781.   MPFROMLONG(ulIdx),           /* Row and column of selected item     */
  9782.   NULL);                       /* Set to NULL because the item is not */
  9783.                                /* a text item                         */
  9784.  
  9785.  
  9786. ΓòÉΓòÉΓòÉ 10.2.3. Arranging Value Set Items ΓòÉΓòÉΓòÉ
  9787.  
  9788. The application defines the arrangement of value set items; they can be 
  9789. arranged in one or more rows, columns, or both. Items are placed from left to 
  9790. right in rows and from top to bottom in columns. The application can change the 
  9791. number of rows and columns at any time. 
  9792.  
  9793. The number of items that can be displayed depends on the number of items that 
  9794. fit into the spaces provided by the defined rows and columns. If the number of 
  9795. items exceeds the number of spaces, the excess items are not displayed. 
  9796.  
  9797. You can change the composition of a value set by specifying new items. The new 
  9798. items either can be added to the value set or can replace existing items. 
  9799.  
  9800.  
  9801. ΓòÉΓòÉΓòÉ 10.3. Graphical User Interface Support for Value Set Controls ΓòÉΓòÉΓòÉ
  9802.  
  9803. This section describes the support the value set control provides for graphical 
  9804. user interfaces (GUIs). Except where noted, this support conforms to the 
  9805. guidelines in the SAA CUA Advanced Interface Design Reference. 
  9806.  
  9807. The GUI support provided by the value set control consists of Navigating to and 
  9808. selecting value set items. 
  9809.  
  9810.  
  9811. ΓòÉΓòÉΓòÉ 10.3.1. Value Set Navigation Techniques ΓòÉΓòÉΓòÉ
  9812.  
  9813. Since all value set items are mutually exclusive, only one of them can be 
  9814. selected at a time. Therefore, the only type of selection supported by the 
  9815. value set control is single selection. 
  9816.  
  9817. Note:  If more than one value set window is open, navigating to and selecting 
  9818.        items in one value set window has no affect on the items displayed in 
  9819.        any other value set window. 
  9820.  
  9821.  An initial choice is selected when the value set control is first displayed. 
  9822.  If the application does not provide the initial selection by using the 
  9823.  VM_SELECTITEM message, the choice in row 1, column 1 is selected 
  9824.  automatically. 
  9825.  
  9826.  The value set control supports the use of a pointing device, such as a mouse, 
  9827.  and the keyboard for navigating to and selecting items, except for items that 
  9828.  are dimmed on the screen. This dimming of items is called unavailable-state 
  9829.  emphasis and indicates that the items cannot be selected. However, the 
  9830.  selection cursor, a dotted outline that usually indicates that an item can be 
  9831.  selected, can be moved to unavailable items so that a user can press F1 to 
  9832.  determine why they cannot be selected. The following sections describe the 
  9833.  pointing device and keyboard support for the value set control. 
  9834.  
  9835.  
  9836. ΓòÉΓòÉΓòÉ 10.3.1.1. Pointing Device Support ΓòÉΓòÉΓòÉ
  9837.  
  9838. A user can use a pointing device to select value set items. The SAA CUA Guide 
  9839. to User Interface Design defines mouse button 1, the select button, to be used 
  9840. for selecting items. This definition also applies to the same button on any 
  9841. other pointing device. 
  9842.  
  9843. An item can be selected by moving the pointer of the pointing device to the 
  9844. item and clicking the select button. When this happens, a black box is drawn 
  9845. around the item to show that it has been selected. The black box is called 
  9846. selected-state emphasis. In addition, the selection cursor is drawn inside the 
  9847. black box. 
  9848.  
  9849.  
  9850. ΓòÉΓòÉΓòÉ 10.3.1.2. Keyboard Support ΓòÉΓòÉΓòÉ
  9851.  
  9852. The value set control supports automatic selection, which means that an 
  9853. available item is selected when the selection cursor is moved to that item. The 
  9854. item is given selected-state emphasis as soon as the selection cursor is moved 
  9855. to it. No further action, such as pressing the spacebar, is required. The same 
  9856. black box and dotted outline are used, for selected-state emphasis and the 
  9857. selection cursor respectively, as when an item is selected with a pointing 
  9858. device. 
  9859.  
  9860. A user can navigate to and select an item by using either the navigation keys 
  9861. or mnemonic selection to move the selection cursor to the item, as described in 
  9862. the following list: 
  9863.  
  9864.      Items can be selected using the Up, Down, Left, and Right Arrow keys to 
  9865.       move the selection cursor from one item to another. 
  9866.  
  9867.      The Home and End keys can be used to select the leftmost and rightmost 
  9868.       items, respectively, in the current row. If the Ctrl key is pressed in 
  9869.       combination with the Home or End key, the item in the top row and the 
  9870.       leftmost column, or the item in the bottom row and the rightmost column, 
  9871.       respectively, is selected. 
  9872.  
  9873.       Note:  The preceding description assumes that the current style of the 
  9874.              value set window is left-to-right. However, if the VS_RIGHTTOLEFT 
  9875.              style bit is set, the directions described for the Home, End, 
  9876.              Ctrl+Home, and Ctrl+End keys in the preceding paragraph are 
  9877.              reversed. 
  9878.  
  9879.      The PgUp key can be used to select the item in the top row that is 
  9880.       directly above the current position of the selection cursor. The PgDn key 
  9881.       can be used to select the item in the bottom row that is directly below 
  9882.       the current position of the selection cursor. If the space in the top or 
  9883.       bottom row directly above or below the current cursor position is blank, 
  9884.       the cursor moves to the blank space. 
  9885.  
  9886.      Another keyboard method of selecting items is mnemonic selection. A user 
  9887.       performs mnemonic selection by pressing a character key that corresponds 
  9888.       to an underlined character. Coding a tilde (~) before a text character in 
  9889.       the item causes that character to be underlined and activates it as a 
  9890.       mnemonic selection character. When this happens, the selection cursor is 
  9891.       moved to the item that contains the underlined character, and that item 
  9892.       is selected. 
  9893.  
  9894.  
  9895. ΓòÉΓòÉΓòÉ 10.4. Enhancing Value Set Controls Performance and Effectiveness ΓòÉΓòÉΓòÉ
  9896.  
  9897. This section provides dynamic resizing and scrolling to enable you to fine-tune 
  9898. a value set control. 
  9899.  
  9900.  
  9901. ΓòÉΓòÉΓòÉ 10.4.1. Dynamic Resizing and Scrolling ΓòÉΓòÉΓòÉ
  9902.  
  9903. The value set control supports dynamic resizing if the application sends the 
  9904. WM_SIZE message to a value set window. This means that the value set control 
  9905. automatically recalculates the size of the items when either the user or the 
  9906. application changes the size of the value set window. 
  9907.  
  9908. If the value set window's size is decreased so that the window is not large 
  9909. enough to display all of the items the value set contains, the items are 
  9910. clipped. If scroll bars are desired to allow the clipped information to be 
  9911. scrolled into view, they must be provided by the application. 
  9912.  
  9913.  
  9914. ΓòÉΓòÉΓòÉ 11. Windows ΓòÉΓòÉΓòÉ
  9915.  
  9916. To most users, a window is a rectangular area of the display screen where an 
  9917. application receives input from the user and displays output.  This chapter 
  9918. describes the parts of the operating system that enable a Presentation Manager 
  9919. (PM) application to create and use windows; manage relationships between 
  9920. windows; and size, move, and display windows.  An overview of the following 
  9921. topics is presented: 
  9922.  
  9923.      Window types, classes, and styles 
  9924.      Window-creation techniques 
  9925.      Window messages and message queues 
  9926.      Methods of window input and output 
  9927.      Window resources and procedures 
  9928.      Window identification and modification 
  9929.  
  9930.  Subsequent chapters present more in-depth descriptions of windows, their 
  9931.  advantages and uses, along with example code fragments. 
  9932.  
  9933.  
  9934. ΓòÉΓòÉΓòÉ 11.1. About Windows ΓòÉΓòÉΓòÉ
  9935.  
  9936. A PM application can interact with the user and perform tasks only by way of 
  9937. windows.  Each window shares the screen with other windows, including those 
  9938. from other applications.  The user employs the mouse and keyboard to interact 
  9939. with windows and their owner applications. 
  9940.  
  9941.  
  9942. ΓòÉΓòÉΓòÉ 11.1.1. Desktop Window and Desktop-Object Window ΓòÉΓòÉΓòÉ
  9943.  
  9944. The OS/2 operating system automatically creates the desktop window (known as 
  9945. the workplace in user terminology) when it starts a PM session. 
  9946.  
  9947.  ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  9948.  Γöé    Desktop Window                              Γöé
  9949.  Γöé  ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ                Γöé
  9950.  Γöé  Γöé Main Window 3              Γöé                Γöé
  9951.  Γöé  Γöé      ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ         Γöé
  9952.  Γöé  Γöé      Γöé Main Window 2              Γöé         Γöé
  9953.  Γöé  Γöé      Γöé      ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ  Γöé
  9954.  Γöé  Γöé      Γöé  ΓöîΓöÇΓöÇΓöÇΓöñ Main Window 1              Γöé  Γöé
  9955.  Γöé  Γöé      Γöé  ΓöéChiΓöé  ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ         Γöé  Γöé
  9956.  Γöé  Γöé      Γöé  ΓöéWinΓöé  Γöé               Γöé         Γöé  Γöé
  9957.  Γöé  Γöé      Γöé  Γöé2A Γöé  Γöé               Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ  Γöé  Γöé
  9958.  Γöé  ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ  ΓööΓöÇΓöÇΓöÇΓöñ  ΓöéChild Window 1aΓöé      Γöé  Γöé  Γöé
  9959.  Γöé         Γöé      Γöé  ΓööΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ      Γöé  Γöé  Γöé
  9960.  Γöé         ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ       Γöé Child Window 1b Γöé  Γöé  Γöé
  9961.  Γöé                Γöé       ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ  Γöé  Γöé
  9962.  Γöé                ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ  Γöé
  9963.  ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  9964.  
  9965. Desktop Window Containing Windows of Several Applications The desktop window 
  9966. paints the background color of the screen and serves as the "progenitor" of all 
  9967. the windows displayed by all PM applications (but not of object windows, which 
  9968. do not require screen display).  To make the desktop the parent in the 
  9969. WinCreateStdWindow function, you specify HWND_DESKTOP. 
  9970.  
  9971. The windows immediately below the desktop are called main or top-level windows; 
  9972. these are called primary windows in user terminology.  Every PM application 
  9973. creates at least one window to serve as the main window for that application. 
  9974. Most applications also create many other windows, directly or indirectly, to 
  9975. perform tasks related to the main window. 
  9976.  
  9977. Each window helps display output and receive input from the user. The previous 
  9978. figure shows the desktop window containing windows of several applications. 
  9979. Notice that the main windows can overlap one another. (At times, it is possible 
  9980. for a main window to be completely hidden.) Operations in one main window 
  9981. normally do not affect the other main windows. 
  9982.  
  9983. The desktop-object window is like a desktop window that is never displayed; it 
  9984. serves as the base window to coordinate the activity of an application's object 
  9985. windows.  The desktop-object window cannot display windows nor process keyboard 
  9986. and mouse input.  The primary purpose of the desktop-object window is to enable 
  9987. you to create windows that need not respond to messages at the same rate as the 
  9988. user interface. 
  9989.  
  9990.  
  9991. ΓòÉΓòÉΓòÉ 11.1.2. Window Relationships ΓòÉΓòÉΓòÉ
  9992.  
  9993. Window relationships define how windows interact with each other-on the screen 
  9994. and through messages.  There are parent-child window relationships and 
  9995. window-owner relationships. 
  9996.  
  9997. The parent-child relationship determines where and how windows appear when 
  9998. drawn on the screen.  It also determines what happens to a window when a 
  9999. related window is destroyed or hidden.  The parent-child rules apply to all 
  10000. windows at all times and cannot be modified. 
  10001.  
  10002. Ownership determines how windows communicate using messages.  Cooperating 
  10003. windows define and carry out their rules of ownership.  Although some windows 
  10004. (such as windows of the preregistered public window class, WC_FRAME) have very 
  10005. complex rules of ownership, the application usually defines the ownership 
  10006. rules. The following figure represents the logical relationship of the windows 
  10007. in two applications. 
  10008.  
  10009.                           Desktop Window
  10010.                                ΓöîΓöÇΓöÉ
  10011.          Application 1         Γöé Γöé          Application 2
  10012. ΓöîΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÉ Γöé Γöé ΓöîΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÉ
  10013.              ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÿ ΓööΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10014. Γöé            Γöé ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ Γöé             Γöé
  10015.              Γöé Γöé                                Γöé Γöé
  10016. Γöé       Main Window 1        Γöé     Γöé      Main Window 2         Γöé
  10017.              Γöé Γöé                                Γöé Γöé
  10018. Γöé     ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ      Γöé     Γöé     ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ      Γöé
  10019.       Γöé ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ Γöé                  Γöé ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ Γöé
  10020. Γöé     Γöé Γöé           Γöé Γöé      Γöé     Γöé     Γöé Γöé           Γöé Γöé      Γöé
  10021.       Γöé Γöé           ΓööΓöÇΓöÿ                  ΓööΓöÇΓöÿ           ΓööΓöÇΓöÿ
  10022. Γöé    Child         Child     Γöé     Γöé    Child         Child     Γöé
  10023.    Window 1.1    Window 1.2           Window 2.1    Window 2.2
  10024. Γöé     Γöé Γöé                    Γöé     Γöé                            Γöé
  10025.       ΓööΓöÇΓöÿ
  10026. Γöé    Child                   Γöé     Γöé                            Γöé
  10027.   Window 1.1.1
  10028. ΓööΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÿ     ΓööΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÇ  ΓöÇΓöÿ
  10029.  
  10030. Typical Window Relationships 
  10031.  
  10032.  
  10033. ΓòÉΓòÉΓòÉ 11.1.2.1. Parent-Child Relationship ΓòÉΓòÉΓòÉ
  10034.  
  10035. Most windows have a parent window. (The exceptions are the desktop and 
  10036. desktop-object windows, which the system creates at system startup.)  An 
  10037. application specifies the parent when it creates a window; then, the system 
  10038. uses the parent to determine where and how to draw any new windows, as well as 
  10039. when to destroy the windows (free all associated resources and remove the 
  10040. windows from the screen). 
  10041.  
  10042. A child window is drawn relative to its parent.  The coordinates given to 
  10043. specify the position of a window's lower-left corner are relative to the 
  10044. lower-left corner of its parent.  For example, a main window (child of the 
  10045. desktop) is drawn relative to the lower-left corner of the screen (the desktop 
  10046. window's lower-left corner). 
  10047.  
  10048. All main windows are siblings because they share a common parent, the desktop 
  10049. window.  Because sibling windows can overlap, an application or a user arranges 
  10050. the windows, one behind another (like a stack of papers on a desk), in the 
  10051. desired viewing order (called z-order). Z-order uses the desktop as a reference 
  10052. point for a "three-dimensional" ranking of the overlapping windows: the topmost 
  10053. window has the highest ranking, while the window at the bottom of the stack has 
  10054. the lowest ranking.  The parent of the sibling windows is always at the bottom 
  10055. of the z-order. The following figure illustrates the hierarchy of such an 
  10056. arrangement. 
  10057.  
  10058.   ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10059.   Γöé Desktop Γöé
  10060.   ΓööΓöÇΓöÇΓö¼ΓöÇΓö¼ΓöÇΓö¼ΓöÇΓöÇΓöÿ
  10061.      Γöé Γöé Γöé     Parent            Child
  10062.      Γöé Γöé Γöé                  ΓöîΓöÇ ΓöÇ ΓöÇ ΓöÇ ΓöÇ ΓöÇ ΓöÇ ΓöÇΓöÉ
  10063.      Γöé Γöé Γöé                       Siblings
  10064.      Γöé Γöé Γöé   ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ     Γöé  ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ Γöé
  10065.      Γöé Γöé ΓööΓöÇΓöÇΓöé Main 1 Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöé Child 1A Γöé
  10066.      Γöé Γöé     ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÉ  Γöé  ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ Γöé
  10067.      Γöé Γöé                 Γöé  Γöé  ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10068.      Γöé Γöé                 ΓööΓöÇΓöÇΓöÇΓöÇΓöé Child 1A Γöé Γöé
  10069.      Γöé Γöé                    Γöé  ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  10070.      Γöé Γöé                    ΓööΓöÇ ΓöÇ ΓöÇ ΓöÇ ΓöÇ ΓöÇ ΓöÇ ΓöÇΓöÿ
  10071.      Γöé Γöé     ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ        ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10072.      Γöé ΓööΓöÇΓöÇΓöÇΓöÇΓöé Main 2 Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöé Child 2A Γöé
  10073.      Γöé       ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ        ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  10074.      Γöé       ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10075.      ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöé Main 3 Γöé
  10076.              ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  10077.  
  10078. Window Hierarchy 
  10079.  
  10080. Although PM supports z-order, it does not enforce the expected appearance 
  10081. unless you specify the CS_CLIPCHILDREN or CS_CLIPSIBLINGS styles.  No part of a 
  10082. child window ever appears outside the borders of its parent.  If an application 
  10083. creates a window that is larger than its parent, or positions a window so that 
  10084. some or all of it extends beyond the borders of the parent, the extended 
  10085. portion of the child window is not drawn. 
  10086.  
  10087. An application can use the WS_CLIPCHILDREN or WS_CLIPSIBLINGS styles to remove 
  10088. from a window's clipping area (the area in which the window can paint) the area 
  10089. occupied by its child or sibling windows.  For example, an application can use 
  10090. these styles to prevent a window from painting over a child or sibling window 
  10091. containing a complex graphic that would be time-consuming to redraw. 
  10092.  
  10093. When a window is minimized, hidden, or destroyed, all of its children are 
  10094. hidden, minimized, or destroyed as well.  The order of destruction is always 
  10095. such that every window is destroyed before its parent.  The window-destruction 
  10096. sequence starts at the bottom of descendancy so that all related windows can be 
  10097. cleaned up; the last one to go is the window you asked to be destroyed.  The 
  10098. final PM task in a window-destruction sequence is to send a WM_DESTROY message 
  10099. to that window, so it has one last chance to release any resources it has 
  10100. allocated and may still be holding. 
  10101.  
  10102. Every window has only one parent, but can have any number of children. window 
  10103. in this tree is said to be a descendant of any window appearing above it in the 
  10104. branch, and an ancestor of any window appearing below it.  There are two 
  10105. special cases, of course: the window immediately above is called the window's 
  10106. parent, and any window immediately below it is called its child.  An 
  10107. application can change a window's parent window at any time by using the 
  10108. WinSetParent function.  Changing the parent window also changes where and how 
  10109. the child window is drawn.  The system displays the child within the borders of 
  10110. the new parent and draws the window according to the styles specified for the 
  10111. new parent. 
  10112.  
  10113.  
  10114. ΓòÉΓòÉΓòÉ 11.1.2.2. Ownership ΓòÉΓòÉΓòÉ
  10115.  
  10116. Any window can have an owner window.  Typically, an application uses ownership 
  10117. to establish a connection between windows so that they can perform useful tasks 
  10118. together.  For example, the title bar in an application's main window is owned 
  10119. by the frame window; but, together, the user can move the entire main window by 
  10120. clicking the mouse in the title bar and dragging.  An application can set the 
  10121. owner window when it creates the window or at a later time. 
  10122.  
  10123. Ownership establishes a relationship between windows that is independent of the 
  10124. parent-child relationship.  While there are few predefined rules for owner- and 
  10125. owned-window interaction, a window always notifies its owner of anything 
  10126. considered a significant event. 
  10127.  
  10128. The preregistered public window classes provided by the OS/2 operating system 
  10129. recognize ownership.  Control windows of classes such as WC_TITLEBAR and 
  10130. WC_SCROLLBAR, notify their owners of events; frame windows, of class WC_FRAME, 
  10131. receive and process notification messages from the control windows they own. 
  10132. For example, a title-bar control sends a notification message to its owner when 
  10133. it receives a mouse click.  If the owner is a frame window, it receives the 
  10134. notification message and prepares to move itself and its children. 
  10135.  
  10136. Owner and owned windows must be created by the same thread; that is, they must 
  10137. belong to the same message queue.  Because ownership is independent of the 
  10138. parent-child relationship, the owner and owned windows do not have to be 
  10139. descendants of the same parent window.  However, this can affect how windows 
  10140. are destroyed.  Destroying an owner window does not necessarily destroy an 
  10141. owned window.  Except for frame windows, an application that needs to destroy 
  10142. an owned window that is not a descendant of the owner window must do so 
  10143. explicitly. 
  10144.  
  10145. Frame windows sometimes own windows that are not descendants but, instead, are 
  10146. siblings.  A frame window has the following special ownership properties: 
  10147.  
  10148.      When the frame window is destroyed, it destroys all of the windows it 
  10149.       owns, even if they are not descendants. 
  10150.  
  10151.      When a frame window moves, the windows it owns move also.  Owned windows 
  10152.       that are not descendants maintain their positions, relative to the 
  10153.       upper-left (not the usual lower-left) corner of the owner window.  An 
  10154.       owned window with the style FS_NOMOVEWITHOWNER does not move. 
  10155.  
  10156.      When the frame window changes its position in the z-order, it changes the 
  10157.       z-order of all the windows it owns. 
  10158.  
  10159.      When the frame window is minimized or hidden, it hides all the windows it 
  10160.       owns.  Owned windows hidden this way are restored when the frame window 
  10161.       is restored. 
  10162.  
  10163.  If an application needs this type of special processing for its own window 
  10164.  classes, it must provide that support in the window procedures for those 
  10165.  classes. 
  10166.  
  10167.  Note:  Never create a window with an owner being a window in a different 
  10168.  process. This causes problems when destroying the owned- or owner-window; 
  10169.  usually the owned- or owner-window hangs. 
  10170.  
  10171.  
  10172. ΓòÉΓòÉΓòÉ 11.1.2.3. Object Windows ΓòÉΓòÉΓòÉ
  10173.  
  10174. Any descendant of the desktop-object window is called an object window. 
  10175. Typically, an application uses an object window to provide services for another 
  10176. window.  For example, an application can use an object window to manage a 
  10177. shared database.  In this way, a window can obtain information from the shared 
  10178. database by sending a message to and receiving a reply from the object window. 
  10179.  
  10180. Only two system-defined messages are available to an object window-WM_CREATE 
  10181. and WM_DESTROY-but the object window enables the user to implement a set of 
  10182. user-defined messages.  The window procedure for an object window does not have 
  10183. to process paint messages or user input.  The object window processes only 
  10184. messages that affect the data belonging to the object. 
  10185.  
  10186. HWND_OBJECT is the only identifier needed to create an object window.  It is 
  10187. very unwise to create descendants of HWND_OBJECT in the same thread that 
  10188. creates descendants of HWND_DESKTOP: this causes the system to hang up or, at 
  10189. the very least, behave slowly.  Object windows, sometimes referred to as orphan 
  10190. windows, require no owner. 
  10191.  
  10192. The rules for parent-child and ownership relationships also apply to object 
  10193. windows.  In particular, changing the parent window of an object window to the 
  10194. desktop window, or to a descendant of the desktop window, causes the system to 
  10195. display the object window if the object window has the WS_VISIBLE style. 
  10196.  
  10197.  
  10198. ΓòÉΓòÉΓòÉ 11.1.3. Application Windows ΓòÉΓòÉΓòÉ
  10199.  
  10200. An application can use several types of secondary windows:  frame windows, 
  10201. client windows, control windows, dialog windows, message boxes, and menus. 
  10202. Typically, an application's main window consists of several of these windows 
  10203. acting as one. 
  10204.  
  10205. A frame window is a window that an application uses as the base when 
  10206. constructing a main window or other composite window, such as a dialog window 
  10207. or message box.  (A composite window is a collection of windows that interact 
  10208. with one another and are kept together as a unit.)  A frame window provides 
  10209. basic features, such as borders and a menu bar.  Frame windows have a set of 
  10210. resources associated with them.  These include icons, menus, and accelerators 
  10211. (shortcut keys to the user), which, typically, are defined in an application's 
  10212. resource file. 
  10213.  
  10214. A dialog window is a frame window that contains one or more control windows. 
  10215. Dialog windows are used almost exclusively for prompting the user for input. 
  10216. An application usually creates a dialog window when it needs additional 
  10217. information to complete a command.  The application destroys the dialog window 
  10218. after the user has provided the requested information. 
  10219.  
  10220. A message box is a frame window that an application uses to display a note, 
  10221. caution, or warning to the user.  For instance, an application can use a 
  10222. message box to inform the user of a problem that the application encountered 
  10223. while performing a task. 
  10224.  
  10225. A client window is the window in which the application displays the current 
  10226. document or data.  For example, a desktop-publishing application displays the 
  10227. current page of a document in a client window.  Most applications create at 
  10228. least one client window.  The application must provide a function, called a 
  10229. window procedure, to process input to the client window and to display output. 
  10230.  
  10231. A control window is a window used in conjunction with another window to perform 
  10232. useful tasks, such as displaying a menu or scrolling information in a client 
  10233. window.  The operating system provides several predefined control-window 
  10234. classes that an application can use to create control windows.  Control windows 
  10235. include buttons, entry fields, list boxes, combination boxes, menus, scroll 
  10236. bars, static text, and title bars. 
  10237.  
  10238. A menu is a control window that presents a list of commands and other menus to 
  10239. the user.  Using a mouse or the keyboard, the user can select a task; the 
  10240. application then performs the selected task. 
  10241.  
  10242.  
  10243. ΓòÉΓòÉΓòÉ 11.1.4. Window Input and Output ΓòÉΓòÉΓòÉ
  10244.  
  10245. The user directs input data to windows from a mouse and the keyboard.  Keyboard 
  10246. input goes to the window with input focus, and, normally, mouse input goes to 
  10247. the window under the mouse pointer. 
  10248.  
  10249. Windows also are places to display output data.  PM uses windows to display 
  10250. text and graphics on the screen and to process input from the mouse and 
  10251. keyboard.  Windows provide the same input and output capabilities as a virtual 
  10252. graphics terminal without having direct control of the hardware. 
  10253.  
  10254. An application is responsible for painting the data for the window classes it 
  10255. registers and creates.  This data can be graphics text or pictures or 
  10256. fixed-size alphanumeric text.  Normally it is not necessary for the application 
  10257. to paint the system-provided window classes; the OS/2 window procedures for 
  10258. those window classes do the painting. 
  10259.  
  10260.  
  10261. ΓòÉΓòÉΓòÉ 11.1.4.1. Active Window and Focus Window ΓòÉΓòÉΓòÉ
  10262.  
  10263. All frame-window ancestors of the input focus window are said to be active, 
  10264. meaning that the user interacts with them.  The active window usually is the 
  10265. topmost main window, which is positioned above all other top-level windows on 
  10266. the screen.  The active window is indicated by some form of highlighting.  For 
  10267. example, a highlighted title bar shows that a standard frame window is active; 
  10268. an active dialog window has a highlighted border.  These types of highlighting 
  10269. ensure that the user can see the window that is accepting input. 
  10270.  
  10271. A main window (or one of its child windows) is activated by using a mouse or 
  10272. the keyboard.  When a window is activated, it receives a WM_ACTIVATE message 
  10273. with its first parameter set to TRUE.  When it is deactivated, it receives a 
  10274. WM_ACTIVATE message with its first parameter set to FALSE. 
  10275.  
  10276. The focus window can be the active window or one of its descendant windows. 
  10277. The user can change the input focus the same way active windows are changed-by 
  10278. mouse or keyboard.  However, the application has more control over the input 
  10279. focus.  For example, in a window containing several text entry fields, the tab 
  10280. keys can move the input focus from one input field to another.  A WM_SETFOCUS 
  10281. message is sent to the window procedure when a window is gaining or losing the 
  10282. input focus.  The WinQueryFocus function tells the user which window has the 
  10283. input focus. 
  10284.  
  10285.  
  10286. ΓòÉΓòÉΓòÉ 11.1.4.2. Messages ΓòÉΓòÉΓòÉ
  10287.  
  10288. Messages are a fundamental part of the operating system.  PM applications use 
  10289. messages to communicate with the operating system and one another.  The system 
  10290. uses messages to communicate with applications to ensure concurrent running and 
  10291. sharing of devices.  Typically, a message notifies the receiving application 
  10292. that an event has occurred.  The operating system identifies the appropriate 
  10293. application window to receive a message by the window handle included in the 
  10294. message.  Sources of events that cause messages to be issued to applications 
  10295. are the user, the operating system, the application, or another application. 
  10296.  
  10297.  
  10298. ΓòÉΓòÉΓòÉ 11.1.4.2.1. The User ΓòÉΓòÉΓòÉ
  10299.  
  10300. Mouse or keyboard input to an application window causes the operating system to 
  10301. direct messages to that window. 
  10302.  
  10303.  
  10304. ΓòÉΓòÉΓòÉ 11.1.4.2.2. The Operating System ΓòÉΓòÉΓòÉ
  10305.  
  10306. Managing the application windows on the screen, the operating system issues 
  10307. messages to the windows, usually as an indirect result of user interaction. 
  10308. These messages enable the system to work in a uniform and well-ordered manner. 
  10309. For example, where several application windows overlap, and the user terminates 
  10310. an application so that its window disappears, the operating system issues 
  10311. messages to the underlying application windows so that they can repaint 
  10312. themselves. 
  10313.  
  10314.  
  10315. ΓòÉΓòÉΓòÉ 11.1.4.2.3. The Application ΓòÉΓòÉΓòÉ
  10316.  
  10317. An event can occur in the application to which another part of that application 
  10318. should respond; for example, when the contents of its window no longer 
  10319. accurately reflect the status of the application.  The application can define 
  10320. its own messages outside the range of system-defined messages to communicate 
  10321. such events. 
  10322.  
  10323.  
  10324. ΓòÉΓòÉΓòÉ 11.1.4.2.4. Another Application ΓòÉΓòÉΓòÉ
  10325.  
  10326. Communication with other applications through the operating system ensures 
  10327. cooperative use of the system; it even can be used to exchange data.  For 
  10328. example, an arithmetic application can supply the results of a lengthy 
  10329. calculation to a business graphics application. 
  10330.  
  10331.  
  10332. ΓòÉΓòÉΓòÉ 11.1.4.3. Enabled and Disabled Windows ΓòÉΓòÉΓòÉ
  10333.  
  10334. An application uses the WinEnableWindow function to enable or disable window 
  10335. input.  By default, a window is enabled when it is created.  However, an 
  10336. application can disable a newly created window. 
  10337.  
  10338. An application usually disables a window to prevent the user from using the 
  10339. window.  For example, an application might disable a push button in a dialog 
  10340. window.  Enabling a window restores normal input; an application can enable a 
  10341. disabled window at any time. 
  10342.  
  10343. When an application uses the WinEnableWindow function to disable an existing 
  10344. window, that window also loses keyboard focus.  WinEnableWindow sets the 
  10345. keyboard focus to NULL, which means that no window has the focus.  If a child 
  10346. window or other descendant window has the keyboard focus, it loses the focus 
  10347. when the parent window is disabled. 
  10348.  
  10349. An application can determine whether a window is enabled by calling 
  10350. WinIsWindowEnabled. 
  10351.  
  10352.  
  10353. ΓòÉΓòÉΓòÉ 11.1.4.4. System-Modal Window ΓòÉΓòÉΓòÉ
  10354.  
  10355. An application can designate a system-modal window: a window that receives all 
  10356. keyboard and mouse input, effectively disabling all other windows.  The user 
  10357. must respond to the system-modal window before continuing work in other 
  10358. windows.  An application sets and clears the system-modal window by using the 
  10359. WinSetSysModalWindow function. 
  10360.  
  10361. Because system-modal windows have absolute control of input, you must be 
  10362. careful when using them in your applications.  Ideally, an application uses a 
  10363. system-modal window only when there is danger of losing data if the user does 
  10364. not respond to a problem immediately. 
  10365.  
  10366. Although an application can destroy a system-modal window, the new active 
  10367. window then becomes a system-modal window.  An application can make another 
  10368. window active while the first system-modal window exists.  But again, the new 
  10369. active window will become the system-modal window.  In general, once a 
  10370. system-modal window is set, it continues to exist in the PM session until the 
  10371. application explicitly clears it. 
  10372.  
  10373.  
  10374. ΓòÉΓòÉΓòÉ 11.1.5. Window Creation ΓòÉΓòÉΓòÉ
  10375.  
  10376. Before any thread in an application can create windows, it must: 
  10377.  
  10378.    1. Call WinInitialize to create an anchor block 
  10379.    2. Call WinCreateMsgQueue to create a message queue for the thread 
  10380.  
  10381.  Then, it can create one or more windows by calling one of the window-creation 
  10382.  functions, such as WinCreateWindow. 
  10383.  
  10384.  The window-creation functions require that the following information be 
  10385.  supplied in some form: 
  10386.  
  10387.      Class 
  10388.      Styles 
  10389.      Name 
  10390.      Parent window 
  10391.      Position relative to the parent window 
  10392.      Position relative to any sibling windows (z-order) 
  10393.      Dimensions 
  10394.      Owner window 
  10395.      Identifier 
  10396.      Class-specific data 
  10397.      Resources 
  10398.  
  10399.  Every window belongs to a window class that defines that window's appearance 
  10400.  and behavior.  The chief component of the window class is the window 
  10401.  procedure. The window procedure is the function that receives and processes 
  10402.  all messages sent to the window. 
  10403.  
  10404.  Every window has a style.  The window style specifies aspects of a window's 
  10405.  appearance and behavior that are not specified by the window's class.  For 
  10406.  example, the WC_FRAME class always creates a frame window, but the FS_BORDER, 
  10407.  FS_DLGBORDER, and FS_SIZEBORDER styles determine the style of a frame window's 
  10408.  border.  A few window styles apply to all windows, but most apply only to 
  10409.  windows of specific window classes.  The window procedure for a given class 
  10410.  interprets the style and allows an application to adapt a window of a given 
  10411.  class for a special circumstance.  For example, an application can give a 
  10412.  window the style WS_SYNCPAINT to cause it to be painted immediately whenever 
  10413.  any portion of the window becomes invalid.  Normally, a window is painted only 
  10414.  if there are no messages waiting in the message queue. 
  10415.  
  10416.  A window can have a text string associated with it.  Typically, the window 
  10417.  text is displayed in the window or in a title bar.  The class of window 
  10418.  determines whether the window displays the text and, if so, where the text 
  10419.  appears within the window. 
  10420.  
  10421.  Every window except the desktop window and desktop-object window has a parent 
  10422.  window.  The parent provides the coordinate system used to position the window 
  10423.  and also affects aspects of a window's appearance.  For example, when the 
  10424.  parent window is minimized, hidden, or destroyed, the parent's child windows 
  10425.  are minimized, hidden, or destroyed also. 
  10426.  
  10427.  Every window has a screen position, size, and z-order position.  The screen 
  10428.  position is the location of the window's lower-left corner, relative to the 
  10429.  lower-left corner of its parent window.  A window's size is its width and 
  10430.  height, measured in pels.  A window's z-order position is the position of the 
  10431.  window in the order of overlapping windows.  This viewing order is oriented 
  10432.  along an imaginary axis, the z axis, extending outward from the screen.  The 
  10433.  window at the top of the z-order overlaps all sibling windows (that is, 
  10434.  windows having the same parent window).  A window at the bottom of the z-order 
  10435.  is overlapped by all sibling windows.  An application sets a window's z-order 
  10436.  position by placing it behind a given sibling window or at the top or bottom 
  10437.  of the z-order of the windows. 
  10438.  
  10439.  A window can own, or be owned by, another window.  The owner-owned 
  10440.  relationship affects how messages are sent between windows, allowing an 
  10441.  application to create combinations of windows that work together.  A window 
  10442.  issues messages about its state to its owner window; the owner window issues 
  10443.  messages back about what action to perform next. 
  10444.  
  10445.  The window handle is a unique number across the system that is totally 
  10446.  unambiguous-it identifies one particular window in the system and is assigned 
  10447.  by the system.  A window identifier is analogous to a "given" name in family 
  10448.  relationships; the only requirement is that the name be unique among siblings. 
  10449.  
  10450.  A window can have class-specific data that further defines how the window 
  10451.  appears and behaves when it is created.  The system passes the class-specific 
  10452.  data to the window procedure, which then applies the data to the new window. 
  10453.  
  10454.  
  10455. ΓòÉΓòÉΓòÉ 11.1.5.1. Window-Creation Functions ΓòÉΓòÉΓòÉ
  10456.  
  10457. The basic window-creation function is WinCreateWindow.  This function uses 
  10458. information about a window's class, style, size, and position to create a new 
  10459. window.  All other window-creation functions, such as WinCreateStdWindow and 
  10460. WinCreateDlg, supply some of this information by default and create windows of 
  10461. a specific class or style. 
  10462.  
  10463. Although the WinCreateWindow function provides the most direct means of 
  10464. creating a window, most applications do not use it.  Instead, they often use 
  10465. the WinCreateStdWindow function to create a main window and the WinDlgBox or 
  10466. WinCreateDlg functions to create dialog windows. 
  10467.  
  10468. The WinCreateMenu, WinLoadMenu, WinLoadDlg, WinMessageBox, and 
  10469. WinCreateFrameControls functions also create windows.  Each of these functions 
  10470. substitutes for one or more required calls to WinCreateWindow to create a given 
  10471. window.  For example, an application can create a frame window, one or more 
  10472. control windows, and a client window in a single call to WinCreateStdWindow. 
  10473.  
  10474.  
  10475. ΓòÉΓòÉΓòÉ 11.1.5.2. Window-Creation Messages ΓòÉΓòÉΓòÉ
  10476.  
  10477. While creating a window, the system sends messages to that window's window 
  10478. procedure.  The window procedure receives a WM_CREATE message, saying that the 
  10479. window is being created.  The window also receives a WM_ADJUSTWINDOWPOS 
  10480. message, specifying the initial size and position of the window being created. 
  10481. This message lets the window procedure adjust the size and position of the 
  10482. window before the window is displayed. 
  10483.  
  10484. The system also sends other messages while creating a window; the number and 
  10485. order of these messages depend on the class and style of the window and the 
  10486. function used to create it. 
  10487.  
  10488.  
  10489. ΓòÉΓòÉΓòÉ 11.1.6. Window Classes ΓòÉΓòÉΓòÉ
  10490.  
  10491. Each window of a specific window class uses the window procedure associated 
  10492. with that class.  An application can create one or more windows that belong to 
  10493. the same window class.  Because each window of the same class is processed by 
  10494. the same window procedure, they all behave the same way.  Since many windows 
  10495. can result from one window procedure, coding overhead is greatly reduced. 
  10496. There are two types of window classes: public and private. 
  10497.  
  10498.  
  10499. ΓòÉΓòÉΓòÉ 11.1.6.1. Public Window Classes ΓòÉΓòÉΓòÉ
  10500.  
  10501. A public window class is one that has a reentrant window procedure that is 
  10502. registered and resides in a dynamic link library (DLL); it can be used by any 
  10503. process in the system to create windows.  The operating system provides several 
  10504. preregistered public window classes.  You can specify the system-provided 
  10505. window classes by using the symbolic identifiers that have the prefix WC_, as 
  10506. shown in the following table: 
  10507.  
  10508. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10509. ΓöéClass Name     ΓöéDescription                                  Γöé
  10510. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10511. ΓöéWC_BUTTON      ΓöéConsists of buttons and boxes the user can   Γöé
  10512. Γöé               Γöéselect by clicking the pointing device or    Γöé
  10513. Γöé               Γöéusing the keyboard.                          Γöé
  10514. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10515. ΓöéWC_CONTAINER   ΓöéCreates a control for the user to group      Γöé
  10516. Γöé               Γöéobjects in a logical manner.  A container canΓöé
  10517. Γöé               Γöédisplay those objects in various formats or  Γöé
  10518. Γöé               Γöéviews.  The container control supports drag  Γöé
  10519. Γöé               Γöéand drop so the user can place information inΓöé
  10520. Γöé               Γöéa container by simply dragging and dropping. Γöé
  10521. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10522. ΓöéWC_ENTRYFIELD  ΓöéConsists of a single line of text that the   Γöé
  10523. Γöé               Γöéuser can edit.                               Γöé
  10524. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10525. ΓöéWC_FRAME       ΓöéA window class that can contain child windowsΓöé
  10526. Γöé               Γöéof many of the other window classes.         Γöé
  10527. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10528. ΓöéWC_LISTBOX     ΓöéPresents a list of text items from which the Γöé
  10529. Γöé               Γöéuser can make selections.                    Γöé
  10530. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10531. ΓöéWC_MENU        ΓöéPresents a list of items that can be         Γöé
  10532. Γöé               Γöédisplayed horizontally as menu bars, or      Γöé
  10533. Γöé               Γöévertically as pull-down menus.  Menus usuallyΓöé
  10534. Γöé               Γöéare used to provide a command interface to   Γöé
  10535. Γöé               Γöéapplications.                                Γöé
  10536. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10537. ΓöéWC_NOTEBOOK    ΓöéCreates a control for the user that is       Γöé
  10538. Γöé               Γöédisplayed as a number of pages.  The top pageΓöé
  10539. Γöé               Γöéis visible, and the others are hidden, with  Γöé
  10540. Γöé               Γöétheir presence being indicated by a visible  Γöé
  10541. Γöé               Γöéedge on each of the back pages.              Γöé
  10542. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10543. ΓöéWC_SCROLLBAR   ΓöéLets the user scroll the contents of an      Γöé
  10544. Γöé               Γöéassociated window.                           Γöé
  10545. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10546. ΓöéWC_SLIDER      ΓöéCreates a control that is usable for         Γöé
  10547. Γöé               Γöéproducing approximate (analog) values or     Γöé
  10548. Γöé               Γöéproperties.  Scroll bars were used for this  Γöé
  10549. Γöé               Γöéfunction in the past, but the slider providesΓöé
  10550. Γöé               Γöéa more flexible method of achieving the same Γöé
  10551. Γöé               Γöéresult, with less programming effort.        Γöé
  10552. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10553. ΓöéWC_SPINBUTTON  ΓöéCreates a control that presents itself to theΓöé
  10554. Γöé               Γöéuser as a scrollable ring of choices, giving Γöé
  10555. Γöé               Γöéthe user quick access to the data.  The user Γöé
  10556. Γöé               Γöéis presented only one item at a time, so the Γöé
  10557. Γöé               Γöéspin button should be used with data that is Γöé
  10558. Γöé               Γöéintuitively related.                         Γöé
  10559. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10560. ΓöéWC_STATIC      ΓöéSimple display items that do not respond to  Γöé
  10561. Γöé               Γöékeyboard or pointing device events.          Γöé
  10562. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10563. ΓöéWC_TITLEBAR    ΓöéDisplays the window title or caption and letsΓöé
  10564. Γöé               Γöéthe user move the window's owner.            Γöé
  10565. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10566. ΓöéWC_VALUESET    ΓöéCreates a control similar in function to the Γöé
  10567. Γöé               Γöéradio buttons but provides additional        Γöé
  10568. Γöé               Γöéflexibility to display graphical, textual,   Γöé
  10569. Γöé               Γöéand numeric formats.  The values set with    Γöé
  10570. Γöé               Γöéthis control are mutually exclusive.         Γöé
  10571. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  10572.  
  10573. With the exception of WC_FRAME, the system-provided window classes are known as 
  10574. control window classes because they give the user an easy means of controlling 
  10575. specific types of interaction.  For example, the WC_BUTTON class allows single 
  10576. or multiple selections.  These windows conform to the IBM* Systems Application 
  10577. Architecture (SAA) Common User Access (CUA) definition. They are designed 
  10578. specifically to provide function that meets the needs for a graphics-based 
  10579. standard user interface.  The code fragments provided in this guide make 
  10580. extensive use of the system window classes. 
  10581.  
  10582.  
  10583. ΓòÉΓòÉΓòÉ 11.1.6.2. Private Window Classes ΓòÉΓòÉΓòÉ
  10584.  
  10585. A private window class is one that an application registers for its own use; it 
  10586. is available only to the process that registers it.  The application-provided 
  10587. window procedure for a private window class resides either in the application's 
  10588. executable files or in a DLL file.  A private window class is deleted when its 
  10589. registering process is terminated. 
  10590.  
  10591.  
  10592. ΓòÉΓòÉΓòÉ 11.1.7. Window Styles ΓòÉΓòÉΓòÉ
  10593.  
  10594. A window can have a combination of styles; an application can combine styles by 
  10595. using the bitwise inclusive OR operator.  An application usually sets the 
  10596. window styles when it creates the window.  The OS/2 operating system provides 
  10597. several standard window styles that apply to all windows.  It also provides 
  10598. many styles for the predefined frame and control windows.  The frame and 
  10599. control styles are unique to each predefined window class and can be used only 
  10600. for windows of the corresponding class. 
  10601.  
  10602. Initially, the styles of the window class used to create the window determine 
  10603. the styles of the new window.  For example, if the window class has the style 
  10604. CS_SYNCPAINT, all windows created using that class, by default, will have the 
  10605. window style WS_SYNCPAINT. The OS/2 operating system has the following standard 
  10606. window styles: 
  10607.  
  10608. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10609. ΓöéStyle Name               ΓöéDescription                                  Γöé
  10610. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10611. ΓöéWS_CLIPCHILDREN          ΓöéPrevents a window from painting over its     Γöé
  10612. Γöé                         Γöéchild windows. This style increases the time Γöé
  10613. Γöé                         Γöénecessary to calculate the visible region.   Γöé
  10614. Γöé                         ΓöéThis style is usually not necessary because  Γöé
  10615. Γöé                         Γöéif the parent and child windows overlap and  Γöé
  10616. Γöé                         Γöéboth are invalidated, the system draws the   Γöé
  10617. Γöé                         Γöéparent window before drawing the child       Γöé
  10618. Γöé                         Γöéwindow. If the child window is invalidated   Γöé
  10619. Γöé                         Γöéindependently of the parent window, the      Γöé
  10620. Γöé                         Γöésystem redraws only the child window. If the Γöé
  10621. Γöé                         Γöéupdate region of the parent window does not  Γöé
  10622. Γöé                         Γöéintersect the child window, drawing the      Γöé
  10623. Γöé                         Γöéparent window causes the child window to be  Γöé
  10624. Γöé                         Γöéredrawn. This style is useful to prevent a   Γöé
  10625. Γöé                         Γöéchild window that contains a complex graphic Γöé
  10626. Γöé                         Γöéfrom being redrawn unnecessarily.            Γöé
  10627. Γöé                         ΓöéWS_CLIPCHILDREN is an absolute requirement ifΓöé
  10628. Γöé                         Γöéa window with children ever performs output  Γöé
  10629. Γöé                         Γöéin response to any message other than        Γöé
  10630. Γöé                         ΓöéWM_PAINT. Only WM_PAINT processing is        Γöé
  10631. Γöé                         Γöésynchronized such that the children will get Γöé
  10632. Γöé                         Γöétheir messages after the parent.             Γöé
  10633. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10634. ΓöéWS_CLIPSIBLINGS          ΓöéPrevents a window from painting over its     Γöé
  10635. Γöé                         Γöésibling windows. This style protects sibling Γöé
  10636. Γöé                         Γöéwindows but increases the time necessary to  Γöé
  10637. Γöé                         Γöécalculate the visible region. This style is  Γöé
  10638. Γöé                         Γöéappropriate for windows that overlap and thatΓöé
  10639. Γöé                         Γöéhave the same parent window.                 Γöé
  10640. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10641. ΓöéWS_DISABLED              ΓöéUsed by an application to disable a window.  Γöé
  10642. Γöé                         ΓöéIt is up to the window to recognize this     Γöé
  10643. Γöé                         Γöéstyle and reject input.                      Γöé
  10644. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10645. ΓöéWS_GROUP                 ΓöéSpecifies the first control of a group of    Γöé
  10646. Γöé                         Γöécontrols in which the user can move from one Γöé
  10647. Γöé                         Γöécontrol to the next by using the ARROW keys. Γöé
  10648. Γöé                         ΓöéAll controls defined after the control with  Γöé
  10649. Γöé                         Γöéthe WS_GROUP style belong to the same group. Γöé
  10650. Γöé                         ΓöéThe next control with the WS_GROUP style endsΓöé
  10651. Γöé                         Γöéthe first group and starts a new group.      Γöé
  10652. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10653. ΓöéWS_MAXIMIZED             ΓöéEnlarges a window to the maximum size.       Γöé
  10654. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10655. ΓöéWS_MINIMIZED             ΓöéReduces a window to the size of an icon.     Γöé
  10656. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10657. ΓöéWS_PARENTCLIP            ΓöéExtends a window's visible region to include Γöé
  10658. Γöé                         Γöéthat of its parent window. This style        Γöé
  10659. Γöé                         Γöésimplifies the calculation of the child      Γöé
  10660. Γöé                         Γöéwindow's visible region but is potentially   Γöé
  10661. Γöé                         Γöédangerous because the parent window's visibleΓöé
  10662. Γöé                         Γöéregion is usually larger than the child      Γöé
  10663. Γöé                         Γöéwindow.                                      Γöé
  10664. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10665. ΓöéWS_SAVEBITS              ΓöéSaves the screen area under a window as a bitΓöé
  10666. Γöé                         Γöémap. When the user hides or moves the window,Γöé
  10667. Γöé                         Γöéthe system restores the image by copying the Γöé
  10668. Γöé                         Γöébits; there is no need to add the area to theΓöé
  10669. Γöé                         Γöéuncovered window's update region. The style  Γöé
  10670. Γöé                         Γöécan improve system performance but also can  Γöé
  10671. Γöé                         Γöéconsume a great deal of memory. It is        Γöé
  10672. Γöé                         Γöérecommended only for transient windows, such Γöé
  10673. Γöé                         Γöéas menus and dialog windows, not for main    Γöé
  10674. Γöé                         Γöéapplication windows.                         Γöé
  10675. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10676. ΓöéWS_SYNCPAINT             ΓöéCauses a window to receive WM_PAINT messages Γöé
  10677. Γöé                         Γöéimmediately after a part of the window       Γöé
  10678. Γöé                         Γöébecomes invalid. Without this style, the     Γöé
  10679. Γöé                         Γöéwindow receives WM_PAINT messages only if no Γöé
  10680. Γöé                         Γöéother message is waiting to be processed.    Γöé
  10681. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10682. ΓöéWS_TABSTOP               ΓöéSpecifies one of any number of controls      Γöé
  10683. Γöé                         Γöéthrough which the user can move by tabbing.  Γöé
  10684. Γöé                         ΓöéPressing the TAB key moves the keyboard focusΓöé
  10685. Γöé                         Γöéto the next control that has the WS_TABSTOP  Γöé
  10686. Γöé                         Γöéstyle.                                       Γöé
  10687. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10688. ΓöéWS_VISIBLE               ΓöéMakes a window visible. The operating system Γöé
  10689. Γöé                         Γöédraws the window on the screen unless        Γöé
  10690. Γöé                         Γöéoverlapping windows completely obscure it.   Γöé
  10691. Γöé                         ΓöéWindows without this style are hidden. If    Γöé
  10692. Γöé                         Γöéoverlapping windows completely obscure the   Γöé
  10693. Γöé                         Γöéwindow, the window is still considered       Γöé
  10694. Γöé                         Γöévisible.  (Visibility means that the         Γöé
  10695. Γöé                         Γöéoperating system draws the window if it can.)Γöé
  10696. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  10697.  
  10698.  
  10699. ΓòÉΓòÉΓòÉ 11.1.8. Window Handles ΓòÉΓòÉΓòÉ
  10700.  
  10701. After creating a window, the creation function returns a window handle that 
  10702. uniquely identifies the window.  An application can use this handle to direct 
  10703. the action of functions to the window.  Window handles have the data type HWND; 
  10704. applications must use this data type when declaring variables that hold window 
  10705. handles. 
  10706.  
  10707. There are special constants that an application can use instead of a window 
  10708. handle in certain functions.  For example, an application can use HWND_DESKTOP 
  10709. in the WinCreateWindow function to specify the desktop window as the new 
  10710. window's parent. Similarly, HWND_OBJECT represents the desktop-object window. 
  10711. HWND_TOP and HWND_BOTTOM represent the top and bottom positions relative to the 
  10712. z-order position of a window. 
  10713.  
  10714. Although the NULL constant is not a window handle, an application can use it in 
  10715. some functions to specify that no window is affected.  For example, an 
  10716. application can use NULL in the WinCreateWindow function to create a window 
  10717. that has no owner window.  Some functions might return NULL, indicating that 
  10718. the given action applies to no window. 
  10719.  
  10720.  
  10721. ΓòÉΓòÉΓòÉ 11.1.9. Window Size and Position ΓòÉΓòÉΓòÉ
  10722.  
  10723. A window's size and position can be expressed as a bounding rectangle, given in 
  10724. coordinates relative to its parent.  An application specifies the window's 
  10725. initial size and position when creating the window. 
  10726.  
  10727. To use the system-default values for the initial size and position of a frame 
  10728. window, an application can specify the FCF_SHELLPOSITION frame-creation flag. 
  10729. The application can change a window's size and position at any time. 
  10730.  
  10731. Note: 
  10732.  
  10733. The default coordinate system for a window specifies that the point (0,0) is at 
  10734. the lower-left corner of the window, with coordinates increasing as they go 
  10735. upward and to the right. 
  10736.  
  10737. A window can be positioned anywhere in relation to its parent. 
  10738.  
  10739.  
  10740. ΓòÉΓòÉΓòÉ 11.1.9.1. Size ΓòÉΓòÉΓòÉ
  10741.  
  10742. A window's size (width and height) is given in pels, in the range 0 through 
  10743. 65535.  A window can have 0 width and height; however, a window with 0 width or 
  10744. height is not drawn on the screen, even though it has the WS_VISIBLE style. 
  10745.  
  10746. An application can create very large windows; however, it should check the size 
  10747. of the screen before enlarging a window size.  One way to choose an appropriate 
  10748. size is to use the WinGetMaxPosition function to retrieve the size of the 
  10749. maximized window.  A window that is larger than its maximized size will be 
  10750. larger than the screen also. 
  10751.  
  10752. An application can retrieve the current size of the window by using the 
  10753. WinQueryWindowRect function. 
  10754.  
  10755.  
  10756. ΓòÉΓòÉΓòÉ 11.1.9.2. Position ΓòÉΓòÉΓòÉ
  10757.  
  10758. A window's position is defined as the x,y coordinates of its lower-left corner. 
  10759. These coordinates, sometimes called window coordinates, always are relative to 
  10760. the lower-left corner of the parent window.  For example, a window having the 
  10761. coordinates (10,10) is placed 10 pels to the right of, and 10 pels up from, the 
  10762. lower-left corner of its parent window.  Notice, however, that a window can be 
  10763. positioned anywhere in relation to its parent, but always relative to the 
  10764. parent's lower-left corner. 
  10765.  
  10766. Adjusting a window's position can improve drawing performance.  For example, an 
  10767. application could position a window so that its horizontal position is a 
  10768. multiple of 8, relative to the screen origin (the lower-left corner of the 
  10769. screen).  Coordinates that are multiples of 8 correspond to byte boundaries in 
  10770. the screen-memory bit map.  It is usually faster to start drawing at a byte 
  10771. boundary. 
  10772.  
  10773. By default, the system positions a frame window on a byte boundary; but an 
  10774. application can override this action by using the FCF_NOBYTEALIGN style when 
  10775. creating the window. 
  10776.  
  10777.  
  10778. ΓòÉΓòÉΓòÉ 11.1.9.3. Size and Position Messages ΓòÉΓòÉΓòÉ
  10779.  
  10780. A window receives messages when it changes size or position.  Before a change 
  10781. is made, the system might send a WM_ADJUSTWINDOWPOS message to allow the window 
  10782. procedure to make final adjustments to the window's size and position.  This 
  10783. message includes a pointer to an SWP structure that contains the requested 
  10784. width, height, and position.  If the window procedure adjusts these values in 
  10785. the structure, the system uses the adjusted values to redraw the window.  The 
  10786. WM_ADJUSTWINDOWPOS message is not sent if the change is a result of a call to 
  10787. the WinSetWindowPos function with the SWP_NOADJUST constant specified. 
  10788.  
  10789. After a change has been made to a window, the system sends a WM_SIZE message to 
  10790. specify the new size of the window.  If the window has the class style 
  10791. CS_MOVENOTIFY, the system also sends a WM_MOVE message, which includes the new 
  10792. position for the window.  The system sends a WM_SHOW message if the visibility 
  10793. of the window has changed. 
  10794.  
  10795.  
  10796. ΓòÉΓòÉΓòÉ 11.1.9.4. System Commands ΓòÉΓòÉΓòÉ
  10797.  
  10798. An application that has a window with a system menu can change the size and 
  10799. position of that window by sending system commands.  The system commands are 
  10800. generated when the user chooses commands from the system menu.  An application 
  10801. can emulate the user action by sending a WM_SYSCOMMAND message to the window. 
  10802.  
  10803. Following are some of the system commands: 
  10804.  
  10805. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10806. ΓöéCommand        ΓöéDescription                                  Γöé
  10807. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10808. ΓöéSC_SIZE        ΓöéStarts a Size command.  The user can change  Γöé
  10809. Γöé               Γöéthe size of the window with a mouse and the  Γöé
  10810. Γöé               Γöékeyboard.                                    Γöé
  10811. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10812. ΓöéSC_MOVE        ΓöéStarts a Move command.  The user can move theΓöé
  10813. Γöé               Γöéwindow with a mouse and the keyboard.        Γöé
  10814. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10815. ΓöéSC_MINIMIZE    ΓöéMinimizes the window.                        Γöé
  10816. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10817. ΓöéSC_MAXIMIZE    ΓöéMaximizes the window.                        Γöé
  10818. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10819. ΓöéSC_RESTORE     ΓöéRestores a minimized or maximized window to  Γöé
  10820. Γöé               Γöéits previous size and position.              Γöé
  10821. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10822. ΓöéSC_CLOSE       ΓöéCloses the window.  This command sends a     Γöé
  10823. Γöé               ΓöéWM_CLOSE message to the window.  The window  Γöé
  10824. Γöé               Γöéperforms all tasks needed to clean up and    Γöé
  10825. Γöé               Γöédestroy itself.                              Γöé
  10826. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  10827.  
  10828.  
  10829. ΓòÉΓòÉΓòÉ 11.1.10. Window Data ΓòÉΓòÉΓòÉ
  10830.  
  10831. Every window has an associated data structure. The window data structure 
  10832. contains all the information specified for the window at the time it was 
  10833. created and any additional information supplied for the window since that time. 
  10834. Although the exact size and meaning of the information in the window data 
  10835. structure are private to the system, an application can access any of the 
  10836. following data items via system-provided functions: 
  10837.  
  10838.      Pointer to window-instance data structure 
  10839.      Pointer to window procedure 
  10840.      Parent-window handle 
  10841.      Owner-window handle 
  10842.      Handle of first child window 
  10843.      Handle of next sibling window 
  10844.      Window size and position (expressed as a rectangle) 
  10845.      Window style 
  10846.      Window identifier 
  10847.      Update-region handle 
  10848.      Message-queue handle 
  10849.  
  10850.  An application can examine and modify this data by using functions such as 
  10851.  WinQueryWindowUShort and WinSetWindowUShort. These functions let an 
  10852.  application access data that is stored as 16-bit integers.  Other functions 
  10853.  let an application access data containing 32-bit integers and pointers. 
  10854.  Several functions indirectly affect the data items in the window data 
  10855.  structure.  For example, the WinSubclassWindow function replaces the 
  10856.  window-procedure pointer, and the WinSetWindowPos function changes the size 
  10857.  and position of the window. 
  10858.  
  10859.  An application can extend the number of available data items in the window 
  10860.  data structure by specifying a count of extra bytes when it registers the 
  10861.  corresponding window class.  Then, the window procedure can use these bytes to 
  10862.  store information about the window.  The WinQueryWindowUShort and 
  10863.  WinSetWindowUShort functions give direct access to the extra bytes. 
  10864.  
  10865.  It generally is not a good idea to use direct storage in the window data.  It 
  10866.  is better to allocate a data structure dynamically and set a pointer to that 
  10867.  data structure in the window words.  This provides two advantages: 
  10868.  
  10869.    1. Most importantly, it is a symbolic way of referencing the data structure. 
  10870.       It is very easy to make mistakes and provide the wrong offsets to 
  10871.       WinQueryWindowUShort and so forth. 
  10872.  
  10873.    2. You now can add and remove fields without cross dependencies because you 
  10874.       now use symbolic references; whereas, when you use the technique of 
  10875.       putting window words directly in the window data structure, you have to 
  10876.       account for changed offsets. 
  10877.  
  10878.  
  10879. ΓòÉΓòÉΓòÉ 11.1.11. Window Resources ΓòÉΓòÉΓòÉ
  10880.  
  10881. Window resources are read-only data segments stored in an application's EXE 
  10882. file or in a dynamic link library's DLL file.  Predefined PM window resources 
  10883. include keyboard accelerator tables, icons, menus, bit maps, dialog boxes, and 
  10884. so forth; these are not a regular part of the application window's code and 
  10885. data.  Because, in most cases, window resources are not loaded into memory when 
  10886. the operating system runs a program, the resources can be shared by multiple 
  10887. instances of the same application. 
  10888.  
  10889. Most window resources are stored in a format that is unique to each resource 
  10890. type.  The application does not need to know these formats because the system 
  10891. translates them, as necessary, for use in PM functions.  The following table 
  10892. lists the ten most commonly used PM window resource types. 
  10893.  
  10894. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10895. ΓöéResource       ΓöéDescription                                  Γöé
  10896. ΓöéIdentifier     Γöé                                             Γöé
  10897. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10898. ΓöéRT_ACCELTABLE  ΓöéKeyboard accelerator table                   Γöé
  10899. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10900. ΓöéRT_BITMAP      ΓöéBit map                                      Γöé
  10901. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10902. ΓöéRT_DIALOG      ΓöéDialog box template                          Γöé
  10903. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10904. ΓöéRT_FONT        ΓöéFont                                         Γöé
  10905. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10906. ΓöéRT_FONTDIR     ΓöéFont directory                               Γöé
  10907. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10908. ΓöéRT_MENU        ΓöéMenu template                                Γöé
  10909. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10910. ΓöéRT_MESSAGE     ΓöéMessage string                               Γöé
  10911. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10912. ΓöéRT_POINTER     ΓöéIcon or mouse                                Γöé
  10913. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10914. ΓöéRT_RCDATA      ΓöéProgrammer-defined data                      Γöé
  10915. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  10916. ΓöéRT_STRING      ΓöéText string                                  Γöé
  10917. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  10918.  
  10919. To access these resources, you must prepare a resource file (ASCII file with 
  10920. the extension .RC). Then the ASCII resource file must be compiled into binary 
  10921. images using the resource compiler.  The compiled resource file extension is 
  10922. RES; it can be linked into your program's EXE file or to a dynamic link 
  10923. library's DLL file. 
  10924.  
  10925.  
  10926. ΓòÉΓòÉΓòÉ 11.1.12. Maximized and Minimized Windows ΓòÉΓòÉΓòÉ
  10927.  
  10928. A maximized window is a window that has been enlarged to fill the screen. 
  10929. Although a window's size can be set so that it fills the screen exactly, a 
  10930. maximized window is slightly different: the system automatically moves the 
  10931. window's title bar to the top of the screen and sets the WS_MAXIMIZED style for 
  10932. the window. 
  10933.  
  10934. A minimized window is a window whose size has been reduced to exactly the size 
  10935. of an icon or, in the Workplace Shell*, it disappears altogether (by default). 
  10936. Like a maximized window, a minimized window is more than just a window of a 
  10937. given size; typically, the system moves the (icon) minimized window to the 
  10938. lower part of the screen and sets the WS_MINIMIZED style for that window.  The 
  10939. lower part of the screen is sometimes called the icon area.  Unless the 
  10940. application specifies another position, the system moves a minimized window 
  10941. into the first available icon position in the icon area. 
  10942.  
  10943. If a window is created with the WS_MAXIMIZED or WS_MINIMIZED styles, the system 
  10944. draws the window as a maximized or minimized window. 
  10945.  
  10946. An application can restore maximized or minimized windows to their previous 
  10947. size and position by specifying the SWP_RESTORE flag in a call to the 
  10948. WinSetWindowPos function. 
  10949.  
  10950.  
  10951. ΓòÉΓòÉΓòÉ 11.1.13. Window Visibility ΓòÉΓòÉΓòÉ
  10952.  
  10953. A window that is a descendant of the desktop window can be either visible or 
  10954. invisible.  The system displays a visible window on the screen.  It hides an 
  10955. invisible window by not drawing it.  If a window is visible, the user can 
  10956. supply input to the window and view the window's output.  If a window is 
  10957. invisible, the window, in effect, is disabled.  An invisible window can process 
  10958. messages from the system or from other windows, but it cannot process user 
  10959. input or display output.  An application sets a window's visibility state when 
  10960. it creates the window.  Later, a user or the application can change the 
  10961. visibility state. 
  10962.  
  10963. The visible region of a window is the position clipped by any overlapping 
  10964. windows.  These overlapping windows can be child windows or other main windows 
  10965. in the system.  The visible region is defined by a set of one or more 
  10966. rectangles, as shown in the following figure. 
  10967.  
  10968.  ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10969.  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæ Γöé
  10970.  Γöé Γûæ A ΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæ ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ ΓûæΓûæΓûæΓûæΓûæΓûæ Γöé
  10971.  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæ Γöé            B  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæ Γöé
  10972.  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæ ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ         Γöé ΓûæΓûæΓûæΓûæΓûæΓûæ Γöé
  10973.  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæ Γöé C             Γöé         Γöé ΓûæΓûæΓûæΓûæΓûæΓûæ Γöé
  10974.  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæ Γöé               Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ ΓûæΓûæΓûæΓûæΓûæΓûæ Γöé
  10975.  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæ Γöé               Γöé ΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæ Γöé
  10976.  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæ ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ ΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæ ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10977.  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæ Γöé D             Γöé
  10978.  Γöé ΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæΓûæ Γöé               Γöé
  10979.  ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ               Γöé
  10980.                                        ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  10981.  ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  10982.  Γöé ΓûæΓûæΓûæΓûæΓûæ Γöé - Visible region for Window A
  10983.  Γöé ΓûæΓûæΓûæΓûæΓûæ Γöé
  10984.  ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  10985.  
  10986. Visible Region for Window A 
  10987.  
  10988. A window is visible if the WS_VISIBLE style is set for the window.  By default, 
  10989. the WinCreateWindow function creates invisible windows unless the application 
  10990. specifies WS_VISIBLE.  The application often hides a window to keep its 
  10991. operational details from the user.  For example, an application can keep a new 
  10992. window invisible while it customizes the window's appearance.  An application 
  10993. can determine whether a window has the WS_VISIBLE style by using the 
  10994. WinIsWindowVisible function. 
  10995.  
  10996. Even if a window has the WS_VISIBLE style, the user might not be able to see 
  10997. the window on the screen because other windows completely overlap it, or it 
  10998. might have been moved beyond the edge of its parent.  A visible window is 
  10999. subject to the clipping rules established by its parent-child relationship.  If 
  11000. the window's parent window is not visible, the window will not be visible. 
  11001. Because a child window is drawn relative to its parent's lower-left corner, if 
  11002. the parent window is moved beyond the edge of the screen, the child window also 
  11003. will be moved.  In other words, if a user moves the parent window containing 
  11004. the child window far enough off the edge of the screen, the user will not be 
  11005. able to see the child window, even though the child window and its parent 
  11006. window have the WS_VISIBLE style.  To determine whether the user actually can 
  11007. see a window, an application can use the WinIsWindowShowing function. 
  11008.  
  11009.  
  11010. ΓòÉΓòÉΓòÉ 11.1.14. Window Destruction ΓòÉΓòÉΓòÉ
  11011.  
  11012. In general, an application must destroy all the windows it creates. It does 
  11013. this by using the WinDestroyWindow function.  When a window is destroyed, the 
  11014. system hides the window, if it is visible, and then removes any internal data 
  11015. associated with the window.  This invalidates the window handle so that it can 
  11016. no longer be used by the application. 
  11017.  
  11018. An application destroys many of the windows it creates soon after creating 
  11019. them.  For example, an application usually destroys a dialog window as soon as 
  11020. the application has sufficient input from the user to continue its task.  An 
  11021. application eventually destroys the main window of the application (before 
  11022. terminating). 
  11023.  
  11024. Destroying a window does not affect the window class from which the window was 
  11025. created.  New windows still can be created using that class, and any existing 
  11026. windows of that class continue to operate. 
  11027.  
  11028. When the application calls WinDestroyWindow, the system searches the 
  11029. descendancy tree for all windows below the specified window and destroys them 
  11030. from the bottom up, so each child receives WM_DESTROY before its parent.  Each 
  11031. destroyed window is responsible for cleaning up its own resources in response 
  11032. to the WM_DESTROY message. 
  11033.  
  11034. If a presentation space was created by the WinGetPS function for any of the 
  11035. windows to be destroyed, it must be released by calling the WinReleasePS 
  11036. function.  The application must do this before calling the WinDestroyWindow 
  11037. function.  If a presentation space is associated with the device context for 
  11038. the window, the application must disassociate or destroy the presentation space 
  11039. by using the GpiAssociate or GpiDestroyPS function before calling 
  11040. WinDestroyWindow.  Failing to release a resource can cause an error. 
  11041.  
  11042. For more information about presentation spaces and device contexts, see 
  11043. Painting and Drawing. 
  11044.  
  11045. If the window being destroyed is the active window, both the active and focus 
  11046. states are transferred to another window.  The window that becomes the active 
  11047. window is the next window, as determined by the Alt+Esc key combination.  The 
  11048. new active window then determines which window receives the keyboard focus. 
  11049.  
  11050.  
  11051. ΓòÉΓòÉΓòÉ 11.2. Using Windows ΓòÉΓòÉΓòÉ
  11052.  
  11053. The following sections explain how to create and use windows in an application, 
  11054. how to manage ownership and parent-child window relationships, and how to move 
  11055. and size windows. 
  11056.  
  11057.  
  11058. ΓòÉΓòÉΓòÉ 11.2.1. Creating a Top-Level Frame Window ΓòÉΓòÉΓòÉ
  11059.  
  11060. The main window in most applications is a top-level frame window. An 
  11061. application creates a top-level frame window by specifying the handle of the 
  11062. desktop window, or HWND_DESKTOP, as the hwndParent parameter in a call to the 
  11063. WinCreateStdWindow function. 
  11064.  
  11065. The following figure shows the main() function for a simple PM application. 
  11066. This function initializes the application, creates a message queue, and 
  11067. registers the window class for the client window before creating a top-level 
  11068. frame window. 
  11069.  
  11070.     #define IDR_RESOURCES 1
  11071.  
  11072.     MRESULT EXPENTRY ClientWndProc(HWND, ULONG, MPARAM, MPARAM);
  11073.  
  11074.     int main(VOID)
  11075.     {
  11076.         HWND hwndFrame;
  11077.         HWND hwndClient;
  11078.         HMQ  hmq;
  11079.         QMSG qmsg;
  11080.         HAB  hab;
  11081.  
  11082.         /* Set the frame-window creation flags.                       */
  11083.         ULONG flFrameFlags =
  11084.             FCF_TITLEBAR      |   /* Title bar                        */
  11085.             FCF_SIZEBORDER    |   /* Size border                      */
  11086.             FCF_MINMAX        |   /* Minimize and maximize buttons.   */
  11087.             FCF_SYSMENU       |   /* System menu                      */
  11088.             FCF_SHELLPOSITION |   /* System-default size and position */
  11089.             FCF_TASKLIST ;        /* Add name to Task List.           */
  11090.  
  11091.         /* Initialize the application for PM                          */
  11092.         hab = WinInitialize(0);
  11093.  
  11094.         /* Create the application message queue.                      */
  11095.         hmq = WinCreateMsgQueue(hab, 0);
  11096.  
  11097.         /* Register the class for the client window.                  */
  11098.         WinRegisterClass(
  11099.             hab,                    /* Anchor block handle            */
  11100.             "MyPrivateClass",       /* Name of class being registered */
  11101.             (PFNWP)ClientWndProc,   /* Window procedure for class     */
  11102.             CS_SIZEREDRAW |         /* Class style                    */
  11103.             CS_HITTEST,             /* Class style                    */
  11104.             0);                     /* Extra bytes to reserve         */
  11105.  
  11106.         /* Create a top-level frame window with a client window       */
  11107.         /* that belongs to the window class "MyPrivateClass".         */
  11108.         hwndFrame = WinCreateStdWindow(
  11109.             HWND_DESKTOP,      /* Parent is desktop window.           */
  11110.             WS_VISIBLE,        /* Make frame window visible.          */
  11111.             &flFrameFlags,     /* Frame controls                      */
  11112.             "MyPrivateClass",  /* Window class for client             */
  11113.             NULL,              /* No window title                     */
  11114.             WS_VISIBLE,        /* Make client window visible .        */
  11115.             (HMODULE) 0,       /* Resources in application module     */
  11116.             IDR_RESOURCES,     /* Resource identifier                 */
  11117.             NULL);             /* Pointer to client window handle     */
  11118.  
  11119.         /* Start the main message loop. Get messages from the         */
  11120.         /* queue and dispatch them to the appropriate windows.        */
  11121.         while (WinGetMsg(hab, &qmsg, 0, 0, 0))
  11122.                WinDispatchMsg(hab, &qmsg);
  11123.  
  11124.         /* Main loop has terminated. Destroy all windows and the      */
  11125.         /* message queue; then terminate the application.             */
  11126.         WinDestroyWindow(hwndFrame);
  11127.         WinDestroyMsgQueue(hmq);
  11128.         WinTerminate(hab);
  11129.  
  11130.         return 0;
  11131.     }
  11132.  
  11133.  
  11134. ΓòÉΓòÉΓòÉ 11.2.2. Creating an Object Window ΓòÉΓòÉΓòÉ
  11135.  
  11136. An application can create an object window by using the WinCreateWindow 
  11137. function and setting the desktop-object window as the parent window.  The code 
  11138. fragment in the following figure shows how to create an object window. 
  11139.  
  11140.     #define ID_OBJWINDOW 2
  11141.  
  11142.     HWND hwndObject;
  11143.  
  11144.     hwndObject = WinCreateWindow(
  11145.         HWND_OBJECT,        /* Parent is object window.            */
  11146.         "MyObjClass",       /* Window class for client             */
  11147.         NULL,               /* Window text                         */
  11148.         0,                  /* No styles for object window         */
  11149.         0, 0,               /* Lower-left corner                   */
  11150.         0, 0,               /* Width and height                    */
  11151.         NULL,               /* No owner                            */
  11152.         HWND_BOTTOM,        /* Inserts window at bottom of z-order */
  11153.         ID_OBJWINDOW,       /* Window identifier                   */
  11154.         NULL,               /* No class-specific data              */
  11155.         NULL);              /* No presentation data                */
  11156.  
  11157.  
  11158. ΓòÉΓòÉΓòÉ 11.2.3. Querying Window Data ΓòÉΓòÉΓòÉ
  11159.  
  11160. An application can examine the values in the data structure associated with a 
  11161. window by using the WinQueryWindowUShort and WinQueryWindowULong functions. 
  11162. Each of these functions specifies a structure data item to examine.  The index 
  11163. value can be an integer representing a zero-based byte index or a constant 
  11164. (QWS_) that identifies a specific item of data. The code fragment in the 
  11165. following figure obtains the programmer-defined identifier of the object window 
  11166. defined in the previous example: 
  11167.  
  11168.  
  11169.     HWND hwndObject;
  11170.     USHORT usObjID;
  11171.  
  11172.     usObjID = WinQueryWindowUShort(hwndObject, QWS_ID);
  11173.  
  11174.  
  11175. ΓòÉΓòÉΓòÉ 11.2.4. Changing the Parent Window ΓòÉΓòÉΓòÉ
  11176.  
  11177. An application can change a window's parent window by using the WinSetParent 
  11178. function.  For example, in an application that uses child windows to display 
  11179. documents, you might want only the active document window to show a system 
  11180. menu.  You can do this by changing that menu's parent window back and forth 
  11181. between the document window and the object window when WM_ACTIVATE messages are 
  11182. received.  This technique is shown in the code fragment in the following 
  11183. figure. 
  11184.  
  11185.  
  11186.     switch (msg) {
  11187.  
  11188.     case WM_ACTIVATE:  {
  11189.  
  11190.     HWND hwndFrame, hwndSysMenu, hwnd;
  11191.  
  11192.         /* Get the handles of the frame window and system menu.        */
  11193.         hwndFrame = WinQueryWindow(hwnd, QW_PARENT);
  11194.         hwndSysMenu = WinWindowFromID(hwndFrame, FID_SYSMENU);
  11195.  
  11196.         /* If the window is being activated, make the frame window the */
  11197.         /* parent of the system menu. Otherwise, hide the system menu  */
  11198.         /* by making the object window the parent.                     */
  11199.  
  11200.         if ( SHORT1FROMMP(mp1))
  11201.             WinSetParent(hwndSysMenu, hwndFrame, TRUE);
  11202.  
  11203.         else
  11204.             WinSetParent(hwndSysMenu, HWND_OBJECT, TRUE);
  11205.  
  11206.         }
  11207.  
  11208.         return 0;
  11209.     }
  11210.  
  11211.  
  11212. ΓòÉΓòÉΓòÉ 11.2.5. Finding a Parent, Child, or Owner Window ΓòÉΓòÉΓòÉ
  11213.  
  11214. An application can determine the parent, child, and owner windows for any 
  11215. window by using the WinQueryWindow function.  This function returns the window 
  11216. handle of the requested window. 
  11217.  
  11218. The code fragment in the following figure determines the parent window of the 
  11219. given window: 
  11220.  
  11221.     HWND hwndParent;
  11222.     HWND hwndMyWindow;
  11223.  
  11224.     hwndParent = WinQueryWindow(hwndMyWindow, QW_PARENT);
  11225.  
  11226. The code fragment in the following figure determines the topmost child window 
  11227. (the child window in the top z-order position): 
  11228.  
  11229.     HWND hwndTopChild;
  11230.     HWND hwndParent;
  11231.  
  11232.     hwndTopChild = WinQueryWindow(hwndParent, QW_TOP);
  11233.  
  11234. If a given window does not have an owner or child window, WinQueryWindow 
  11235. returns NULL. 
  11236.  
  11237.  
  11238. ΓòÉΓòÉΓòÉ 11.2.6. Setting an Owner Window ΓòÉΓòÉΓòÉ
  11239.  
  11240. An application can set the owner for a window by using the WinSetOwner 
  11241. function.  Typically, after setting the owner, a window notifies the owner 
  11242. window of the new relationship by sending it a message. 
  11243.  
  11244. The code fragment in the following figure shows how to set the owner window and 
  11245. send it a message: 
  11246.  
  11247.     #define NEW_OWNER 1
  11248.  
  11249.     HWND hwndMyWindow;
  11250.     HWND hwndNewOwner;
  11251.  
  11252.     if (WinSetOwner(hwndMyWindow, hwndNewOwner))
  11253.  
  11254.         /* Send a notification message.                                 */
  11255.         WinSendMsg(hwndNewOwner,   /* Sends to owner                    */
  11256.             WM_CONTROL,            /* Control message for notification  */
  11257.             (MPARAM) NEW_OWNER,    /* Notification code                 */
  11258.             NULL);                 /* No extra data                     */
  11259.  
  11260. A window can have only one owner, so WinSetOwner removes any previous owner. 
  11261.  
  11262.  
  11263. ΓòÉΓòÉΓòÉ 11.2.7. Retrieving the Handle of a Child or Owned Window ΓòÉΓòÉΓòÉ
  11264.  
  11265. A parent or owner window can retrieve the handle of a child or owned window by 
  11266. using the WinWindowFromID function and supplying the identifier of the child or 
  11267. owned window.  WinWindowFromID searches all child and owned windows to locate 
  11268. the window with the given identifier.  The window identifier is set when the 
  11269. application creates the child or owned window. 
  11270.  
  11271. Typically, an owned window uses WinQueryWindow to get the handle of the owner 
  11272. window; then uses WinSendMsg to issue a notification message to its owner 
  11273. window. 
  11274.  
  11275. The code fragment in the following figure retrieves the window handle of an 
  11276. owner window and sends the window a WM_ENABLE message. 
  11277.  
  11278.     HWND hwndOwned;
  11279.     HWND hwndOwner;
  11280.  
  11281.     case WM_CONTROL:
  11282.         switch (SHORT2FROMMP (mp2)) {
  11283.             case BN_CLICKED:
  11284.                 hwndOwned = WinWindowFromID(hwndOwner,
  11285.                 (ULONG)SHORT1FROMMP(mp1));
  11286.                 WinSendMsg(hwndOwned, WM_ENABLE,
  11287.                 (MPARAM)TRUE, (MPARAM) NULL);
  11288.                 return 0;
  11289.             .
  11290.             . /* Check for other notification codes. */
  11291.             .
  11292.  
  11293.             }
  11294.  
  11295. An application also can retrieve the handle of a child window by using the 
  11296. WinWindowFromPoint function and supplying a point in the corresponding parent 
  11297. window. 
  11298.  
  11299.  
  11300. ΓòÉΓòÉΓòÉ 11.2.8. Enumerating Top-Level Windows ΓòÉΓòÉΓòÉ
  11301.  
  11302. An application can enumerate all top-level windows in the system by using the 
  11303. WinBeginEnumWindows and WinGetNextWindow functions.  An application also can 
  11304. create a list of all child windows for a given parent window using 
  11305. WinBeginEnumWindows.  This list contains the window handles of immediate child 
  11306. windows.  By using WinGetNextWindow, the application then can retrieve the 
  11307. window handles, one at a time, from the list.  When the application has 
  11308. finished using the list, it must release the list with the WinEndEnumWindows 
  11309. function. 
  11310.  
  11311. The code fragment in the following figure shows how to enumerate all top-level 
  11312. windows (all immediate child windows of the desktop window): 
  11313.  
  11314.  
  11315.     HWND hwndTop;
  11316.     HENUM henum;
  11317.  
  11318.     /* Enumerate all top-level windows.           */
  11319.  
  11320.     henum = WinBeginEnumWindows(HWND_DESKTOP);
  11321.  
  11322.     /* Loop through all enumerated windows.       */
  11323.     while (hwndTop = WinGetNextWindow(henum)) {
  11324.         .
  11325.         . /* Perform desired task on each window. */
  11326.         .
  11327.     }
  11328.  
  11329.     WinEndEnumWindows(henum);
  11330.  
  11331.  
  11332. ΓòÉΓòÉΓòÉ 11.2.9. Moving and Sizing a Window ΓòÉΓòÉΓòÉ
  11333.  
  11334. An application can move a window by using the WinSetWindowPos function and 
  11335. specifying the SWP_MOVE constant.  The function changes the position of the 
  11336. window to the specified position.  The position is always given in coordinates 
  11337. relative to the parent window. 
  11338.  
  11339. The code fragment in the following figure moves the window to the position 
  11340. (10,10): 
  11341.  
  11342.     HWND hwnd;
  11343.  
  11344.     WinSetWindowPos(
  11345.         hwnd,                 /* Window handle                  */
  11346.         NULL,                 /* Not used for moving and sizing */
  11347.         10, 10,               /* New position                   */
  11348.         0, 0,                 /* Not used for moving            */
  11349.         SWP_MOVE);            /* Move window                    */
  11350.  
  11351. An application can set the size of a window by using the WinSetWindowPos 
  11352. function and specifying the SWP_SIZE constant.  WinSetWindowPos changes the 
  11353. width and height of the window to the specified width and height. 
  11354.  
  11355. An application can combine moving and sizing in a single function call, as 
  11356. shown in the following figure. 
  11357.  
  11358.  
  11359.     HWND hwnd;
  11360.  
  11361.     WinSetWindowPos(
  11362.         hwnd,                 /* Window handle                  */
  11363.         NULL,                 /* Not used for moving and sizing */
  11364.         10, 10,               /* New position                   */
  11365.         200, 200,             /* Width and height               */
  11366.         SWP_MOVE | SWP_SIZE); /* Move and size window.          */
  11367.  
  11368. An application can retrieve the current size and position of a window by using 
  11369. the WinQueryWindowPos function.  This function copies the current information 
  11370. to an SWP structure. 
  11371.  
  11372. The code fragment in the following figure uses the current size and position to 
  11373. change the height of the window, leaving the width and position unchanged. 
  11374.  
  11375.  
  11376.     HWND hwnd;
  11377.     SWP swp;
  11378.  
  11379.     WinQueryWindowPos(hwnd, &swp);
  11380.     WinSetWindowPos(
  11381.         hwnd,                /* Window handle                  */
  11382.         NULL,                /* Not used for moving and sizing */
  11383.         0, 0,                /* Not used for sizing            */
  11384.         swp.cx,              /* Current width                  */
  11385.         swp.cy + 200,        /* New height                     */
  11386.         SWP_SIZE);           /* Change the size.               */
  11387.  
  11388. An application also can move and change the size of several windows at once by 
  11389. using the WinSetMultWindowPos function.  This function takes an array of SWP 
  11390. structures.  Each structure specifies the window to be moved or changed. 
  11391.  
  11392. An application can move and size a window even if it is not visible, although 
  11393. the user is not able to see the effects of the moving and sizing until the 
  11394. window is visible. 
  11395.  
  11396.  
  11397. ΓòÉΓòÉΓòÉ 11.2.10. Redrawing Windows ΓòÉΓòÉΓòÉ
  11398.  
  11399. When the system moves a window or changes its size, it can invalidate all or 
  11400. part of that window.  The system attempts to preserve the contents of the 
  11401. window and copy them to the new position; however, if the window's size is 
  11402. increased, the window must fill the area exposed by the size change.  If a 
  11403. window is moved from behind an overlapping window, any area formerly obscured 
  11404. by the other window must be drawn.  In these cases, the system invalidates the 
  11405. exposed areas and sends a WM_PAINT message to the window. 
  11406.  
  11407. An application can require that the system invalidate an entire window every 
  11408. time the window moves or changes size.  To do this, the application sets the 
  11409. CS_SIZEREDRAW class style in the corresponding window class.  Typically, this 
  11410. class style is selected for use in an application that uses a window's current 
  11411. size and position to determine how to draw the window.  For example, a clock 
  11412. application always would draw the face of the clock so that it filled the 
  11413. window exactly. 
  11414.  
  11415. An application also can explicitly specify which parts of the window to 
  11416. preserve during a move or size change.  Before any change is made, the system 
  11417. sends a WM_CALCVALIDRECTS message to windows that do not have the style 
  11418. CS_SIZEREDRAW.  This enables the window procedure to specify what part of the 
  11419. window to save and where to align it after the move or size change. 
  11420.  
  11421.  
  11422. ΓòÉΓòÉΓòÉ 11.2.11. Changing the Z-Order of Windows ΓòÉΓòÉΓòÉ
  11423.  
  11424. An application can move a window to the top or bottom of the z-order by passing 
  11425. the SWP_ZORDER constant to the WinSetWindowPos function. An application 
  11426. specifies where to move the window by specifying the HWND_TOP or HWND_BOTTOM 
  11427. constants. 
  11428.  
  11429. The code fragment in the following figure uses WinSetWindowPos to change the 
  11430. z-order of a window. 
  11431.  
  11432.     HWND hwndParent;
  11433.     HWND hwndNext;
  11434.     HENUM henum;
  11435.  
  11436.         WinSetWindowPos(
  11437.             hwndNext,       /* Next window to move  */
  11438.             HWND_TOP,       /* Put window on top    */
  11439.             0, 0, 0, 0,     /* Not used for z-order */
  11440.             SWP_ZORDER);    /* Change z-order       */
  11441.  
  11442. An application also can specify the window that the given window is to move 
  11443. behind.  In this case, the application specifies the window handle instead of 
  11444. the HWND_TOP or HWND_BOTTOM constant. 
  11445.  
  11446.     HWND hwndParent;
  11447.     HWND hwndNext;
  11448.     HWND hwndExchange;
  11449.     HENUM henum;
  11450.  
  11451.     henum = WinBeginEnumWindows(hwndParent);
  11452.  
  11453.     hwndExchange = WinGetNextWindow(henum);
  11454.  
  11455.                         /* hwndNext has top window;
  11456.             hwndExchange has window under the top. */
  11457.  
  11458.     WinSetWindowPos(
  11459.         hwndNext,       /* Next window to move     */
  11460.         hwndExchange,   /* Put lower window on top */
  11461.         0, 0, 0, 0,     /* Not used for z-order    */
  11462.         SWP_ZORDER);    /* Change z-order          */
  11463.  
  11464.     WinEndEnumWindows(henum);
  11465.  
  11466.  
  11467. ΓòÉΓòÉΓòÉ 11.2.12. Showing or Hiding a Window ΓòÉΓòÉΓòÉ
  11468.  
  11469. An application can show or hide a window by using the WinShowWindow function. 
  11470. This function changes the WS_VISIBLE style of a window to the specified 
  11471. setting.  An application can also use the WinIsWindowVisible function to check 
  11472. the visibility of a window.  This function returns TRUE if the window is 
  11473. visible. 
  11474.  
  11475.  
  11476. ΓòÉΓòÉΓòÉ 11.2.13. Maximizing, Minimizing, and Restoring a Frame Window ΓòÉΓòÉΓòÉ
  11477.  
  11478. An application can maximize, minimize, or restore a frame window by using the 
  11479. WinSetWindowPos function and specifying the constant SWP_MAXIMIZE, 
  11480. SWP_MINIMIZE, or SWP_RESTORE.  Only a frame window can maximize and minimize by 
  11481. default.  For any other window, an application must provide support for these 
  11482. actions in the corresponding window procedure. 
  11483.  
  11484. The following figure shows how to maximize a frame window. 
  11485.  
  11486.  
  11487.     SWP swpCurrent;
  11488.     HWND hwndFrame;
  11489.  
  11490.     WinQueryWindowPos(hwndFrame, &swpCurrent);
  11491.     WinSetWindowPos(
  11492.         hwndFrame,           /* Window handle               */
  11493.         NULL,                /* Not used to maximize        */
  11494.         swpCurrent.x,
  11495.         swpCurrent.y,        /* Stored for restoring window */
  11496.         swpCurrent.cx,
  11497.         swpCurrent.cy,       /* Stored for restoring window */
  11498.         SWP_MAXIMIZE | SWP_SIZE | SWP_MOVE);    /* Maximize */
  11499.  
  11500.  
  11501. ΓòÉΓòÉΓòÉ 11.2.14. Destroying a Window ΓòÉΓòÉΓòÉ
  11502.  
  11503. An application can destroy a window by using the WinDestroyWindow function. The 
  11504. following figure shows how to create and then destroy a control window: 
  11505.  
  11506.     HWND hwndCtrl;
  11507.     HWND hwndParent;
  11508.  
  11509.     hwndCtrl = WinCreateWindow(hwndParent, WC_BUTTON, ...);
  11510.  
  11511.     WinDestroyWindow(hwndCtrl);
  11512.  
  11513.  
  11514. ΓòÉΓòÉΓòÉ 12. Window Classes ΓòÉΓòÉΓòÉ
  11515.  
  11516. A window class determines which styles and which window procedure are given to 
  11517. a window when it is created.  This chapter explains how a PM application 
  11518. creates and uses window classes. 
  11519.  
  11520.  
  11521. ΓòÉΓòÉΓòÉ 12.1. About Window Classes ΓòÉΓòÉΓòÉ
  11522.  
  11523. Every window is a member of a window class.  An application must specify a 
  11524. window class when it creates a window.  Each window class has an associated 
  11525. window procedure that is used by all windows of the same class.  The window 
  11526. procedure handles messages for all windows of that class and, therefore, 
  11527. controls the behavior and appearance of the window. 
  11528.  
  11529. A window class must be registered before an application can create a window of 
  11530. that class.  Registering a window class associates a window procedure and class 
  11531. styles with a class name.  When an application specifies the class name in a 
  11532. window-creation function such as WinCreateWindow, the system creates a window 
  11533. that uses the window procedure and styles associated with the class name. 
  11534.  
  11535. An application can register private classes or use preregistered public window 
  11536. classes. 
  11537.  
  11538.  
  11539. ΓòÉΓòÉΓòÉ 12.1.1. Private Window Classes ΓòÉΓòÉΓòÉ
  11540.  
  11541. A private window class is any class registered within an application.  An 
  11542. application registers a private class by calling the WinRegisterClass function. 
  11543. A private class cannot be shared with other applications.  When an application 
  11544. terminates, the system removes any data associated with the application's 
  11545. private window classes. 
  11546.  
  11547. An application can register a private class anytime but, typically, does so as 
  11548. part of application initialization.  To register a private class during 
  11549. application initialization, the application also must call WinInitialize and, 
  11550. usually, WinCreateMsgQueue before class registration. 
  11551.  
  11552. An application cannot de-register a private window class; it remains registered 
  11553. and available until the application terminates. 
  11554.  
  11555. When an application registers a private window class, it must supply the 
  11556. following information: 
  11557.  
  11558.      Class name 
  11559.      Class styles 
  11560.      Window procedure 
  11561.      Window data size 
  11562.  
  11563.  
  11564. ΓòÉΓòÉΓòÉ 12.1.1.1. Class Name ΓòÉΓòÉΓòÉ
  11565.  
  11566. The class name identifies the window class.  The application uses this name in 
  11567. the window-creation functions to specify the class of the window being created. 
  11568. The class name can be a character string or an atom, and it must be unique 
  11569. within the application.  The system checks as to whether a public class or a 
  11570. class already registered by the application has the same name.  If the class 
  11571. name is not unique to that application, the system returns an error. 
  11572.  
  11573.  
  11574. ΓòÉΓòÉΓòÉ 12.1.1.2. Class Styles ΓòÉΓòÉΓòÉ
  11575.  
  11576. Each window class has one or more values, called class styles, that tell the 
  11577. system which initial window styles to give a window created with that class. 
  11578. An application sets the class styles for a private window class when it 
  11579. registers the class.  Once a class is registered, the application cannot change 
  11580. the styles. 
  11581.  
  11582. An application can specify one or more of the following class styles in the 
  11583. WinRegisterClass function, combining them as necessary by using the bitwise OR 
  11584. operator: 
  11585.  
  11586. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  11587. ΓöéStyle Name     ΓöéDescription                                  Γöé
  11588. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11589. ΓöéCS_CLIPCHILDRENΓöéPrevents a window from painting over its     Γöé
  11590. Γöé               Γöéchild windows, but increases the time        Γöé
  11591. Γöé               Γöénecessary to calculate the visible region.   Γöé
  11592. Γöé               ΓöéThis style usually is not necessary, because Γöé
  11593. Γöé               Γöéif the parent and child windows overlap and  Γöé
  11594. Γöé               Γöéare both invalidated, the operating system   Γöé
  11595. Γöé               Γöédraws the parent window before drawing the   Γöé
  11596. Γöé               Γöéchild window. If the child window is         Γöé
  11597. Γöé               Γöéinvalidated independently of the parent      Γöé
  11598. Γöé               Γöéwindow, the system redraws only the child    Γöé
  11599. Γöé               Γöéwindow. If the update region of the parent   Γöé
  11600. Γöé               Γöéwindow does not intersect the child window,  Γöé
  11601. Γöé               Γöédrawing the parent window causes the child   Γöé
  11602. Γöé               Γöéwindow to be redrawn. This style is useful toΓöé
  11603. Γöé               Γöéprevent a child window containing a complex  Γöé
  11604. Γöé               Γöégraphic from being redrawn unnecessarily.    Γöé
  11605. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11606. ΓöéCS_CLIPSIBLINGSΓöéPrevents a window from painting over its     Γöé
  11607. Γöé               Γöésibling windows. This style protects sibling Γöé
  11608. Γöé               Γöéwindows but increases the time necessary to  Γöé
  11609. Γöé               Γöécalculate the visible region. This style is  Γöé
  11610. Γöé               Γöéappropriate for windows that overlap and haveΓöé
  11611. Γöé               Γöéthe same parent window.                      Γöé
  11612. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11613. ΓöéCS_FRAME       ΓöéIdentifies the window as a frame window.     Γöé
  11614. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11615. ΓöéCS_HITTEST     ΓöéDirects the operating system to send         Γöé
  11616. Γöé               ΓöéWM_HITTEST messages to the window whenever   Γöé
  11617. Γöé               Γöéthe mouse pointer moves in the window.       Γöé
  11618. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11619. ΓöéCS_MOVENOTIFY  ΓöéDirects the system to send WM_MOVE messages  Γöé
  11620. Γöé               Γöéto the window whenever the user moves the    Γöé
  11621. Γöé               Γöéwindow.                                      Γöé
  11622. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11623. ΓöéCS_PARENTCLIP  ΓöéExtends a window's visible region to include Γöé
  11624. Γöé               Γöéthat of its parent window. This style        Γöé
  11625. Γöé               Γöésimplifies the calculation of the child      Γöé
  11626. Γöé               Γöéwindow's visible region but, potentially, is Γöé
  11627. Γöé               Γöédangerous, because the parent window's       Γöé
  11628. Γöé               Γöévisible region is usually larger than the    Γöé
  11629. Γöé               Γöéchild window.                                Γöé
  11630. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11631. ΓöéCS_SAVEBITS    ΓöéSaves the screen area under a window as a bitΓöé
  11632. Γöé               Γöémap. When the user hides or moves the window,Γöé
  11633. Γöé               Γöéthe system restores the image by copying the Γöé
  11634. Γöé               Γöébits; there is no need to add the area to theΓöé
  11635. Γöé               Γöéuncovered window's update region. This style Γöé
  11636. Γöé               Γöécan improve system performance, but also can Γöé
  11637. Γöé               Γöéconsume a great deal of memory. It is        Γöé
  11638. Γöé               Γöérecommended only for transient windows such  Γöé
  11639. Γöé               Γöéas menus and dialog windows-not for main     Γöé
  11640. Γöé               Γöéapplication windows.                         Γöé
  11641. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11642. ΓöéCS_SIZEREDRAW  ΓöéCauses the window to receive a WM_PAINT      Γöé
  11643. Γöé               Γöémessage and be completely invalidated        Γöé
  11644. Γöé               Γöéwhenever the window is resized, even if it isΓöé
  11645. Γöé               Γöémade smaller. (Typically, only the uncovered Γöé
  11646. Γöé               Γöéarea of a window is invalidated when a windowΓöé
  11647. Γöé               Γöéis resized.) This class style is useful when Γöé
  11648. Γöé               Γöéan application scales graphics to fill the   Γöé
  11649. Γöé               Γöéwindow.                                      Γöé
  11650. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11651. ΓöéCS_SYNCPAINT   ΓöéCauses the window to receive WM_PAINT        Γöé
  11652. Γöé               Γöémessages immediately after a part of the     Γöé
  11653. Γöé               Γöéwindow becomes invalid. Without this style,  Γöé
  11654. Γöé               Γöéthe window receives WM_PAINT messages only ifΓöé
  11655. Γöé               Γöéno other message is waiting to be processed. Γöé
  11656. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  11657.  
  11658.  
  11659. ΓòÉΓòÉΓòÉ 12.1.1.3. Window Procedure ΓòÉΓòÉΓòÉ
  11660.  
  11661. The window procedure for a window class processes all messages sent or posted 
  11662. to all windows of that class.  It is the chief component of the window class 
  11663. because it controls the appearance and behavior of each window created with the 
  11664. class.  Window procedures are shared by all windows of a class, so an 
  11665. application must ensure that no conflicts arise when two windows of the same 
  11666. class attempt to access the same global data.  In other words, the window 
  11667. procedure must protect global data and other shared resources. 
  11668.  
  11669.  
  11670. ΓòÉΓòÉΓòÉ 12.1.1.4. Window Data Size ΓòÉΓòÉΓòÉ
  11671.  
  11672. The system creates a window data structure for each window, which includes 
  11673. extra space that an application can use to store additional data about a 
  11674. window.  An application specifies the number of extra bytes to allocate in the 
  11675. WinRegisterClass function.  All windows of the same class have the same amount 
  11676. of window data space. 
  11677.  
  11678. An application can store window data in a window's data structure by using the 
  11679. WinSetWindowUShort and WinSetWindowULong functions.  It can retrieve data by 
  11680. using the WinQueryWindowUShort and WinQueryWindowULong functions. 
  11681.  
  11682.  
  11683. ΓòÉΓòÉΓòÉ 12.1.1.5. Custom Window Styles ΓòÉΓòÉΓòÉ
  11684.  
  11685. An application that registers a window class also can support its own set of 
  11686. styles for windows of that class.  Standard window styles-for example, 
  11687. WS_VISIBLE and WS_SYNCPAINT-still apply to these windows.  A window style is a 
  11688. 32-bit integer, and only the high 16 bits are used for the standard window 
  11689. styles; an application can use the low 16 bits for custom styles specific to a 
  11690. window class. 
  11691.  
  11692. The operating system has unique window styles for all preregistered window 
  11693. classes.  Styles such as FS_BORDER and BS_PUSHBUTTON are processed by the 
  11694. window procedure for the corresponding class.  This means that an application 
  11695. can build the support for its own window styles into the window procedure for 
  11696. its private class.  A window style designed for one window class will not work 
  11697. with another window class. 
  11698.  
  11699.  
  11700. ΓòÉΓòÉΓòÉ 12.1.2. Public Window Classes ΓòÉΓòÉΓòÉ
  11701.  
  11702. Public window classes are registered during system initialization.  Their 
  11703. window procedures are in dynamic link libraries.  Therefore, to use a public 
  11704. window class, an application need not register it.  Nor does the application 
  11705. need to import the window procedure for a public window class because the 
  11706. system resolves references to the window procedure. 
  11707.  
  11708. An application cannot use a public window class name when it registers a 
  11709. private window class. 
  11710.  
  11711.  
  11712. ΓòÉΓòÉΓòÉ 12.1.2.1. System-Defined Public Window Classes ΓòÉΓòÉΓòÉ
  11713.  
  11714. The system provides a number of public window classes that support menus, frame 
  11715. windows, control windows, and dialog windows.  An application can create a 
  11716. window of a system-defined public window class by specifying one of the 
  11717. following class name constants in a call to WinCreateWindow: 
  11718.  
  11719. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  11720. ΓöéClass Name     ΓöéDescription                                  Γöé
  11721. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11722. ΓöéWC_BUTTON      ΓöéConsists of buttons and boxes the user can   Γöé
  11723. Γöé               Γöéselect by clicking the pointing device or    Γöé
  11724. Γöé               Γöéusing the keyboard.                          Γöé
  11725. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11726. ΓöéWC_COMBOBOX    ΓöéCreates a combination-box control, which     Γöé
  11727. Γöé               Γöécombines a list-box control and an           Γöé
  11728. Γöé               Γöéentry-field control. It enables the user to  Γöé
  11729. Γöé               Γöéenter data either by typing in the entry     Γöé
  11730. Γöé               Γöéfield or by choosing from the list in the    Γöé
  11731. Γöé               Γöélist box.                                    Γöé
  11732. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11733. ΓöéWC_CONTAINER   ΓöéCreates a control in which the user can groupΓöé
  11734. Γöé               Γöéobjects in a logical manner.  A container canΓöé
  11735. Γöé               Γöédisplay those objects in various formats or  Γöé
  11736. Γöé               Γöéviews.  The container control supports drag  Γöé
  11737. Γöé               Γöéand drop so the user can place information inΓöé
  11738. Γöé               Γöéa container by simply dragging and dropping. Γöé
  11739. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11740. ΓöéWC_ENTRYFIELD  ΓöéConsists of a single line of text that the   Γöé
  11741. Γöé               Γöéuser can edit.                               Γöé
  11742. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11743. ΓöéWC_FRAME       ΓöéA composite window class that can contain    Γöé
  11744. Γöé               Γöéchild windows of many of the other window    Γöé
  11745. Γöé               Γöéclasses.                                     Γöé
  11746. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11747. ΓöéWC_LISTBOX     ΓöéPresents a list of text items from which the Γöé
  11748. Γöé               Γöéuser can make selections.                    Γöé
  11749. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11750. ΓöéWC_MENU        ΓöéPresents a list of items that can be         Γöé
  11751. Γöé               Γöédisplayed horizontally as menu bars, or      Γöé
  11752. Γöé               Γöévertically as pull-down menus.  Usually menusΓöé
  11753. Γöé               Γöéare used to provide a command interface to   Γöé
  11754. Γöé               Γöéapplications.                                Γöé
  11755. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11756. ΓöéWC_NOTEBOOK    ΓöéCreates a control for the user that is       Γöé
  11757. Γöé               Γöédisplayed as a number of pages.  The top pageΓöé
  11758. Γöé               Γöéis visible, and the others are hidden, with  Γöé
  11759. Γöé               Γöétheir presence being indicated by a visible  Γöé
  11760. Γöé               Γöéedge on each of the back pages.              Γöé
  11761. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11762. ΓöéWC_SCROLLBAR   ΓöéConsists of window scroll bars that let the  Γöé
  11763. Γöé               Γöéuser scroll the contents of the associated   Γöé
  11764. Γöé               Γöéwindow.                                      Γöé
  11765. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11766. ΓöéWC_SLIDER      ΓöéCreates a control that is usable for         Γöé
  11767. Γöé               Γöéproducing approximate (analog) values or     Γöé
  11768. Γöé               Γöéproperties.  Scroll bars were used for this  Γöé
  11769. Γöé               Γöéfunction in the past, but the slider providesΓöé
  11770. Γöé               Γöéa more flexible method of achieving the same Γöé
  11771. Γöé               Γöéresult, with less programming effort.        Γöé
  11772. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11773. ΓöéWC_SPINBUTTON  ΓöéCreates a control that presents itself to theΓöé
  11774. Γöé               Γöéuser as a scrollable ring of choices, giving Γöé
  11775. Γöé               Γöéthe user quick access to the data.  The user Γöé
  11776. Γöé               Γöéis presented only one item at a time, so the Γöé
  11777. Γöé               Γöéspin button should be used with data that is Γöé
  11778. Γöé               Γöéintuitively related.                         Γöé
  11779. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11780. ΓöéWC_STATIC      ΓöéSimple display items that do not respond to  Γöé
  11781. Γöé               Γöékeyboard or pointing device events.          Γöé
  11782. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11783. ΓöéWC_TITLEBAR    ΓöéDisplays the window title or caption and letsΓöé
  11784. Γöé               Γöéthe user move the window's owner.            Γöé
  11785. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11786. ΓöéWC_VALUESET    ΓöéCreates a control similar in function to     Γöé
  11787. Γöé               Γöéradio buttons but provides additional        Γöé
  11788. Γöé               Γöéflexibility to display graphical, textual,   Γöé
  11789. Γöé               Γöéand numeric formats.  The values set with    Γöé
  11790. Γöé               Γöéthis control are mutually exclusive.         Γöé
  11791. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  11792.  
  11793. Each system-defined public window class has a corresponding set of window 
  11794. styles that an application can use to customize a window of that class.  For 
  11795. example, a window created with the WC_BUTTON class has styles that include 
  11796. BS_PUSHBUTTON and BS_CHECKBOX.  Window styles enable you to customize aspects 
  11797. of a window's behavior and appearance.  The application specifies the window 
  11798. styles in the WinCreateWindow function. 
  11799.  
  11800.  
  11801. ΓòÉΓòÉΓòÉ 12.1.2.2. Custom Public Window Classes ΓòÉΓòÉΓòÉ
  11802.  
  11803. An application can create a custom public window class, but it must do so 
  11804. during system initialization.  Only the shell can register a public window 
  11805. class, and it can do so only when the system starts.  Registering a public 
  11806. window class requires a special load entry in the os2.ini file.  That entry 
  11807. instructs the shell to load a dynamic link library whose initialization routine 
  11808. registers the window class.  Custom public window classes must be registered 
  11809. using WinRegisterClass and must have the class style CS_PUBLIC.  If a custom 
  11810. public window class registered this way has the same name as an existing public 
  11811. window class, the custom class replaces the original class. 
  11812.  
  11813. If a dynamic link library replaces an existing public window class, the library 
  11814. can save the address of the original window procedure and use the address to 
  11815. subclass the original window class.  The dynamic link library retrieves the 
  11816. original window procedure address using the WinQueryClassInfo function.  The 
  11817. custom window procedure then passes unprocessed messages to the original window 
  11818. procedure instead of calling WinDefWindowProc. 
  11819.  
  11820. When subclassing a public window class, the custom public window procedure must 
  11821. not make the window data size smaller than the original window data size, 
  11822. because all public window classes that the operating system defines use 4 extra 
  11823. bytes for storing a pointer to custom window data.  This size is guaranteed 
  11824. only for public window classes defined by the operating system dynamic link 
  11825. libraries. 
  11826.  
  11827.  
  11828. ΓòÉΓòÉΓòÉ 12.1.3. Class Data ΓòÉΓòÉΓòÉ
  11829.  
  11830. An application can examine public window class data by using the 
  11831. WinQueryClassInfo and WinQueryClassName functions.  An application retrieves 
  11832. the name of the class for a given window by using the WinQueryClassName 
  11833. function.  If the window is one of the preregistered public window classes, the 
  11834. name returned is in the form #nnnnn, where nnnnn is up to 5 digits, 
  11835. representing the value of the window class constant.  Using this window class 
  11836. name, the application can call WinQueryClassInfo to retrieve the window class 
  11837. data.  WinQueryClassInfo copies the class style, window procedure address, and 
  11838. window data size to a CLASSINFO data structure. 
  11839.  
  11840.  
  11841. ΓòÉΓòÉΓòÉ 12.2. Using Window Classes ΓòÉΓòÉΓòÉ
  11842.  
  11843. This section explains how to perform the following tasks: 
  11844.  
  11845.      Register a private window class 
  11846.      Register an imported window procedure 
  11847.  
  11848.  
  11849. ΓòÉΓòÉΓòÉ 12.2.1. Registering a Private Window Class ΓòÉΓòÉΓòÉ
  11850.  
  11851. An application can register a private window class at any time by using the 
  11852. WinRegisterClass function.  You must define the window procedure in the 
  11853. application, choose a unique name, and set the window styles for the class. The 
  11854. following code fragment shows how to register the window class name 
  11855. "MyPrivateClass": 
  11856.  
  11857.  
  11858.     MRESULT EXPENTRY ClientWndProc(HWND hwnd,ULONG msg,MPARAM mp1, MPARAM mp2);
  11859.  
  11860.     HAB hab;
  11861.  
  11862.     WinRegisterClass(hab,      /* Anchor block handle            */
  11863.         "MyPrivateClass",      /* Name of class being registered */
  11864.         ClientWndProc,         /* Window procedure for class     */
  11865.         CS_SIZEREDRAW |        /* Class style                    */
  11866.         CS_HITTEST,            /* Class style                    */
  11867.         0);                    /* Extra bytes to reserve         */
  11868.  
  11869.  
  11870. ΓòÉΓòÉΓòÉ 13. Window Procedures ΓòÉΓòÉΓòÉ
  11871.  
  11872. Windows have an associated window procedure-a function that processes all 
  11873. messages sent or posted to a window.  Every aspect of a window's appearance and 
  11874. behavior depends on the window procedure's response to the messages.  This 
  11875. chapter explains how window procedures function, in general, and describes the 
  11876. default window procedure. 
  11877.  
  11878.  
  11879. ΓòÉΓòÉΓòÉ 13.1. About Window Procedures ΓòÉΓòÉΓòÉ
  11880.  
  11881. Every window belongs to a window class that determines which window procedure a 
  11882. particular window uses to process its messages.  All windows of the same class 
  11883. use the same window procedure.  For example, the operating system defines a 
  11884. window procedure for the frame window class (WC_FRAME), and all frame windows 
  11885. use that window procedure. 
  11886.  
  11887. An application typically defines at least one new window class and an 
  11888. associated window procedure.  Then, the application can create many windows of 
  11889. that class, all of which use the same window procedure.  This means that the 
  11890. same piece of code can be called from several sources simultaneously; 
  11891. therefore, you must be careful when modifying shared resources from a window 
  11892. procedure. 
  11893.  
  11894. Dialog procedures have the same structure and function as window procedures. 
  11895. The primary difference between a dialog procedure and a window procedure is the 
  11896. absence of a client window in the dialog procedure; that is, the controls in a 
  11897. dialog procedure are the immediate child windows of the frame, whereas the 
  11898. controls in a normal window are the grandchildren of the frame.  This makes 
  11899. significant differences in the code between the two; for example, 
  11900. WinSendDlgItemMsg does not work from a client window if you pass the client 
  11901. window handle as the first parameter. 
  11902.  
  11903.  
  11904. ΓòÉΓòÉΓòÉ 13.1.1. Structure of a Window Procedure ΓòÉΓòÉΓòÉ
  11905.  
  11906. A window procedure is a function that takes 4 arguments and returns a 32-bit 
  11907. pointer.  The arguments of a window procedure consist of a window handle, a 
  11908. ULONG message identifier, and two arguments, called message parameters, that 
  11909. are declared with the MPARAM data type.  The system defines an MPARAM as a 
  11910. 32-bit pointer to a VOID data type (a generic pointer).  The message parameters 
  11911. actually might contain any of the standard data types.  The message parameters 
  11912. are interpreted differently,depending on the value of the message identifier. 
  11913. The operating system includes several macros that enable the application to 
  11914. cast the information from the MPARAM values into the actual data type. 
  11915. SHORT1FROMMP, for example, extracts a 16-bit value from a 32-bit MPARAM. The 
  11916. window-procedure arguments are described in the following table: 
  11917.  
  11918. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  11919. ΓöéArgument       ΓöéDescription                                  Γöé
  11920. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11921. Γöéhwnd           ΓöéHandle of the window receiving the message.  Γöé
  11922. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11923. Γöémsg            ΓöéMessage identifier. The message will         Γöé
  11924. Γöé               Γöécorrespond to one of the predefined constantsΓöé
  11925. Γöé               Γöé(for example, WM_CREATE) defined in the      Γöé
  11926. Γöé               Γöésystem include files or be an                Γöé
  11927. Γöé               Γöéapplication-defined message identifier.  The Γöé
  11928. Γöé               Γöévalue of an application-defined message      Γöé
  11929. Γöé               Γöéidentifier must be greater than the value of Γöé
  11930. Γöé               ΓöéWM_USER, and less than or equal to 0xffff.   Γöé
  11931. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  11932. Γöémp1,mp2        ΓöéMessage parameters. Their interpretation     Γöé
  11933. Γöé               Γöédepends on the particular message.           Γöé
  11934. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  11935.  
  11936. The return value of a window procedure is defined as an MRESULT data type.  The 
  11937. interpretation of the return value depends on the particular message.  Consult 
  11938. the description of each message to determine the appropriate return value. 
  11939.  
  11940.  
  11941. ΓòÉΓòÉΓòÉ 13.1.2. Default Window Procedure ΓòÉΓòÉΓòÉ
  11942.  
  11943. All windows in the system share certain fundamental behavior, defined in the 
  11944. default window-procedure function, WinDefWindowProc.  The default window 
  11945. procedure provides the minimal functionality for a window.  An 
  11946. application-defined window procedure should pass any messages it does not 
  11947. process to WinDefWindowProc for default processing. 
  11948.  
  11949.  
  11950. ΓòÉΓòÉΓòÉ 13.1.3. Window-Procedure Subclassing ΓòÉΓòÉΓòÉ
  11951.  
  11952. Subclassing enables an application to intercept and process messages sent or 
  11953. posted to a window before that window has a chance to process them. 
  11954. Subclassing most often is used to add functionality to a particular window or 
  11955. to alter a window's default behavior. 
  11956.  
  11957. An application subclasses a window by using the WinSubclassWindow function to 
  11958. replace the window's original window procedure with an application-defined 
  11959. window procedure.  Thereafter, the new window procedure processes any messages 
  11960. that are sent or posted to the window.  If the new window procedure does not 
  11961. process a particular message, it must pass the message to the original window 
  11962. procedure, not to WinDefWindowProc, for default processing. 
  11963.  
  11964.  
  11965. ΓòÉΓòÉΓòÉ 13.2. Using Window Procedures ΓòÉΓòÉΓòÉ
  11966.  
  11967. This section explains how to: 
  11968.  
  11969.      Design a window procedure 
  11970.      Associate a window procedure with a window class 
  11971.      Subclass a window 
  11972.  
  11973.  
  11974. ΓòÉΓòÉΓòÉ 13.2.1. Designing a Window Procedure ΓòÉΓòÉΓòÉ
  11975.  
  11976. The following code fragment shows the structure of a typical window procedure 
  11977. and how to use the message argument in a switch statement, with individual 
  11978. messages handled by separate case statements.  Notice that each case returns a 
  11979. specific value for each message.  For messages that it does not handle itself, 
  11980. the window procedure calls WinDefWindowProc. 
  11981.  
  11982.     MRESULT ClientWndProc(
  11983.     HWND hwnd,
  11984.     ULONG msg,
  11985.     MPARAM mp1,
  11986.     MPARAM mp2)
  11987.     {
  11988.         /* Define local variables here, if required. */
  11989.         switch (msg) {
  11990.             case WM_CREATE:
  11991.  
  11992.         /* Initialize private window data.           */
  11993.             return (MRESULT) FALSE;
  11994.  
  11995.             case WM_PAINT:
  11996.  
  11997.         /* Paint the window.                         */
  11998.             return 0;
  11999.  
  12000.             case WM_DESTROY:
  12001.  
  12002.         /* Clean up private window data.             */
  12003.             return 0;
  12004.  
  12005.             default:
  12006.             break;
  12007.          }
  12008.          return WinDefWindowProc (hwnd, msg, mp1, mp2);
  12009.     }
  12010.  
  12011. A dialog window procedure does not receive the WM_CREATE message; however, it 
  12012. does receive a WM_INITDLG message when all of its control windows have been 
  12013. created. At the very least, a window procedure should handle the WM_PAINT 
  12014. message to draw itself.  Typically, it should handle mouse and keyboard 
  12015. messages as well.  Consult the descriptions of individual messages to determine 
  12016. whether your window procedure should handle them. 
  12017.  
  12018. An application can call WinDefWindowProc as part of the processing of a 
  12019. message.  In such a case, the application can modify the message parameters 
  12020. before passing the message to WinDefWindowProc or can continue with the default 
  12021. processing after performing its own operations. 
  12022.  
  12023.  
  12024. ΓòÉΓòÉΓòÉ 13.2.2. Associating a Window Procedure with a Window Class ΓòÉΓòÉΓòÉ
  12025.  
  12026. To associate a window procedure with a window class, an application must pass a 
  12027. pointer to that window procedure to the WinRegisterClass function.  Once an 
  12028. application has registered the window procedure, the procedure automatically is 
  12029. associated with each new window created with that class. 
  12030.  
  12031. The following code fragment shows how to associate the window procedure in the 
  12032. previous example with a window class: 
  12033.  
  12034.     HAB hab;
  12035.     CHAR szClientClass[] = "My Window Class";
  12036.  
  12037.     WinRegisterClass(hab,      /* Anchor-block handle  */
  12038.         szClientClass,         /* Class name           */
  12039.         ClientWndProc,         /* Pointer to procedure */
  12040.         CS_SIZEREDRAW,         /* Class style          */
  12041.         0);                    /* Window data          */
  12042.  
  12043.  
  12044. ΓòÉΓòÉΓòÉ 13.2.3. Subclassing a Window ΓòÉΓòÉΓòÉ
  12045.  
  12046. To subclass a window, an application calls the WinSubclassWindow function, 
  12047. specifying the handle of the window to subclass and a pointer to the new window 
  12048. procedure.  The WinSubclassWindow function returns a pointer to the original 
  12049. window procedure; the application can use this pointer to pass unprocessed 
  12050. messages to the original procedure. The following code fragment subclasses a 
  12051. push button control window.  The new window procedure generates a beep whenever 
  12052. the user clicks the push button. 
  12053.  
  12054.     PFNWP pfnPushBtn;
  12055.     CHAR szCancel[] = "Cancel";
  12056.     HWND hwndClient;
  12057.     HWND hwndPushBtn;
  12058.         .
  12059.         .
  12060.         .
  12061.  
  12062.     /* Create a push button control.                  */
  12063.     hwndPushBtn = WinCreateWindow(
  12064.         hwndClient,     /* Parent-window handle       */
  12065.         WC_BUTTON,      /* Window class               */
  12066.         szCancel,       /* Window text                */
  12067.         WS_VISIBLE   |  /* Window style               */
  12068.         WS_SYNCPAINT |  /* Window style               */
  12069.         BS_PUSHBUTTON,  /* Button style               */
  12070.         50, 50,         /* Physical position          */
  12071.         70, 30,         /* Width and height           */
  12072.         hwndClient,     /* Owner-window handle        */
  12073.         HWND_TOP,       /* Z-order position           */
  12074.         1,              /* Window identifier          */
  12075.         NULL,           /* No control data            */
  12076.         NULL);          /* No presentation parameters */
  12077.  
  12078.     /* Subclass the push button control.              */
  12079.     pfnPushBtn = WinSubclassWindow(hwndPushBtn,
  12080.         SubclassPushBtnProc);
  12081.         .
  12082.         .
  12083.         .
  12084. }
  12085.     /* This procedure subclasses the push button.     */
  12086.     MRESULT EXPENTRY SubclassPushBtnProc(HWND hwnd,ULONG msg,MPARAM mp1, MPARAM mp2)
  12087.     {
  12088.         switch (msg) {
  12089.  
  12090.     /* Beep when the user clicks the push button.     */
  12091.             case WM_BUTTON1DOWN:
  12092.                 DosBeep(1000, 250);
  12093.                 break;
  12094.  
  12095.             default:
  12096.                 break;
  12097.         }
  12098.  
  12099.     /* Pass all messages to the original window procedure. */
  12100.         return (MRESULT) pfnPushBtn(hwnd, msg, mp1, mp2);
  12101.     }
  12102.  
  12103.  
  12104. ΓòÉΓòÉΓòÉ 14. Window Timers ΓòÉΓòÉΓòÉ
  12105.  
  12106. A window timer enables an application to post timer messages at specified 
  12107. intervals.  This chapter describes how to use window timers in PM applications. 
  12108.  
  12109.  
  12110. ΓòÉΓòÉΓòÉ 14.1. About Window Timers ΓòÉΓòÉΓòÉ
  12111.  
  12112. A window timer causes the system to post WM_TIMER messages to a message queue 
  12113. at specified time intervals called timeout values.  A timeout value is 
  12114. expressed in milliseconds. 
  12115.  
  12116. An application starts the timer for a given window, specifying the timeout 
  12117. value.  The system counts down approximately that number of milliseconds and 
  12118. posts a WM_TIMER message to the message queue for the corresponding window. 
  12119. The system repeats the countdown-post cycle continuously until the application 
  12120. stops the timer. 
  12121.  
  12122. The timeout value can be any value in the range from 0 through 4,294,967,295 
  12123. (full magnitude of ULONG) for OS/2 Version 3; for previous versions, the 
  12124. maximum value is 65535. However, the operating system cannot guarantee that all 
  12125. values are accurate.  The actual timeout depends on how often the application 
  12126. retrieves messages from the queue and the system clock rate.  In many 
  12127. computers, the operating system clock ticks about every 50 milliseconds, but 
  12128. this can vary widely from computer to computer.  In general, a timer message 
  12129. cannot be posted more frequently than every system clock tick.  To make the 
  12130. system post a timer message as often as possible, an application can set the 
  12131. timeout value to 0. 
  12132.  
  12133. An application starts a timer by using the WinStartTimer function.  If a window 
  12134. handle is given, the timer is created for that window.  In such case, the 
  12135. WinDispatchMsg function dispatches the WM_TIMER message to the given window 
  12136. when the message is retrieved from the message queue.  If a NULL window handle 
  12137. is given, it is up to the application to check the message queue for WM_TIMER 
  12138. messages and dispatch them to the appropriate window. 
  12139.  
  12140. A new timer starts counting down as soon as it is created.  An application can 
  12141. reset or change a timer's timeout value in subsequent calls to the 
  12142. WinStartTimer function.  To stop a timer, an application can use the 
  12143. WinStopTimer function. 
  12144.  
  12145. The system contains a limited number of timers that must be shared among all PM 
  12146. applications; each application should use as few timers as possible.  An 
  12147. application can determine how many timers currently are available by checking 
  12148. the SV_CTIMERS system value. 
  12149.  
  12150. Every timer has a unique timer identifier.  An application can request that a 
  12151. timer be created with a particular identifier or have the system choose a 
  12152. unique value.  When a WM_TIMER message is received, the timer identifier is 
  12153. contained in the first message parameter.  Timer identifiers enable an 
  12154. application to determine the source of the WM_TIMER message. Three timer 
  12155. identifiers are reserved by and for the system and cannot be used by 
  12156. applications; these system timer identifiers and their symbolic constants are 
  12157. shown in the following table: 
  12158.  
  12159. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  12160. ΓöéValue          ΓöéMeaning                                      Γöé
  12161. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12162. ΓöéTID_CURSOR     ΓöéIdentifies the timer that controls cursor    Γöé
  12163. Γöé               Γöéblinking. Its timeout value is stored in the Γöé
  12164. Γöé               Γöéos2.ini file under the CursorBlinkRate       Γöé
  12165. Γöé               Γöékeyname in the PM_ControlPanel section.      Γöé
  12166. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12167. ΓöéTID_FLASHWINDOWΓöéIdentifies the window-flashing timer.        Γöé
  12168. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12169. ΓöéTID_SCROLL     ΓöéIdentifies the scroll-bar repetition timer   Γöé
  12170. Γöé               Γöéthat controls scroll-bar response when the   Γöé
  12171. Γöé               Γöémouse button or a key is held down.  Its     Γöé
  12172. Γöé               Γöétimeout value is specified by the system     Γöé
  12173. Γöé               Γöévalue SV_SCROLLRATE.                         Γöé
  12174. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  12175.  
  12176. WM_TIMER messages, like WM_PAINT and semaphore messages, are not actually 
  12177. posted to a message queue.  Instead, when the time elapses, the system sets a 
  12178. record in the queue indicating which timer message was posted.  The system 
  12179. builds the WM_TIMER message when the application retrieves the message from the 
  12180. queue. 
  12181.  
  12182. Although a timer message may be in the queue, if there are any messages with 
  12183. higher priority in the queue, the application retrieves those messages first. 
  12184. If the time elapses again before the message is retrieved, the system does not 
  12185. create a separate record for this timer, meaning that the application should 
  12186. not depend on the timer messages being processed at precise intervals.  To 
  12187. check the accuracy of the message, an application can retrieve the actual 
  12188. system time by using the WinGetCurrentTime function.  Comparing the actual time 
  12189. with the time of the previous timer message is useful in determining what 
  12190. action to take for the timer. 
  12191.  
  12192.  
  12193. ΓòÉΓòÉΓòÉ 14.2. Using Window Timers ΓòÉΓòÉΓòÉ
  12194.  
  12195. There are two methods of using window timers.  In the first method, you start 
  12196. the timer by using the WinStartTimer function, supplying the window handle and 
  12197. timer identifier.  The function associates the timer with the specified window. 
  12198. The following code fragment starts two timers:  the first timer is set for 
  12199. every half second (500 milliseconds); the second, for every two seconds (2000 
  12200. milliseconds). 
  12201.  
  12202.  
  12203.     WinStartTimer(hab, /* Anchor-block handle */
  12204.         hwnd,          /* Window handle       */
  12205.         ID_TIMER1,     /* Timer identifier    */
  12206.         500);          /* 500 milliseconds    */
  12207.  
  12208.     WinStartTimer(hab, /* Anchor-block handle */
  12209.         hwnd,          /* Window handle       */
  12210.         ID_TIMER2,     /* Timer identifier    */
  12211.         2000);         /* 2000 milliseconds   */
  12212.  
  12213. Once these timers are started, the WinDispatchMsg function dispatches WM_TIMER 
  12214. messages to the appropriate window.  To process these messages, add a WM_TIMER 
  12215. case to the window procedure for the given window.  By checking the first 
  12216. parameter of the WM_TIMER message, you can identify a particular timer, then 
  12217. carry out the actions related to it.  The following code fragment shows how to 
  12218. process WM_TIMER messages: 
  12219.  
  12220.  
  12221.     case WM_TIMER:
  12222.         switch (SHORT1FROMMP(mp1)) { /* Obtains timer identifier */
  12223.             case ID_TIMER1:
  12224.                 .
  12225.                 . /* Carry out timer-related tasks.              */
  12226.                 .
  12227.                 return 0;
  12228.  
  12229.             case ID_TIMER2:
  12230.                 .
  12231.                 . /* Carry out timer-related tasks.              */
  12232.                 .
  12233.                 return 0;
  12234.         }
  12235.  
  12236. In the second method of using a timer, you specify NULL as the hwnd parameter 
  12237. of the WinStartTimer call.  The system starts a timer that has no associated 
  12238. window and assigns an arbitrary timer identifier.  The following code fragment 
  12239. starts two window timers using this method: 
  12240.  
  12241.     ULONG idTimer1, idTimer2;
  12242.  
  12243.     idTimer1 = WinStartTimer(hab, (HWND) NULL, 0, 500);
  12244.     idTimer2 = WinStartTimer(hab, (HWND) NULL, 0, 2000);
  12245.  
  12246. These timers have no associated window, so the application must check the 
  12247. message queue for WM_TIMER messages and dispatch them to the appropriate window 
  12248. procedure.  The following code fragment shows a message loop that handles the 
  12249. window timers: 
  12250.  
  12251.     HWND hwndTimerHandler; /* Handle of window for timer messages */
  12252.     QMSG qmsg;             /* Queue-message structure             */
  12253.  
  12254.     while (WinGetMsg(hab, &qmsg, (HWND) NULL, 0, 0)) {
  12255.         if (qmsg.msg == WM_TIMER)
  12256.             qmsg.hwnd = hwndTimerHandler;
  12257.         WinDispatchMsg(hab, &qmsg);
  12258.     }
  12259.  
  12260. You can use the WinStopTimer function at any time to stop a timer.  The 
  12261. following code fragment demonstrates how to stop a timer: 
  12262.  
  12263.  
  12264.     WinStopTimer(hab, hwnd, ID_TIMER1);      /* Stops first timer */
  12265.  
  12266.  
  12267. ΓòÉΓòÉΓòÉ 15. Appendices ΓòÉΓòÉΓòÉ
  12268.  
  12269. This section contains several topics related to Presentation Manager 
  12270. programming. 
  12271.  
  12272.  
  12273. ΓòÉΓòÉΓòÉ 15.1. Bitmap Formats ΓòÉΓòÉΓòÉ
  12274.  
  12275. There are four standard bitmap formats. All device drivers must be able to 
  12276. translate between any of these formats and their own internal formats. The 
  12277. standard formats are: 
  12278.  
  12279.  Bitcount        Planes 
  12280.  1               1 
  12281.  4               1 
  12282.  8               1 
  12283.  24              1 
  12284.  
  12285.  These formats are chosen because they are identical or similar to all formats 
  12286.  commonly used by raster devices. Only single-plane formats are standard, but 
  12287.  it is very easy to convert these to any multiple-plane format used internally 
  12288.  by a device. 
  12289.  
  12290.  
  12291. ΓòÉΓòÉΓòÉ 15.1.1. Bitmap Data ΓòÉΓòÉΓòÉ
  12292.  
  12293. The pel data is stored in the bitmap in the order that the coordinates appear 
  12294. on a display screen. That is, the pel in the lower-left corner is the first in 
  12295. the bitmap. Pels are scanned to the right, and upward, from that position. The 
  12296. bits of the first pel are stored, beginning with the most significant bits of 
  12297. the first byte. The data for pels in each scan line is packed together tightly, 
  12298. but all scan lines are padded at the end, so that each one begins on a ULONG 
  12299. boundary. 
  12300.  
  12301.  
  12302. ΓòÉΓòÉΓòÉ 15.1.2. Bitmap Information Tables ΓòÉΓòÉΓòÉ
  12303.  
  12304. Each standard-format bitmap must be accompanied by a bitmap information table. 
  12305. Because the standard-format bitmaps are intended to be traded between devices, 
  12306. the color indexes in the bitmap are meaningless without more information; for a 
  12307. description of this structure, see BITMAPINFO2. 
  12308.  
  12309. Some functions use a structure that is similar to BITMAPINFO2 but does not have 
  12310. the color table array; for a description of this structure, see 
  12311. BITMAPINFOHEADER2. Wherever BITMAPINFO2 is shown, BITMAPINFO is also allowed. 
  12312. Similarly, wherever BITMAPINFOHEADER2 is shown, BITMAPINFOHEADER is also 
  12313. allowed. 
  12314.  
  12315.  
  12316. ΓòÉΓòÉΓòÉ 15.1.3. Bitmap Example ΓòÉΓòÉΓòÉ
  12317.  
  12318. To make the ordering of all the bytes clear, consider this simple example of a 
  12319. 5-by-3 array of colored pels: 
  12320.  
  12321.  
  12322. Red   Green Blue  Red   Green
  12323. Blue  Red   Green Blue  Red
  12324. Green Blue  Red   Green Blue
  12325.  
  12326. ULONG ExampleBitmap[]  {
  12327.     0x23,0x12,0x30,0x00                 /* bottom line */
  12328.     0x31,0x23,0x10,0x00                 /* middle line */
  12329.     0x12,0x31,0x20,0x00                 /* top line    */
  12330. };
  12331.  
  12332. #define BLACK  0x00000000L
  12333. #define RED    0x00FF0000L
  12334. #define GREEN  0x0000FF00L
  12335. #define BLUE   0x000000FFL
  12336.  
  12337. struct BitmapInfoTable ExampleInfo = {
  12338.        5,                               /* width       */
  12339.        3,                               /* height      */
  12340.        1,                               /* planes      */
  12341.        4,                               /* bitcount    */
  12342.        BLACK,RED,GREEN,BLUE,            /* color table */
  12343.        BLACK,BLACK,BLACK,BLACK,
  12344.        BLACK,BLACK,BLACK,BLACK,
  12345.        BLACK,BLACK,BLACK,BLACK
  12346. };
  12347.  
  12348.  
  12349. ΓòÉΓòÉΓòÉ 15.1.4. Bitmap File Format ΓòÉΓòÉΓòÉ
  12350.  
  12351. The operating system uses the same file format for bitmaps, icons, and pointers 
  12352. in resource files. In the following description, "bitmap" refers to bitmaps, 
  12353. icons, and pointers unless otherwise specified. 
  12354.  
  12355. Two formats are supported. In the first, a single-size version of the bitmap is 
  12356. defined. This is used whatever the target device. 
  12357.  
  12358. The second format allows multiple versions of the bitmap to be defined, 
  12359. including one or more device-independent versions, and a number of 
  12360. device-dependent versions, each intended for use with a particular device. 
  12361.  
  12362. In the case of icons and pointers, when more than one version of the bitmap 
  12363. exists, the preferred version is one that matches the device size of the icon 
  12364. or pointer; otherwise, the device-independent version is used to scale a bitmap 
  12365. to the required size. 
  12366.  
  12367. The operating system provides pointers that match the requirements of the 
  12368. display device in use, typically pointers are 32x32 pels, one bit per plane. 
  12369.  
  12370. Icons provided with the operating system are designed to match the requirements 
  12371. of the most common display devices.  The following versions of each icon are 
  12372. included in each file: 
  12373.  
  12374.       32x32 4 bpp (16 color) 
  12375.       40x40 4 bpp (16 color) 
  12376.       32x32 1 bpp (black and white) 
  12377.       20x20 1 bpp (black and white) 
  12378.       16x16 1 bpp (black and white) 
  12379.  
  12380.  The 32x32 versions are designed for VGA displays and for device-independent 
  12381.  use. 
  12382.  
  12383.  The 40x40 version is for 8514/A and XGA displays. 
  12384.  
  12385.  The 20x20 and 16x16 are half-size icons designed for use as mini-icons. 
  12386.  
  12387.  For general bitmaps, which may be of arbitrary size, the preferred version is 
  12388.  one matching the requested bitmap size; otherwise one matching the display 
  12389.  size is selected. If neither is available, the device-independent version is 
  12390.  used from which to scale a bitmap. 
  12391.  
  12392.  For both formats, the definition consists of two sections. The first section 
  12393.  contains general information about the type, dimensions, and other attributes 
  12394.  of the resource. The second section contains data describing the pels that 
  12395.  make up the bitmap(s), and is in the format specified in Bitmap Data. 
  12396.  
  12397.  In the multiple-version format, the first section contains an array of 
  12398.  BITMAPARRAYFILEHEADER or BITMAPARRAYFILEHEADER2 structures. 
  12399.  
  12400.  The device-independent version must be the first BITMAPARRAYFILEHEADER or 
  12401.  BITMAPARRAYFILEHEADER2 defined. 
  12402.  
  12403.  In the single-size format, the BITMAPARRAYFILEHEADER or BITMAPARRAYFILEHEADER2 
  12404.  structure is not present. The definition consists of one or two 
  12405.  BITMAPFILEHEADER or BITMAPFILEHEADER2 structures. 
  12406.  
  12407.  For icons and pointers, the cy field in bmp is actually twice the pel height 
  12408.  of the image that appears on the screen.  This is because these types actually 
  12409.  contain two full bitmap pel definitions. The first bitmap definition is the 
  12410.  XOR mask, which contains invert information (0 = no invert, 1 = invert) for 
  12411.  the pointer or icon. The second is the AND mask, which determines whether the 
  12412.  pointer or the screen is shown (0 = black/white, 1 = screen/inverse screen). 
  12413.  
  12414.  For color icons or pointers, there are two bitmaps involved: one that is black 
  12415.  and white and consists of an AND and an XOR mask, and one that is color that 
  12416.  defines the color content. 
  12417.  
  12418.  The cy field in the BITMAPINFOHEADER2 structure for the color bitmap must be 
  12419.  the real height, that is, half the value specified for the black and white 
  12420.  bitmap. The cx must be the same. 
  12421.  
  12422.  The following table shows how these two bitmaps are used for a color icon or 
  12423.  pointer: 
  12424.  
  12425.  
  12426.      XOR     AND     COLOR
  12427.       1       1        x       Invert screen
  12428.       0       0        x       Use color x
  12429.       0       1        x       Transparency
  12430.       1       0        x       Use color x
  12431.  
  12432.  For color icons or pointers, two BITMAPFILEHEADER or BITMAPFILEHEADER2 
  12433.  structures are therefore required: 
  12434.  
  12435.  
  12436.   BITMAPFILEHEADER2    with usType BFT_COLORICON or BFT_COLORPOINTER
  12437.      BITMAPINFOHEADER2 (part of BITMAPFILEHEADER2)
  12438.      Color table
  12439.   BITMAPFILEHEADER2    with same usType
  12440.      BITMAPINFOHEADER2 (part of BITMAPFILEHEADER2)
  12441.      Color table
  12442.   **
  12443.   bits for one bitmap
  12444.   **
  12445.   **
  12446.   bits for other bitmap
  12447.   **
  12448.  
  12449.  The usType for the first BITMAPFILEHEADER2 is either BFT_COLORICON or 
  12450.  BFT_COLORPOINTER. This means that a second BITMAPFILEHEADER2 is present as 
  12451.  part of the definition of a color icon or pointer. The first The first 
  12452.  BITMAPFILEHEADER2 structure contains the information for the black and white 
  12453.  AND and XOR masks, while the second BITMAPFILEHEADER2 structure contains the 
  12454.  information for the color part of the pointer or icon. 
  12455.  
  12456.  BITMAPFILEHEADER and BITMAPINFOHEADER can occur in place of BITMAPFILEHEADER2 
  12457.  and BITMAPINFOHEADER2 in this example. 
  12458.  
  12459.  For the multiple version format, the file is as follows: 
  12460.  
  12461.  
  12462.   BITMAPARRAYFILEHEADER2   for device-independent version
  12463.      BITMAPFILEHEADER2     (part of BITMAPARRAYFILEHEADER2)
  12464.         BITMAPINFOHEADER2  (part of BITMAPFILEHEADER2)
  12465.         Color table
  12466.  
  12467.      BITMAPFILEHEADER2     )
  12468.         BITMAPINFOHEADER2  )  only if this is a color icon or pointer
  12469.         Color table        )
  12470.  
  12471.   BITMAPARRAYFILEHEADER2   for first device-dependent version
  12472.      BITMAPFILEHEADER2     (part of BITMAPARRAYFILEHEADER2)
  12473.         BITMAPINFOHEADER2  (part of BITMAPFILEHEADER2)
  12474.         Color table
  12475.  
  12476.      BITMAPFILEHEADER2     )
  12477.         BITMAPINFOHEADER2  )  only if this is a color icon or pointer
  12478.         Color table        )
  12479.  
  12480.   Further BITMAPARRAYFILEHEADER2 groups occur here as required
  12481.   for additional device-dependent versions
  12482.  
  12483.   **
  12484.   bits for one bitmap
  12485.   **
  12486.   **
  12487.   bits for next bitmap
  12488.   **
  12489.  
  12490.   And so on for as many bitmaps as necessary.
  12491.  
  12492.  As before, BITMAPARRAYFILEHEADER, BITMAPFILEHEADER, and BITMAPINFOHEADER, can 
  12493.  occur in place of BITMAPARRAYFILEHEADER2, BITMAPFILEHEADER2, and 
  12494.  BITMAPINFOHEADER2 
  12495.  
  12496.  
  12497. ΓòÉΓòÉΓòÉ 15.2. Code Pages ΓòÉΓòÉΓòÉ
  12498.  
  12499. The initialization file contains country information relating to date, time, 
  12500. and numeric formats.  It does not contain code-page information; this is 
  12501. obtained from the CONFIG.SYS file. 
  12502.  
  12503. Applications start with the default code page. The default code page is set 
  12504. when the operating system is installed. It can be changed subsequently either 
  12505. by reinstalling the operating system or by editing the COUNTRY statement in the 
  12506. CONFIG.SYS file. 
  12507.  
  12508. A GPI presentation space inherits the code page of the process that created it. 
  12509. The code page changes only when the process calls GpiSetCp 
  12510.  
  12511. See the printed version of the Presentation Manager Programming Reference for 
  12512. the ASCII and EBCDIC versions of the code pages. 
  12513.  
  12514.  
  12515. ΓòÉΓòÉΓòÉ 15.2.1. Windowed PM Applications ΓòÉΓòÉΓòÉ
  12516.  
  12517. Windowed PM applications allow the code-page calls to use any of the supported 
  12518. ASCII code pages. These are: 
  12519.  
  12520. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  12521. Γöé                      ΓöéChar. Set  ΓöéCode Page  Γöé
  12522. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12523. ΓöéCanadian-French       Γöé993        Γöé863        Γöé
  12524. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12525. ΓöéDesktop Publishing    Γöé1146       Γöé1004       Γöé
  12526. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12527. ΓöéIceland               Γöé991        Γöé861        Γöé
  12528. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12529. ΓöéLatin 1 Multilingual  Γöé980        Γöé850        Γöé
  12530. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12531. ΓöéLatin 2 Multilingual  Γöé982        Γöé852        Γöé
  12532. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12533. ΓöéNordic                Γöé995        Γöé865        Γöé
  12534. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12535. ΓöéPortuguese            Γöé990        Γöé860        Γöé
  12536. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12537. ΓöéTurkey                Γöé987        Γöé857        Γöé
  12538. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12539. ΓöéU.S. (IBM PC)         Γöé919        Γöé437        Γöé
  12540. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  12541.  
  12542. Code page 1004 is compatible with Microsoft** Windows**. 
  12543.  
  12544. The following EBCDIC code pages, based on character set 697, are also available 
  12545. for output: 
  12546.  
  12547. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  12548. Γöé                      ΓöéChar. Set  ΓöéCode Page  Γöé
  12549. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12550. ΓöéAustrian/German       Γöé697        Γöé273        Γöé
  12551. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12552. ΓöéBelgian               Γöé697        Γöé500        Γöé
  12553. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12554. ΓöéBrazil                Γöé697        Γöé037        Γöé
  12555. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12556. ΓöéCzechoslovakia        Γöé959        Γöé870        Γöé
  12557. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12558. ΓöéDanish/Norwegian      Γöé697        Γöé277        Γöé
  12559. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12560. ΓöéFinnish/Swedish       Γöé697        Γöé278        Γöé
  12561. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12562. ΓöéFrench                Γöé697        Γöé297        Γöé
  12563. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12564. ΓöéHungary               Γöé959        Γöé870        Γöé
  12565. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12566. ΓöéIceland               Γöé697        Γöé871        Γöé
  12567. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12568. ΓöéInternational         Γöé697        Γöé500        Γöé
  12569. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12570. ΓöéItalian               Γöé697        Γöé280        Γöé
  12571. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12572. ΓöéPoland                Γöé959        Γöé870        Γöé
  12573. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12574. ΓöéPortuguese            Γöé697        Γöé037        Γöé
  12575. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12576. ΓöéSpanish               Γöé697        Γöé284        Γöé
  12577. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12578. ΓöéTurkey                Γöé1152       Γöé1026       Γöé
  12579. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12580. ΓöéU.K.-English          Γöé697        Γöé285        Γöé
  12581. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12582. ΓöéU.S.-English          Γöé697        Γöé037        Γöé
  12583. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12584. ΓöéYugoslavia            Γöé959        Γöé870        Γöé
  12585. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  12586.  
  12587. Note:  Code pages 274 (Belgian) and 282 (Portuguese) can be used to provide 
  12588.        access to old data. 
  12589.  
  12590.  The operating system provides the following additional code-page setting and 
  12591.  query calls for the supported ASCII and EBCDIC code pages. These calls work 
  12592.  independently of the CONFIG.SYS file. 
  12593.  
  12594.  GpiSetCp                  Sets the code page for GPI. 
  12595.  GpiQueryCp                Queries the code page for GPI. 
  12596.  GpiCreateLogFont          Creates fonts in a code page. 
  12597.  WinSetCp                  Sets the code page for a message queue. 
  12598.  WinQueryCp                Queries the code page for a message queue. 
  12599.  
  12600.  WinQueryCpList creates a list of code pages supported by the operating system. 
  12601.  
  12602.  Text entered in a dialog box is supplied to the application in the code page 
  12603.  of the queue ("queue code page"). If possible, the code page of a resource 
  12604.  (for example, a menu or dialog box) should match the code page of the queue. 
  12605.  In general, code page 850 is the best choice for both an application and its 
  12606.  resources. 
  12607.  
  12608.  Applications should be able to process data from a variety of sources. Because 
  12609.  code page 850 contains most of the characters in other supported code pages, 
  12610.  this is usually the best choice for the queue code page. 
  12611.  
  12612.  
  12613. ΓòÉΓòÉΓòÉ 15.2.2. OS/2 Code Page Options for PM Applications ΓòÉΓòÉΓòÉ
  12614.  
  12615.  
  12616. ΓöîΓöÇΓöÇΓöÇApplicationΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ    ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  12617. Γöé                                         ΓöéΓöÇΓöÇΓöÇΓöñ CONFIG.SYS   Γöé
  12618. Γöé ΓöîΓöÇDosSetProcessCp (see note 1)ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ Γöé    Γöé contains the Γöé
  12619. Γöé Γöé Set code page for this process      Γöé Γöé    Γöé default code Γöé
  12620. Γöé Γöé (keyboard/display not changed).     Γöé Γöé    Γöé page set by  Γöé
  12621. Γöé ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ Γöé    Γöé CODEPAGE=    Γöé
  12622. Γöé                                         Γöé    ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  12623. Γöé ΓöîΓöÇWinQueryCpList (see note 2)ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ Γöé
  12624. Γöé Γöé Query list of supported code pages. Γöé Γöé
  12625. Γöé ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ Γöé
  12626. Γöé                                         Γöé
  12627. Γöé ΓöîΓöÇWinSetCp, WinQueryCp (see note 1)ΓöÇΓöÇΓöÇΓöÉ Γöé
  12628. Γöé Γöé Set or query code page for          ΓöéΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇKeyboard
  12629. Γöé Γöé translating incoming messages       Γöé Γöé    Γöé   Γöé
  12630. Γöé Γöé (keystrokes).                       Γöé Γöé    ΓöéΓöÇΓöÇΓöÇΓöÇΓöÇΓöé
  12631. Γöé ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ Γöé    ΓöéΓöÇΓöÇΓöÇΓöÇΓöÇΓöé  Message
  12632. Γöé                                         Γöé    ΓöéΓöÇΓöÇΓöÇΓöÇΓöÇΓöé  queue
  12633. Γöé ΓöîΓöÇGpiSetCp, GpiQueryCp (see note 2)ΓöÇΓöÇΓöÇΓöÉ Γöé    ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  12634. Γöé Γöé Set or query default GPI code page. Γöé Γöé
  12635. Γöé ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ Γöé
  12636. Γöé                                         Γöé
  12637. Γöé ΓöîΓöÇGpiCreateLogFont (see note 2)ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ Γöé
  12638. Γöé Γöé Create font in a code page.         ΓöéΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇDisplay
  12639. Γöé ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ Γöé
  12640. Γöé                                         Γöé
  12641. Γöé ΓöîΓöÇWinCpTranslateChar (see note 2)ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ Γöé
  12642. Γöé Γö£ΓöÇWinCpTranslateString (see note 2)ΓöÇΓöÇΓöÇΓöñ Γöé
  12643. Γöé Γöé Convert character or string from    ΓöéΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇDisk
  12644. Γöé Γöé one code page to another.           Γöé Γöé
  12645. Γöé ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ Γöé
  12646. Γöé                                        Γöé
  12647. Γöé                    ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇLAN or host
  12648. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  12649.  
  12650. Note 1:  Either of the two ASCII code pages specified in CONFIG.SYS.
  12651.          Code page 1004 is also supported.
  12652. Note 2:  Any supported ASCII or EBCDIC code page as reported by
  12653.          WinQueryCpList.
  12654.          Code page 1004 is also supported.
  12655.  
  12656.  
  12657. ΓòÉΓòÉΓòÉ 15.2.3. OS/2 Font Support for Multiple Code Pages ΓòÉΓòÉΓòÉ
  12658.  
  12659. The operating system supports multiple code pages for text input and output. A 
  12660. single font resource is used to support all the code pages. This section 
  12661. describes the font resource format. 
  12662.  
  12663.  
  12664. ΓòÉΓòÉΓòÉ 15.2.3.1. Font Code-Page Functions ΓòÉΓòÉΓòÉ
  12665.  
  12666. Many of the characters required by each code page are common; for example, the 
  12667. first 128 characters of all the ASCII code pages are identical. This set of 
  12668. characters is called the Universal Glyph List (UGL). A code page is simply a 
  12669. set of pointers into the UGL. 
  12670.  
  12671. As the characters in every font are in the same order, only one set of 
  12672. code-page translation tables is necessary. 
  12673.  
  12674. Note:  The fonts of Microsoft Windows support only code page 1004. 
  12675.  
  12676.  
  12677. ΓòÉΓòÉΓòÉ 15.2.3.2. Font Layout ΓòÉΓòÉΓòÉ
  12678.  
  12679. The following table lists the full character set in the order in which the 
  12680. characters occur in the multi-code-page font. Characters are listed in order of 
  12681. their universal glyph list (UGL) number; the graphic character global 
  12682. identifier (GCGID) and a description of each character are also given. 
  12683.  
  12684. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  12685. ΓöéUGL  ΓöéGCGID     ΓöéDescription                             Γöé
  12686. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12687. Γöé1    ΓöéSS000000  ΓöéSmiling face                            Γöé
  12688. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12689. Γöé2    ΓöéSS010000  ΓöéSmiling face, reverse image             Γöé
  12690. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12691. Γöé3    ΓöéSS020000  ΓöéHeart suit symbol                       Γöé
  12692. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12693. Γöé4    ΓöéSS030000  ΓöéDiamond suit symbol                     Γöé
  12694. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12695. Γöé5    ΓöéSS040000  ΓöéClub suit symbol                        Γöé
  12696. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12697. Γöé6    ΓöéSS050000  ΓöéSpade suit symbol                       Γöé
  12698. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12699. Γöé7    ΓöéSM570000  ΓöéBullet                                  Γöé
  12700. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12701. Γöé8    ΓöéSM570001  ΓöéBullet, reverse image                   Γöé
  12702. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12703. Γöé9    ΓöéSM750000  ΓöéOpen circle                             Γöé
  12704. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12705. Γöé10   ΓöéSM750002  ΓöéOpen circle, reverse image              Γöé
  12706. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12707. Γöé11   ΓöéSM280000  ΓöéMale symbol                             Γöé
  12708. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12709. Γöé12   ΓöéSM290000  ΓöéFemale symbol                           Γöé
  12710. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12711. Γöé13   ΓöéSM930000  ΓöéMusical note                            Γöé
  12712. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12713. Γöé14   ΓöéSM910000  ΓöéTwo musical notes                       Γöé
  12714. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12715. Γöé15   ΓöéSM690000  ΓöéSun symbol                              Γöé
  12716. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12717. Γöé16   ΓöéSM590000  ΓöéForward arrow indicator                 Γöé
  12718. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12719. Γöé17   ΓöéSM630000  ΓöéBack arrow indicator                    Γöé
  12720. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12721. Γöé18   ΓöéSM760000  ΓöéUp-down arrow                           Γöé
  12722. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12723. Γöé19   ΓöéSP330000  ΓöéDouble exclamation point                Γöé
  12724. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12725. Γöé20   ΓöéSM250000  ΓöéParagraph symbol (USA)                  Γöé
  12726. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12727. Γöé21   ΓöéSM240000  ΓöéSection symbol (USA), paragraph (Europe)Γöé
  12728. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12729. Γöé22   ΓöéSM700000  ΓöéSolid horizontal rectangle              Γöé
  12730. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12731. Γöé23   ΓöéSM770000  ΓöéUp-down arrow, perpendicular            Γöé
  12732. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12733. Γöé24   ΓöéSM320000  ΓöéUp arrow                                Γöé
  12734. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12735. Γöé25   ΓöéSM330000  ΓöéDown arrow                              Γöé
  12736. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12737. Γöé26   ΓöéSM310000  ΓöéRight arrow                             Γöé
  12738. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12739. Γöé27   ΓöéSM300000  ΓöéLeft arrow                              Γöé
  12740. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12741. Γöé28   ΓöéSA420000  ΓöéRight angle symbol                      Γöé
  12742. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12743. Γöé29   ΓöéSM780000  ΓöéLeft-right arrow                        Γöé
  12744. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12745. Γöé30   ΓöéSM600000  ΓöéSolid triangle                          Γöé
  12746. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12747. Γöé31   ΓöéSV040000  ΓöéSolid triangle, inverted                Γöé
  12748. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12749. Γöé32   ΓöéSP010000  ΓöéSpace                                   Γöé
  12750. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12751. Γöé33   ΓöéSP020000  ΓöéExclamation point                       Γöé
  12752. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12753. Γöé34   ΓöéSP040000  ΓöéQuotation marks                         Γöé
  12754. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12755. Γöé35   ΓöéSM010000  ΓöéNumber sign                             Γöé
  12756. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12757. Γöé36   ΓöéSC030000  ΓöéDollar sign                             Γöé
  12758. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12759. Γöé37   ΓöéSM020000  ΓöéPercent sign                            Γöé
  12760. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12761. Γöé38   ΓöéSM030000  ΓöéAmpersand                               Γöé
  12762. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12763. Γöé39   ΓöéSP050000  ΓöéApostrophe                              Γöé
  12764. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12765. Γöé40   ΓöéSP060000  ΓöéLeft parenthesis                        Γöé
  12766. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12767. Γöé41   ΓöéSP070000  ΓöéRight parenthesis                       Γöé
  12768. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12769. Γöé42   ΓöéSM040000  ΓöéAsterisk                                Γöé
  12770. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12771. Γöé43   ΓöéSA010000  ΓöéPlus sign                               Γöé
  12772. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12773. Γöé44   ΓöéSP080000  ΓöéComma                                   Γöé
  12774. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12775. Γöé45   ΓöéSP100000  ΓöéHyphen/minus sign                       Γöé
  12776. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12777. Γöé46   ΓöéSP110000  ΓöéPeriod/full stop                        Γöé
  12778. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12779. Γöé47   ΓöéSP120000  ΓöéSlash                                   Γöé
  12780. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12781. Γöé48   ΓöéND100000  ΓöéZero                                    Γöé
  12782. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12783. Γöé49   ΓöéND010000  ΓöéOne                                     Γöé
  12784. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12785. Γöé50   ΓöéND020000  ΓöéTwo                                     Γöé
  12786. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12787. Γöé51   ΓöéND030000  ΓöéThree                                   Γöé
  12788. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12789. Γöé52   ΓöéND040000  ΓöéFour                                    Γöé
  12790. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12791. Γöé53   ΓöéND050000  ΓöéFive                                    Γöé
  12792. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12793. Γöé54   ΓöéND060000  ΓöéSix                                     Γöé
  12794. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12795. Γöé55   ΓöéND070000  ΓöéSeven                                   Γöé
  12796. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12797. Γöé56   ΓöéND080000  ΓöéEight                                   Γöé
  12798. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12799. Γöé57   ΓöéND090000  ΓöéNine                                    Γöé
  12800. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12801. Γöé58   ΓöéSP130000  ΓöéColon                                   Γöé
  12802. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12803. Γöé59   ΓöéSP140000  ΓöéSemicolon                               Γöé
  12804. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12805. Γöé60   ΓöéSA030000  ΓöéLess than sign/greater than (arabic)    Γöé
  12806. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12807. Γöé61   ΓöéSA040000  ΓöéEqual Sign                              Γöé
  12808. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12809. Γöé62   ΓöéSA050000  ΓöéGreater than sign/less than (arabic)    Γöé
  12810. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12811. Γöé63   ΓöéSP150000  ΓöéQuestion mark                           Γöé
  12812. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12813. Γöé64   ΓöéSM050000  ΓöéAt sign                                 Γöé
  12814. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12815. Γöé65   ΓöéLA020000  ΓöéA capital                               Γöé
  12816. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12817. Γöé66   ΓöéLB020000  ΓöéB capital                               Γöé
  12818. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12819. Γöé67   ΓöéLC020000  ΓöéC capital                               Γöé
  12820. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12821. Γöé68   ΓöéLD020000  ΓöéD capital                               Γöé
  12822. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12823. Γöé69   ΓöéLE020000  ΓöéE capital                               Γöé
  12824. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12825. Γöé70   ΓöéLF020000  ΓöéF capital                               Γöé
  12826. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12827. Γöé71   ΓöéLG020000  ΓöéG capital                               Γöé
  12828. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12829. Γöé72   ΓöéLH020000  ΓöéH capital                               Γöé
  12830. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12831. Γöé73   ΓöéLI020000  ΓöéI capital                               Γöé
  12832. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12833. Γöé74   ΓöéLJ020000  ΓöéJ capital                               Γöé
  12834. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12835. Γöé75   ΓöéLK020000  ΓöéK capital                               Γöé
  12836. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12837. Γöé76   ΓöéLL020000  ΓöéL capital                               Γöé
  12838. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12839. Γöé77   ΓöéLM020000  ΓöéM capital                               Γöé
  12840. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12841. Γöé78   ΓöéLN020000  ΓöéN capital                               Γöé
  12842. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12843. Γöé79   ΓöéLO020000  ΓöéO capital                               Γöé
  12844. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12845. Γöé80   ΓöéLP020000  ΓöéP capital                               Γöé
  12846. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12847. Γöé81   ΓöéLQ020000  ΓöéQ capital                               Γöé
  12848. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12849. Γöé82   ΓöéLR020000  ΓöéR capital                               Γöé
  12850. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12851. Γöé83   ΓöéLS020000  ΓöéS capital                               Γöé
  12852. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12853. Γöé84   ΓöéLT020000  ΓöéT capital                               Γöé
  12854. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12855. Γöé85   ΓöéLU020000  ΓöéU capital                               Γöé
  12856. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12857. Γöé86   ΓöéLV020000  ΓöéV capital                               Γöé
  12858. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12859. Γöé87   ΓöéLW020000  ΓöéW capital                               Γöé
  12860. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12861. Γöé88   ΓöéLX020000  ΓöéX capital                               Γöé
  12862. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12863. Γöé89   ΓöéLY020000  ΓöéY capital                               Γöé
  12864. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12865. Γöé90   ΓöéLZ020000  ΓöéZ capital                               Γöé
  12866. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12867. Γöé91   ΓöéSM060000  ΓöéLeft bracket                            Γöé
  12868. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12869. Γöé92   ΓöéSM070000  ΓöéBackslash                               Γöé
  12870. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12871. Γöé93   ΓöéSM080000  ΓöéRight bracket                           Γöé
  12872. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12873. Γöé94   ΓöéSD150000  ΓöéCircumflex Accent                       Γöé
  12874. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12875. Γöé95   ΓöéSP090000  ΓöéUnderline, continuous underscore        Γöé
  12876. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12877. Γöé96   ΓöéSD130000  ΓöéGrave accent                            Γöé
  12878. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12879. Γöé97   ΓöéLA010000  Γöéa small                                 Γöé
  12880. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12881. Γöé98   ΓöéLB010000  Γöéb small                                 Γöé
  12882. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12883. Γöé99   ΓöéLC010000  Γöéc small                                 Γöé
  12884. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12885. Γöé100  ΓöéLD010000  Γöéd small                                 Γöé
  12886. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12887. Γöé101  ΓöéLE010000  Γöée small                                 Γöé
  12888. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12889. Γöé102  ΓöéLF010000  Γöéf small                                 Γöé
  12890. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12891. Γöé103  ΓöéLG010000  Γöég small                                 Γöé
  12892. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12893. Γöé104  ΓöéLH010000  Γöéh small                                 Γöé
  12894. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12895. Γöé105  ΓöéLI010000  Γöéi small                                 Γöé
  12896. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12897. Γöé106  ΓöéLJ010000  Γöéj small                                 Γöé
  12898. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12899. Γöé107  ΓöéLK010000  Γöék small                                 Γöé
  12900. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12901. Γöé108  ΓöéLL010000  Γöél small                                 Γöé
  12902. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12903. Γöé109  ΓöéLM010000  Γöém small                                 Γöé
  12904. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12905. Γöé110  ΓöéLN010000  Γöén small                                 Γöé
  12906. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12907. Γöé111  ΓöéLO010000  Γöéo small                                 Γöé
  12908. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12909. Γöé112  ΓöéLP010000  Γöép small                                 Γöé
  12910. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12911. Γöé113  ΓöéLQ010000  Γöéq small                                 Γöé
  12912. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12913. Γöé114  ΓöéLR010000  Γöér small                                 Γöé
  12914. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12915. Γöé115  ΓöéLS010000  Γöés small                                 Γöé
  12916. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12917. Γöé116  ΓöéLT010000  Γöét small                                 Γöé
  12918. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12919. Γöé117  ΓöéLU010000  Γöéu small                                 Γöé
  12920. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12921. Γöé118  ΓöéLV010000  Γöév small                                 Γöé
  12922. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12923. Γöé119  ΓöéLW010000  Γöéw small                                 Γöé
  12924. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12925. Γöé120  ΓöéLX010000  Γöéx small                                 Γöé
  12926. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12927. Γöé121  ΓöéLY010000  Γöéy small                                 Γöé
  12928. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12929. Γöé122  ΓöéLZ010000  Γöéz small                                 Γöé
  12930. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12931. Γöé123  ΓöéSM110000  ΓöéLeft brace                              Γöé
  12932. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12933. Γöé124  ΓöéSM130000  ΓöéVertical line, logical OR               Γöé
  12934. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12935. Γöé125  ΓöéSM140000  ΓöéRight brace                             Γöé
  12936. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12937. Γöé126  ΓöéSD190000  ΓöéTilde                                   Γöé
  12938. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12939. Γöé127  ΓöéSM790000  ΓöéHouse                                   Γöé
  12940. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12941. Γöé128  ΓöéLC420000  ΓöéC cedilla capital                       Γöé
  12942. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12943. Γöé129  ΓöéLU170000  ΓöéU diaeresis small                       Γöé
  12944. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12945. Γöé130  ΓöéLE110000  ΓöéE acute small                           Γöé
  12946. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12947. Γöé131  ΓöéLA150000  ΓöéA circumflex small                      Γöé
  12948. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12949. Γöé132  ΓöéLA170000  ΓöéA diaeresis small                       Γöé
  12950. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12951. Γöé133  ΓöéLA130000  ΓöéA grave small                           Γöé
  12952. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12953. Γöé134  ΓöéLA270000  ΓöéA overcircle small                      Γöé
  12954. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12955. Γöé135  ΓöéLC410000  ΓöéC cedilla small                         Γöé
  12956. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12957. Γöé136  ΓöéLE150000  ΓöéE circumflex small                      Γöé
  12958. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12959. Γöé137  ΓöéLE170000  ΓöéE diaeresis small                       Γöé
  12960. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12961. Γöé138  ΓöéLE130000  ΓöéE grave small                           Γöé
  12962. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12963. Γöé139  ΓöéLI170000  ΓöéI diaeresis small                       Γöé
  12964. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12965. Γöé140  ΓöéLI150000  ΓöéI circumflex small                      Γöé
  12966. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12967. Γöé141  ΓöéLI130000  ΓöéI grave small                           Γöé
  12968. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12969. Γöé142  ΓöéLA180000  ΓöéA diaeresis capital                     Γöé
  12970. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12971. Γöé143  ΓöéLA280000  ΓöéA overcircle capital                    Γöé
  12972. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12973. Γöé144  ΓöéLE120000  ΓöéE acute capital                         Γöé
  12974. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12975. Γöé145  ΓöéLA510000  ΓöéAE diphthong small                      Γöé
  12976. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12977. Γöé146  ΓöéLA520000  ΓöéAE diphthong capital                    Γöé
  12978. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12979. Γöé147  ΓöéLO150000  ΓöéO circumflex small                      Γöé
  12980. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12981. Γöé148  ΓöéLO170000  ΓöéO diaeresis small                       Γöé
  12982. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12983. Γöé149  ΓöéLO130000  ΓöéO grave small                           Γöé
  12984. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12985. Γöé150  ΓöéLU150000  ΓöéU circumflex small                      Γöé
  12986. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12987. Γöé151  ΓöéLU130000  ΓöéU grave small                           Γöé
  12988. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12989. Γöé152  ΓöéLY170000  ΓöéY diaeresis small                       Γöé
  12990. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12991. Γöé153  ΓöéLO180000  ΓöéO diaeresis capital                     Γöé
  12992. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12993. Γöé154  ΓöéLU180000  ΓöéU diaeresis capital                     Γöé
  12994. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12995. Γöé155  ΓöéLO610000  ΓöéO slash small                           Γöé
  12996. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12997. Γöé156  ΓöéSC020000  ΓöéPound sterling sign                     Γöé
  12998. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  12999. Γöé157  ΓöéLO620000  ΓöéO slash capital                         Γöé
  13000. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13001. Γöé158  ΓöéSA070000  ΓöéMultiply sign                           Γöé
  13002. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13003. Γöé159  ΓöéSC070000  ΓöéFlorin sign                             Γöé
  13004. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13005. Γöé160  ΓöéLA110000  ΓöéA acute small                           Γöé
  13006. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13007. Γöé161  ΓöéLI110000  ΓöéI acute small                           Γöé
  13008. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13009. Γöé162  ΓöéLO110000  ΓöéO acute small                           Γöé
  13010. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13011. Γöé163  ΓöéLU110000  ΓöéU acute small                           Γöé
  13012. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13013. Γöé164  ΓöéLN190000  ΓöéN tilde small                           Γöé
  13014. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13015. Γöé165  ΓöéLN200000  ΓöéN tilde capital                         Γöé
  13016. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13017. Γöé166  ΓöéSM210000  ΓöéOrdinal indicator, feminine             Γöé
  13018. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13019. Γöé167  ΓöéSM200000  ΓöéOrdinal indicator, masculine            Γöé
  13020. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13021. Γöé168  ΓöéSP160000  ΓöéQuestion mark, inverted                 Γöé
  13022. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13023. Γöé169  ΓöéSM530000  ΓöéRegistered trademark symbol             Γöé
  13024. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13025. Γöé170  ΓöéSM660000  ΓöéLogical NOT, end of line symbol         Γöé
  13026. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13027. Γöé171  ΓöéNF010000  ΓöéOne-half                                Γöé
  13028. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13029. Γöé172  ΓöéNF040000  ΓöéOne-quarter                             Γöé
  13030. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13031. Γöé173  ΓöéSP030000  ΓöéExclamation point, inverted             Γöé
  13032. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13033. Γöé174  ΓöéSP170000  ΓöéLeft angled quotes                      Γöé
  13034. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13035. Γöé175  ΓöéSP180000  ΓöéRight angled quotes                     Γöé
  13036. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13037. Γöé176  ΓöéSF140000  ΓöéFill character, light                   Γöé
  13038. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13039. Γöé177  ΓöéSF150000  ΓöéFill character, medium                  Γöé
  13040. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13041. Γöé178  ΓöéSF160000  ΓöéFill character, heavy                   Γöé
  13042. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13043. Γöé179  ΓöéSF110000  ΓöéCenter box bar vertical                 Γöé
  13044. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13045. Γöé180  ΓöéSF090000  ΓöéRight middle box side                   Γöé
  13046. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13047. Γöé181  ΓöéLA120000  ΓöéA acute capital                         Γöé
  13048. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13049. Γöé182  ΓöéLA160000  ΓöéA circumflex capital                    Γöé
  13050. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13051. Γöé183  ΓöéLA140000  ΓöéA grave capital                         Γöé
  13052. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13053. Γöé184  ΓöéSM520000  ΓöéCopyright symbol                        Γöé
  13054. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13055. Γöé185  ΓöéSF230000  ΓöéRight box side double                   Γöé
  13056. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13057. Γöé186  ΓöéSF240000  ΓöéCenter box bar vertical double          Γöé
  13058. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13059. Γöé187  ΓöéSF250000  ΓöéUpper right box corner double           Γöé
  13060. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13061. Γöé188  ΓöéSF260000  ΓöéLower right box corner double           Γöé
  13062. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13063. Γöé189  ΓöéSC040000  ΓöéCent sign                               Γöé
  13064. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13065. Γöé190  ΓöéSC050000  ΓöéYen sign                                Γöé
  13066. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13067. Γöé191  ΓöéSF030000  ΓöéUpper right box corner                  Γöé
  13068. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13069. Γöé192  ΓöéSF020000  ΓöéLower left box corner                   Γöé
  13070. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13071. Γöé193  ΓöéSF070000  ΓöéMiddle box bottom                       Γöé
  13072. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13073. Γöé194  ΓöéSF060000  ΓöéMiddle box top                          Γöé
  13074. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13075. Γöé195  ΓöéSF080000  ΓöéLeft middle box side                    Γöé
  13076. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13077. Γöé196  ΓöéSF100000  ΓöéCenter box bar horizontal               Γöé
  13078. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13079. Γöé197  ΓöéSF050000  ΓöéBox intersection                        Γöé
  13080. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13081. Γöé198  ΓöéLA190000  ΓöéA tilde small                           Γöé
  13082. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13083. Γöé199  ΓöéLA200000  ΓöéA tilde capital                         Γöé
  13084. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13085. Γöé200  ΓöéSF380000  ΓöéLower left box corner double            Γöé
  13086. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13087. Γöé201  ΓöéSF390000  ΓöéUpper left box corner double            Γöé
  13088. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13089. Γöé202  ΓöéSF400000  ΓöéMiddle box bottom double                Γöé
  13090. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13091. Γöé203  ΓöéSF410000  ΓöéMiddle box top double                   Γöé
  13092. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13093. Γöé204  ΓöéSF420000  ΓöéLeft box side double                    Γöé
  13094. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13095. Γöé205  ΓöéSF430000  ΓöéCenter box bar horizontal double        Γöé
  13096. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13097. Γöé206  ΓöéSF440000  ΓöéBox intersection double                 Γöé
  13098. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13099. Γöé207  ΓöéSC010000  ΓöéInternational currency symbol           Γöé
  13100. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13101. Γöé208  ΓöéLD630000  Γöéeth Icelandic small                     Γöé
  13102. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13103. Γöé209  ΓöéLD620000  ΓöéD stroke capital, Eth Icelandic capital Γöé
  13104. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13105. Γöé210  ΓöéLE160000  ΓöéE circumflex capital                    Γöé
  13106. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13107. Γöé211  ΓöéLE180000  ΓöéE diaeresis capital                     Γöé
  13108. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13109. Γöé212  ΓöéLE140000  ΓöéE grave capital                         Γöé
  13110. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13111. Γöé213  ΓöéLI610000  ΓöéI dotless small                         Γöé
  13112. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13113. Γöé214  ΓöéLI120000  ΓöéI acute capital                         Γöé
  13114. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13115. Γöé215  ΓöéLI160000  ΓöéI circumflex capital                    Γöé
  13116. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13117. Γöé216  ΓöéLI180000  ΓöéI diaeresis capital                     Γöé
  13118. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13119. Γöé217  ΓöéSF040000  ΓöéLower right box corner                  Γöé
  13120. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13121. Γöé218  ΓöéSF010000  ΓöéUpper left box corner                   Γöé
  13122. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13123. Γöé219  ΓöéSF610000  ΓöéSolid fill character                    Γöé
  13124. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13125. Γöé220  ΓöéSF570000  ΓöéSolid fill character, bottom half       Γöé
  13126. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13127. Γöé221  ΓöéSM650000  ΓöéVertical line, broken                   Γöé
  13128. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13129. Γöé222  ΓöéLI140000  ΓöéI grave capital                         Γöé
  13130. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13131. Γöé223  ΓöéSF600000  ΓöéSolid fill character, top half          Γöé
  13132. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13133. Γöé224  ΓöéLO120000  ΓöéO acute capital                         Γöé
  13134. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13135. Γöé225  ΓöéLS610000  ΓöéSharp s small                           Γöé
  13136. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13137. Γöé226  ΓöéLO160000  ΓöéO circumflex capital                    Γöé
  13138. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13139. Γöé227  ΓöéLO140000  ΓöéO grave capital                         Γöé
  13140. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13141. Γöé228  ΓöéLO190000  ΓöéO tilde small                           Γöé
  13142. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13143. Γöé229  ΓöéLO200000  ΓöéO tilde capital                         Γöé
  13144. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13145. Γöé230  ΓöéSM170000  ΓöéMicro symbol                            Γöé
  13146. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13147. Γöé231  ΓöéLT630000  ΓöéThorn Icelandic small                   Γöé
  13148. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13149. Γöé232  ΓöéLT640000  ΓöéThorn Icelandic capital                 Γöé
  13150. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13151. Γöé233  ΓöéLU120000  ΓöéU acute capital                         Γöé
  13152. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13153. Γöé234  ΓöéLU160000  ΓöéU circumflex capital                    Γöé
  13154. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13155. Γöé235  ΓöéLU140000  ΓöéU grave capital                         Γöé
  13156. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13157. Γöé236  ΓöéLY110000  Γöéy acute small                           Γöé
  13158. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13159. Γöé237  ΓöéLY120000  ΓöéY acute capital                         Γöé
  13160. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13161. Γöé238  ΓöéSM150000  ΓöéOverline                                Γöé
  13162. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13163. Γöé239  ΓöéSD110000  ΓöéAcute accent                            Γöé
  13164. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13165. Γöé240  ΓöéSP320000  ΓöéSyllable hyphen                         Γöé
  13166. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13167. Γöé241  ΓöéSA020000  ΓöéPlus or minus sign                      Γöé
  13168. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13169. Γöé242  ΓöéSM100000  ΓöéDouble underscore                       Γöé
  13170. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13171. Γöé243  ΓöéNF050000  ΓöéThree-quarters                          Γöé
  13172. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13173. Γöé244  ΓöéSM250000  ΓöéParagraph symbol (USA)                  Γöé
  13174. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13175. Γöé245  ΓöéSM240000  ΓöéSection symbol (USA), paragraph (Europe)Γöé
  13176. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13177. Γöé246  ΓöéSA060000  ΓöéDivide sign                             Γöé
  13178. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13179. Γöé247  ΓöéSD410000  ΓöéCedilla (or sedila) accent              Γöé
  13180. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13181. Γöé248  ΓöéSM190000  ΓöéDegree symbol                           Γöé
  13182. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13183. Γöé249  ΓöéSD170000  ΓöéDiaeresis, umlaut accent                Γöé
  13184. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13185. Γöé250  ΓöéSD630000  ΓöéMiddle dot                              Γöé
  13186. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13187. Γöé251  ΓöéND011000  ΓöéOne superscript                         Γöé
  13188. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13189. Γöé252  ΓöéND031000  ΓöéThree superscript                       Γöé
  13190. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13191. Γöé253  ΓöéND021000  ΓöéTwo superscript                         Γöé
  13192. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13193. Γöé254  ΓöéSM470000  ΓöéSolid square, histogram, square bullet  Γöé
  13194. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13195. Γöé255  ΓöéSP300000  ΓöéRequired space                          Γöé
  13196. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13197. Γöé256  ΓöéSC060000  ΓöéPeseta sign                             Γöé
  13198. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13199. Γöé257  ΓöéSM680000  ΓöéStart of line symbol                    Γöé
  13200. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13201. Γöé258  ΓöéSF190000  ΓöéRight box side double to single         Γöé
  13202. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13203. Γöé259  ΓöéSF200000  ΓöéRight box side single to double         Γöé
  13204. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13205. Γöé260  ΓöéSF210000  ΓöéUpper right box corner single to double Γöé
  13206. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13207. Γöé261  ΓöéSF220000  ΓöéUpper right box corner double to single Γöé
  13208. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13209. Γöé262  ΓöéSF270000  ΓöéLower right box corner single to double Γöé
  13210. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13211. Γöé263  ΓöéSF280000  ΓöéLower right box corner double to single Γöé
  13212. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13213. Γöé264  ΓöéSF360000  ΓöéLeft box side single to double          Γöé
  13214. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13215. Γöé265  ΓöéSF370000  ΓöéLeft box side double to single          Γöé
  13216. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13217. Γöé266  ΓöéSF450000  ΓöéMiddle box bottom single to double      Γöé
  13218. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13219. Γöé267  ΓöéSF460000  ΓöéMiddle box bottom double to single      Γöé
  13220. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13221. Γöé268  ΓöéSF470000  ΓöéMiddle box top double to single         Γöé
  13222. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13223. Γöé269  ΓöéSF480000  ΓöéMiddle box top single to double         Γöé
  13224. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13225. Γöé270  ΓöéSF490000  ΓöéLower left box corner double to single  Γöé
  13226. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13227. Γöé271  ΓöéSF500000  ΓöéLower left box corner single to double  Γöé
  13228. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13229. Γöé272  ΓöéSF510000  ΓöéUpper left box corner single to double  Γöé
  13230. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13231. Γöé273  ΓöéSF520000  ΓöéUpper left box corner double to single  Γöé
  13232. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13233. Γöé274  ΓöéSF530000  ΓöéBox intersection single to double       Γöé
  13234. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13235. Γöé275  ΓöéSF540000  ΓöéBox intersection double to single       Γöé
  13236. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13237. Γöé276  ΓöéSF580000  ΓöéSolid fill character, left half         Γöé
  13238. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13239. Γöé277  ΓöéSF590000  ΓöéSolid fill character, right half        Γöé
  13240. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13241. Γöé278  ΓöéGA010000  ΓöéAlpha small                             Γöé
  13242. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13243. Γöé279  ΓöéGG020000  ΓöéGamma capital                           Γöé
  13244. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13245. Γöé280  ΓöéGP010000  ΓöéPi small                                Γöé
  13246. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13247. Γöé281  ΓöéGS020000  ΓöéSigma capital                           Γöé
  13248. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13249. Γöé282  ΓöéGS010000  ΓöéSigma small                             Γöé
  13250. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13251. Γöé283  ΓöéGT010000  ΓöéTau small                               Γöé
  13252. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13253. Γöé284  ΓöéGF020000  ΓöéPhi capital                             Γöé
  13254. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13255. Γöé285  ΓöéGT620000  ΓöéTheta capital                           Γöé
  13256. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13257. Γöé286  ΓöéGO320000  ΓöéOmega capital                           Γöé
  13258. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13259. Γöé287  ΓöéGD010000  ΓöéDelta small                             Γöé
  13260. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13261. Γöé288  ΓöéSA450000  ΓöéInfinity symbol                         Γöé
  13262. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13263. Γöé289  ΓöéGF010000  ΓöéPhi small                               Γöé
  13264. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13265. Γöé290  ΓöéGE010000  ΓöéEpsilon small                           Γöé
  13266. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13267. Γöé291  ΓöéSA380000  ΓöéIntersection, logical product           Γöé
  13268. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13269. Γöé292  ΓöéSA480000  ΓöéIndentity symbol, almost equal          Γöé
  13270. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13271. Γöé293  ΓöéSA530000  ΓöéGreater than or equal sign              Γöé
  13272. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13273. Γöé294  ΓöéSA520000  ΓöéLess than or equal sign                 Γöé
  13274. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13275. Γöé295  ΓöéSS260000  ΓöéUpper integral symbol section           Γöé
  13276. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13277. Γöé296  ΓöéSS270000  ΓöéLower integral symbol section           Γöé
  13278. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13279. Γöé297  ΓöéSA700000  ΓöéNearly equals symbol                    Γöé
  13280. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13281. Γöé298  ΓöéSA790000  ΓöéProduct dot                             Γöé
  13282. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13283. Γöé299  ΓöéSA800000  ΓöéRadical symbol                          Γöé
  13284. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13285. Γöé300  ΓöéLN011000  ΓöéN small superscript                     Γöé
  13286. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13287. Γöé301  ΓöéSD310000  ΓöéMacron accent                           Γöé
  13288. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13289. Γöé302  ΓöéSD230000  ΓöéBreve accent                            Γöé
  13290. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13291. Γöé303  ΓöéSD290000  ΓöéOverdot accent (over small Alpha)       Γöé
  13292. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13293. Γöé304  ΓöéSD270000  ΓöéOvercircle accent                       Γöé
  13294. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13295. Γöé305  ΓöéSD250000  ΓöéDouble acute accent                     Γöé
  13296. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13297. Γöé306  ΓöéSD430000  ΓöéOgonek accent                           Γöé
  13298. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13299. Γöé307  ΓöéSD210000  ΓöéCaron accent                            Γöé
  13300. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13301. Γöé308  ΓöéSP190000  ΓöéLeft single quote                       Γöé
  13302. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13303. Γöé309  ΓöéSP200000  ΓöéRight single quote                      Γöé
  13304. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13305. Γöé310  ΓöéSP210000  ΓöéLeft double quotes                      Γöé
  13306. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13307. Γöé311  ΓöéSP220000  ΓöéRight double quotes                     Γöé
  13308. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13309. Γöé312  ΓöéSS680000  ΓöéEndash                                  Γöé
  13310. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13311. Γöé313  ΓöéSM900000  ΓöéEmdash                                  Γöé
  13312. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13313. Γöé314  ΓöéSD150000  ΓöéCircumflex accent                       Γöé
  13314. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13315. Γöé315  ΓöéSD190000  ΓöéTilde accent                            Γöé
  13316. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13317. Γöé316  ΓöéSP260000  ΓöéSingle quote on baseline (German lower) Γöé
  13318. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13319. Γöé317  ΓöéSP230000  ΓöéLeft lower double quotes                Γöé
  13320. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13321. Γöé318  ΓöéSV520000  ΓöéEllipsis                                Γöé
  13322. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13323. Γöé319  ΓöéSM340000  ΓöéDagger footnote indicator               Γöé
  13324. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13325. Γöé320  ΓöéSM350000  ΓöéDouble dagger footnote indicator        Γöé
  13326. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13327. Γöé321  ΓöéSD150100  ΓöéCircumflex accent (over small alpha)    Γöé
  13328. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13329. Γöé322  ΓöéSM560000  ΓöéPermille symbol                         Γöé
  13330. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13331. Γöé323  ΓöéLS220000  ΓöéS caron capital                         Γöé
  13332. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13333. Γöé324  ΓöéSP270000  ΓöéFrench single open quote                Γöé
  13334. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13335. Γöé325  ΓöéLO520000  ΓöéOE ligature capital                     Γöé
  13336. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13337. Γöé326  ΓöéSD190100  ΓöéTilde accent (over small alpha)         Γöé
  13338. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13339. Γöé327  ΓöéSM540000  ΓöéTrademark symbol                        Γöé
  13340. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13341. Γöé328  ΓöéLS210000  Γöés caron small                           Γöé
  13342. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13343. Γöé329  ΓöéSP280000  ΓöéFrench single close quote               Γöé
  13344. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13345. Γöé330  ΓöéLO510000  Γöéoe ligature small                       Γöé
  13346. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13347. Γöé331  ΓöéLY180000  ΓöéY diaeresis capital                     Γöé
  13348. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13349. Γöé332  ΓöéLG230000  Γöég Breve Small                           Γöé
  13350. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13351. Γöé333  ΓöéLG240000  ΓöéG Breve Capital                         Γöé
  13352. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13353. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13354. Γöé334  ΓöéLI300000  ΓöéI Overdot Capital                       Γöé
  13355. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13356. Γöé335  ΓöéLS410000  Γöés Cedilla Small                         Γöé
  13357. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13358. Γöé336  ΓöéLS420000  ΓöéS Cedilla Capital                       Γöé
  13359. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13360. Γöé337  ΓöéLA230000  Γöéa Breve Small                           Γöé
  13361. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13362. Γöé338  ΓöéLA240000  ΓöéA Breve Capital                         Γöé
  13363. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13364. Γöé339  ΓöéLA430000  Γöéa Ogonek Small                          Γöé
  13365. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13366. Γöé340  ΓöéLA440000  ΓöéA Ogonek Capital                        Γöé
  13367. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13368. Γöé341  ΓöéLC110000  Γöéc Acute Small                           Γöé
  13369. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13370. Γöé342  ΓöéLC120000  ΓöéC Acute Capital                         Γöé
  13371. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13372. Γöé343  ΓöéLC210000  Γöéc Caron Small                           Γöé
  13373. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13374. Γöé344  ΓöéLC220000  ΓöéC Caron Capital                         Γöé
  13375. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13376. Γöé345  ΓöéLD210000  Γöéd Caron Small                           Γöé
  13377. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13378. Γöé346  ΓöéLD220000  ΓöéD Caron Capital                         Γöé
  13379. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13380. Γöé347  ΓöéLD610000  Γöéd Stroke Small                          Γöé
  13381. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13382. Γöé348  ΓöéLE210000  Γöée Caron Small                           Γöé
  13383. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13384. Γöé349  ΓöéLE220000  ΓöéE Caron Capital                         Γöé
  13385. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13386. Γöé350  ΓöéLE430000  Γöée Ogenek Small                          Γöé
  13387. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13388. Γöé351  ΓöéLE440000  ΓöéE Ogonek Capital                        Γöé
  13389. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13390. Γöé352  ΓöéLL110000  Γöél Acute Small                           Γöé
  13391. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13392. Γöé353  ΓöéLL120000  ΓöéL Acute Capital                         Γöé
  13393. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13394. Γöé354  ΓöéLL210000  Γöél Caron Small                           Γöé
  13395. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13396. Γöé355  ΓöéLL220000  ΓöéL Caron Capital                         Γöé
  13397. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13398. Γöé356  ΓöéLL610000  Γöél Stroke Small                          Γöé
  13399. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13400. Γöé357  ΓöéLL620000  ΓöéL Stroke Capital                        Γöé
  13401. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13402. Γöé358  ΓöéLN110000  Γöén Acute Small                           Γöé
  13403. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13404. Γöé359  ΓöéLN120000  ΓöéN Acute Capital                         Γöé
  13405. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13406. Γöé360  ΓöéLN210000  Γöén Caron Small                           Γöé
  13407. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13408. Γöé361  ΓöéLN220000  ΓöéN Caron Capital                         Γöé
  13409. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13410. Γöé362  ΓöéLO250000  Γöéo Double Acute Small                    Γöé
  13411. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13412. Γöé363  ΓöéLO260000  ΓöéO Double Acute Capital                  Γöé
  13413. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13414. Γöé364  ΓöéLR110000  Γöér Acute Small                           Γöé
  13415. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13416. Γöé365  ΓöéLR120000  ΓöéR Acute Capital                         Γöé
  13417. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13418. Γöé366  ΓöéLR210000  Γöér Caron Small                           Γöé
  13419. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13420. Γöé367  ΓöéLR220000  ΓöéR Caron Capital                         Γöé
  13421. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13422. Γöé368  ΓöéLS110000  Γöés Acute Small                           Γöé
  13423. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13424. Γöé369  ΓöéLS120000  ΓöéS Acute Capital                         Γöé
  13425. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13426. Γöé370  ΓöéLT210000  Γöét Caron Small                           Γöé
  13427. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13428. Γöé371  ΓöéLT220000  ΓöéT Caron Capital                         Γöé
  13429. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13430. Γöé372  ΓöéLT410000  Γöét Cedilla Small                         Γöé
  13431. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13432. Γöé373  ΓöéLT420000  ΓöéT Cedilla Capital                       Γöé
  13433. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13434. Γöé374  ΓöéLU250000  Γöéu Double Acute Small                    Γöé
  13435. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13436. Γöé375  ΓöéLU260000  ΓöéU Double Acute Capital                  Γöé
  13437. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13438. Γöé376  ΓöéLU270000  Γöéu Overcircle Small                      Γöé
  13439. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13440. Γöé377  ΓöéLU280000  Γöéu Overcircle Capital                    Γöé
  13441. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13442. Γöé378  ΓöéLZ110000  Γöéz Acute Small                           Γöé
  13443. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13444. Γöé379  ΓöéLZ120000  ΓöéZ Acute Capital                         Γöé
  13445. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13446. Γöé380  ΓöéLZ210000  Γöéz Caron Small                           Γöé
  13447. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13448. Γöé381  ΓöéLZ220000  ΓöéZ Caron Capital                         Γöé
  13449. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13450. Γöé382  ΓöéLZ290000  Γöéz Overdot Small                         Γöé
  13451. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13452. Γöé383  ΓöéLZ300000  ΓöéZ Overdot Capital                       Γöé
  13453. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  13454.  
  13455.  
  13456. ΓòÉΓòÉΓòÉ 15.3. Fonts Supplied with the OS/2 Operating System ΓòÉΓòÉΓòÉ
  13457.  
  13458. OS/2 outline fonts and Presentation Manager bit map fonts are supplied by the 
  13459. operating system. 
  13460.  
  13461. OS/2 Outline Fonts 
  13462.  
  13463. The following Adobe Type 1 fonts are supplied with OS/2: 
  13464.  
  13465. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  13466. ΓöéFamily Name                             ΓöéFace Name                               Γöé
  13467. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13468. ΓöéTimes New Roman                         ΓöéTimes New Roman                         Γöé
  13469. Γöé                                        ΓöéTimes New Roman Bold                    Γöé
  13470. Γöé                                        ΓöéTimes New Roman Bold Italic             Γöé
  13471. Γöé                                        ΓöéTimes New Roman Italic                  Γöé
  13472. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13473. ΓöéHelvetica                               ΓöéHelvetica                               Γöé
  13474. Γöé                                        ΓöéHelvetica Bold                          Γöé
  13475. Γöé                                        ΓöéHelvetica Bold Italic                   Γöé
  13476. Γöé                                        ΓöéHelvetica Italic                        Γöé
  13477. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13478. ΓöéCourier                                 ΓöéCourier                                 Γöé
  13479. Γöé                                        ΓöéCourier Bold                            Γöé
  13480. Γöé                                        ΓöéCourier Bold Italic                     Γöé
  13481. Γöé                                        ΓöéCourier Italic                          Γöé
  13482. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13483. ΓöéSymbol                                  ΓöéSymbol                                  Γöé
  13484. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  13485.  
  13486. The Courier, Tms Rmn, and Swiss family fonts that were supplied with OS/2 
  13487. release 1.1 and 1.2 are no longer supplied.  Using one of the old names results 
  13488. in one of the new fonts listed above being used, as follows: 
  13489.  
  13490.  Old Family/Face Name     Font Used. 
  13491.  Roman/Tms Rmn            Times New Roman 
  13492.  Swiss/Helv               Helvetica 
  13493.  
  13494.  These fonts are provided in an efficient binary format for use by the OS/2 
  13495.  Adobe Type Manager. They are also provided in standard Type 1 format (PFB and 
  13496.  AFM) for use with the OS/2 PostScript printer device driver. 
  13497.  
  13498.  Presentation Manager Bit Map Fonts 
  13499.  
  13500.  The following tables list all system bit map fonts available using the 
  13501.  Graphics Programming Interface. The first table applies to hardware that does 
  13502.  not conform to the International Standards Organization (ISO) 9241. (See 
  13503.  International Standards Organization (ISO) 9241 for more information on ISO 
  13504.  9241.) The second table lists the fonts supplied with OS/2 for IBM hardware 
  13505.  that does conform to ISO 9241. 
  13506.  
  13507.  During system installation, the operating system determines the type of 
  13508.  display adapter available on your computer and installs only the fonts which 
  13509.  match the device resolution. Since additional device bit map fonts may be 
  13510.  available on specific devices, you may have to install the correct bit map 
  13511.  fonts if you change your display device after the operating system is 
  13512.  installed. 
  13513.  
  13514.  Fonts Supplied for ISO 9241 Non-Conforming Hardware 
  13515.  
  13516.  The following information for each font is included in the table: 
  13517.  
  13518.  Points   This is the point size of the font, on a device whose resolution 
  13519.           matches that of the font, (see "Device" below). 
  13520.  
  13521.  Ave Wid  This is the average width in pels of alphabetic characters weighted 
  13522.           according to US English letter frequencies. 
  13523.  
  13524.  Max Wid  This is the maximum width in pels of all characters in the font. This 
  13525.           field is not necessarily the maximum width of any character in the 
  13526.           code page. It could be used to ensure that the horizontal space 
  13527.           allocated on a display or printer is big enough to handle any 
  13528.           character. 
  13529.  
  13530.  Height   This is the height in pels of the font.  This is the minimum number 
  13531.           of rows of pels needed to output any character of the font on a given 
  13532.           baseline. This field may be larger than necessary for a given code 
  13533.           page. It could be used to ensure that the vertical space allocated on 
  13534.           a display or printer is big enough to handle any character. 
  13535.  
  13536.  Device   This is the X and Y resolution in pels per inch at which the font is 
  13537.           intended to be used. Only those fonts which match the device 
  13538.           resolution of the installed display driver are available on the 
  13539.           system. If the installed display is changed, the install process will 
  13540.           reinstall the proper font sets for the new adapter. The IBM devices 
  13541.           whose device drivers report these resolutions are: 
  13542.  
  13543.           96 x 48              CGA 
  13544.           96 x 72              EGA 
  13545.           96 x 96              VGA and XGA (in 640 x 480 mode) 
  13546.           120 x 120            8514/A and XGA (in 1024 x 768 mode) 
  13547.  
  13548.           Note:  These values are approximate representations of the actual 
  13549.                  resolution, which in the case of displays depends on which 
  13550.                  monitor is attached. Consequently the point size of characters 
  13551.                  on the screen is also approximate. 
  13552.  The following table applies to hardware that does not conform to ISO 9241. 
  13553.  
  13554.   ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  13555.   ΓöéFamily    ΓöéFace Name         ΓöéPoints    ΓöéAve Wid   ΓöéMax Wid   ΓöéHeight   ΓöéDevice   Γöé
  13556.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13557.   ΓöéCourier   ΓöéCourier           Γöé8         Γöé8         Γöé8         Γöé7        Γöé96x48    Γöé
  13558.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13559.   Γöé          Γöé                  Γöé          Γöé8         Γöé8         Γöé10       Γöé96x72    Γöé
  13560.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13561.   Γöé          Γöé                  Γöé          Γöé8         Γöé8         Γöé13       Γöé96x96    Γöé
  13562.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13563.   Γöé          Γöé                  Γöé          Γöé9         Γöé9         Γöé16       Γöé120x120  Γöé
  13564.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13565.   Γöé          Γöé                  Γöé10        Γöé9         Γöé9         Γöé8        Γöé96x48    Γöé
  13566.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13567.   Γöé          Γöé                  Γöé          Γöé9         Γöé9         Γöé12       Γöé96x72    Γöé
  13568.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13569.   Γöé          Γöé                  Γöé          Γöé9         Γöé9         Γöé16       Γöé96x96    Γöé
  13570.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13571.   Γöé          Γöé                  Γöé          Γöé12        Γöé12        Γöé20       Γöé120x120  Γöé
  13572.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13573.   Γöé          Γöé                  Γöé12        Γöé12        Γöé12        Γöé10       Γöé96x48    Γöé
  13574.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13575.   Γöé          Γöé                  Γöé          Γöé12        Γöé12        Γöé15       Γöé96x72    Γöé
  13576.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13577.   Γöé          Γöé                  Γöé          Γöé12        Γöé12        Γöé20       Γöé96x96    Γöé
  13578.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13579.   Γöé          Γöé                  Γöé          Γöé15        Γöé15        Γöé25       Γöé120x120  Γöé
  13580.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13581.   ΓöéSystem    ΓöéSystem            Γöé8         Γöé6         Γöé20        Γöé8        Γöé96x48    Γöé
  13582.   ΓöéPro-      ΓöéProportional      Γöé          Γöé          Γöé          Γöé         Γöé         Γöé
  13583.   Γöéportional Γöé                  Γöé          Γöé          Γöé          Γöé         Γöé         Γöé
  13584.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13585.   Γöé          Γöé                  Γöé10        Γöé6         Γöé20        Γöé12       Γöé96x96    Γöé
  13586.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13587.   Γöé          Γöé                  Γöé10        Γöé6         Γöé20        Γöé16       Γöé96x96    Γöé
  13588.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13589.   Γöé          Γöé                  Γöé10        Γöé8         Γöé23        Γöé20       Γöé120x120  Γöé
  13590.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13591.   Γöé          Γöé                  Γöé11        Γöé10        Γöé23        Γöé23       Γöé120x120  Γöé
  13592.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13593.   ΓöéSystem    ΓöéSystem Monospaced Γöé8         Γöé8         Γöé8         Γöé8        Γöé96x48    Γöé
  13594.   ΓöéMono-     Γöé                  Γöé          Γöé          Γöé          Γöé         Γöé         Γöé
  13595.   Γöéspaced    Γöé                  Γöé          Γöé          Γöé          Γöé         Γöé         Γöé
  13596.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13597.   Γöé          Γöé                  Γöé10        Γöé8         Γöé8         Γöé12       Γöé96x72    Γöé
  13598.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13599.   Γöé          Γöé                  Γöé10        Γöé8         Γöé8         Γöé16       Γöé96x96    Γöé
  13600.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13601.   Γöé          Γöé                  Γöé10        Γöé9         Γöé9         Γöé20       Γöé120x120  Γöé
  13602.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13603.   ΓöéHelv      ΓöéHelv              Γöé8         Γöé5         Γöé13        Γöé6        Γöé96x48    Γöé
  13604.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13605.   Γöé          Γöé                  Γöé          Γöé5         Γöé13        Γöé10       Γöé96x72    Γöé
  13606.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13607.   Γöé          Γöé                  Γöé          Γöé5         Γöé13        Γöé13       Γöé96x96    Γöé
  13608.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13609.   Γöé          Γöé                  Γöé          Γöé6         Γöé14        Γöé16       Γöé120x120  Γöé
  13610.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13611.   Γöé          Γöé                  Γöé10        Γöé6         Γöé15        Γöé8        Γöé96x48    Γöé
  13612.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13613.   Γöé          Γöé                  Γöé          Γöé6         Γöé14        Γöé12       Γöé96x72    Γöé
  13614.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13615.   Γöé          Γöé                  Γöé          Γöé6         Γöé14        Γöé16       Γöé96x96    Γöé
  13616.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13617.   Γöé          Γöé                  Γöé          Γöé7         Γöé20        Γöé20       Γöé120x120  Γöé
  13618.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13619.   Γöé          Γöé                  Γöé12        Γöé7         Γöé17        Γöé10       Γöé96x48    Γöé
  13620.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13621.   Γöé          Γöé                  Γöé          Γöé7         Γöé17        Γöé15       Γöé96x72    Γöé
  13622.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13623.   Γöé          Γöé                  Γöé          Γöé7         Γöé17        Γöé20       Γöé96x96    Γöé
  13624.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13625.   Γöé          Γöé                  Γöé          Γöé9         Γöé21        Γöé25       Γöé120x120  Γöé
  13626.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13627.   Γöé          Γöé                  Γöé14        Γöé8         Γöé21        Γöé12       Γöé96x48    Γöé
  13628.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13629.   Γöé          Γöé                  Γöé          Γöé8         Γöé21        Γöé18       Γöé96x72    Γöé
  13630.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13631.   Γöé          Γöé                  Γöé          Γöé8         Γöé21        Γöé24       Γöé96x96    Γöé
  13632.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13633.   Γöé          Γöé                  Γöé          Γöé11        Γöé26        Γöé29       Γöé120x120  Γöé
  13634.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13635.   Γöé          Γöé                  Γöé18        Γöé11        Γöé26        Γöé15       Γöé96x48    Γöé
  13636.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13637.   Γöé          Γöé                  Γöé          Γöé10        Γöé26        Γöé22       Γöé96x72    Γöé
  13638.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13639.   Γöé          Γöé                  Γöé          Γöé11        Γöé26        Γöé29       Γöé96x96    Γöé
  13640.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13641.   Γöé          Γöé                  Γöé          Γöé13        Γöé34        Γöé36       Γöé120x120  Γöé
  13642.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13643.   Γöé          Γöé                  Γöé24        Γöé14        Γöé35        Γöé19       Γöé96x48    Γöé
  13644.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13645.   Γöé          Γöé                  Γöé          Γöé14        Γöé35        Γöé28       Γöé96x72    Γöé
  13646.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13647.   Γöé          Γöé                  Γöé          Γöé14        Γöé35        Γöé37       Γöé96x96    Γöé
  13648.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13649.   Γöé          Γöé                  Γöé          Γöé18        Γöé45        Γöé46       Γöé120x120  Γöé
  13650.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13651.   ΓöéTms Rmn   ΓöéTms Rmn           Γöé8         Γöé4         Γöé12        Γöé6        Γöé96x48    Γöé
  13652.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13653.   Γöé          Γöé                  Γöé          Γöé4         Γöé13        Γöé10       Γöé96x72    Γöé
  13654.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13655.   Γöé          Γöé                  Γöé          Γöé4         Γöé12        Γöé13       Γöé96x96    Γöé
  13656.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13657.   Γöé          Γöé                  Γöé          Γöé5         Γöé14        Γöé16       Γöé120x120  Γöé
  13658.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13659.   Γöé          Γöé                  Γöé10        Γöé6         Γöé15        Γöé8        Γöé96x48    Γöé
  13660.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13661.   Γöé          Γöé                  Γöé          Γöé5         Γöé14        Γöé12       Γöé96x72    Γöé
  13662.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13663.   Γöé          Γöé                  Γöé          Γöé5         Γöé14        Γöé16       Γöé96x96    Γöé
  13664.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13665.   Γöé          Γöé                  Γöé          Γöé7         Γöé19        Γöé20       Γöé120x120  Γöé
  13666.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13667.   Γöé          Γöé                  Γöé12        Γöé7         Γöé18        Γöé10       Γöé96x48    Γöé
  13668.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13669.   Γöé          Γöé                  Γöé          Γöé6         Γöé18        Γöé15       Γöé96x72    Γöé
  13670.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13671.   Γöé          Γöé                  Γöé          Γöé6         Γöé16        Γöé19       Γöé96x96    Γöé
  13672.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13673.   Γöé          Γöé                  Γöé          Γöé8         Γöé23        Γöé23       Γöé120x120  Γöé
  13674.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13675.   Γöé          Γöé                  Γöé14        Γöé7         Γöé21        Γöé11       Γöé96x48    Γöé
  13676.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13677.   Γöé          Γöé                  Γöé          Γöé7         Γöé21        Γöé16       Γöé96x72    Γöé
  13678.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13679.   Γöé          Γöé                  Γöé          Γöé7         Γöé20        Γöé21       Γöé96x96    Γöé
  13680.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13681.   Γöé          Γöé                  Γöé          Γöé10        Γöé26        Γöé27       Γöé120x120  Γöé
  13682.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13683.   Γöé          Γöé                  Γöé18        Γöé10        Γöé26        Γöé14       Γöé96x48    Γöé
  13684.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13685.   Γöé          Γöé                  Γöé          Γöé10        Γöé26        Γöé20       Γöé96x72    Γöé
  13686.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13687.   Γöé          Γöé                  Γöé          Γöé10        Γöé26        Γöé27       Γöé96x96    Γöé
  13688.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13689.   Γöé          Γöé                  Γöé          Γöé12        Γöé34        Γöé33       Γöé120x120  Γöé
  13690.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13691.   Γöé          Γöé                  Γöé24        Γöé14        Γöé35        Γöé18       Γöé96x48    Γöé
  13692.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13693.   Γöé          Γöé                  Γöé          Γöé13        Γöé35        Γöé26       Γöé96x72    Γöé
  13694.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13695.   Γöé          Γöé                  Γöé          Γöé13        Γöé35        Γöé35       Γöé96x96    Γöé
  13696.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13697.   Γöé          Γöé                  Γöé          Γöé16        Γöé46        Γöé43       Γöé120x120  Γöé
  13698.   ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  13699.  
  13700.  Fonts Supplied for ISO 9241 Conforming Hardware 
  13701.  
  13702.  The following table lists the fonts and sizes that have been tested and 
  13703.  certified as passing the ISO 9241 black text on white background criteria for 
  13704.  the three IBM displays that conform to the standard. These displays are: 
  13705.  
  13706.      9515 - A 14 inch XGA display. 
  13707.      9517 - A 17 inch XGA display. 
  13708.      9518 - A 14 inch VGA display. 
  13709.  
  13710.  See International Standards Organization (ISO) 9241 for information on ISO 
  13711.  9241. 
  13712.  
  13713.  The following information about each font is also included in the table: 
  13714.  
  13715.  P        The point size of the font. 
  13716.  AW       The average character width in pels in the font. 
  13717.  MW       The maximum character width in pels in the font. 
  13718.  HE       The height in pels of the font (maximum baseline extent). 
  13719.  Device   The X and Y resolution in pels per inch on the device the font is 
  13720.           intended to be used. The IBM devices whose device drivers report 
  13721.           these resolutions are: 
  13722.           96 x 96              VGA and XGA (in 640 x 480 mode) 
  13723.           120 x 120            XGA (in 1024 x 768 mode) 
  13724.  
  13725.   ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  13726.   ΓöéFamily      ΓöéFace Name   ΓöéP   AW  MW  HE      ΓöéDevice       Γöé9515  9517  9518     Γöé
  13727.   ΓöéName        Γöé            Γöé                    Γöé             Γöé                     Γöé
  13728.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13729.   ΓöéCourier     ΓöéCourier ISO Γöé 8   8   8  13      Γöé 96   96     ΓöéNo    No    No       Γöé
  13730.   Γöé            Γöé            Γöé 8  10  10  16      Γöé120  120     ΓöéNo    No    n/a      Γöé
  13731.   Γöé            Γöé            Γöé 9   8   8  15      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13732.   Γöé            Γöé            Γöé10  10  10  16      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13733.   Γöé            Γöé            Γöé10  12  12  20      Γöé120  120     ΓöéNo    No    n/a      Γöé
  13734.   Γöé            Γöé            Γöé12  12  12  20      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13735.   Γöé            Γöé            Γöé12  15  15  25      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13736.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13737.   ΓöéHelv        ΓöéHelv ISO    Γöé 8   5  13  13      Γöé 96   96     ΓöéNo    No    No       Γöé
  13738.   Γöé            Γöé            Γöé 8   7  14  16      Γöé120  120     ΓöéNo    No    n/a      Γöé
  13739.   Γöé            Γöé            Γöé 9   6  13  15      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13740.   Γöé            Γöé            Γöé 9   8  20  21      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13741.   Γöé            Γöé            Γöé10   7  14  16      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13742.   Γöé            Γöé            Γöé10   9  20  21      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13743.   Γöé            Γöé            Γöé12   9  17  20      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13744.   Γöé            Γöé            Γöé12  10  21  25      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13745.   Γöé            Γöé            Γöé14  10  21  24      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13746.   Γöé            Γöé            Γöé14  12  26  29      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13747.   Γöé            Γöé            Γöé18  12  26  29      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13748.   Γöé            Γöé            Γöé18  15  34  36      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13749.   Γöé            Γöé            Γöé24  14  34  36      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13750.   Γöé            Γöé            Γöé24  19  45  46      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13751.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13752.   ΓöéTms Rmn     ΓöéTms Rmn ISO Γöé 8   5  12  13      Γöé 96   96     ΓöéNo    No    No       Γöé
  13753.   Γöé            Γöé            Γöé 8   7  15  16      Γöé120  120     ΓöéNo    No    n/a      Γöé
  13754.   Γöé            Γöé            Γöé 9   6  12  15      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13755.   Γöé            Γöé            Γöé10   7  14  16      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13756.   Γöé            Γöé            Γöé10   8  17  19      Γöé120  120     ΓöéNo    Yes   n/a      Γöé
  13757.   Γöé            Γöé            Γöé12   8  16  19      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13758.   Γöé            Γöé            Γöé12  10  23  22      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13759.   Γöé            Γöé            Γöé14   9  23  22      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13760.   Γöé            Γöé            Γöé14  11  26  27      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13761.   Γöé            Γöé            Γöé18  11  26  27      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13762.   Γöé            Γöé            Γöé18  14  34  34      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13763.   Γöé            Γöé            Γöé24  14  34  34      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13764.   Γöé            Γöé            Γöé24  17  46  43      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13765.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13766.   ΓöéSystem      ΓöéSystem      Γöé 9   6  13  15      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13767.   ΓöéPropor-     ΓöéPropor-     Γöé10   6  20  16      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13768.   Γöétional      Γöétional      Γöé10   8  23  20      Γöé120  120     ΓöéNo    Yes   n/a      Γöé
  13769.   Γöé            Γöé            Γöé12  10  23  22      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13770.   Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  13771.   ΓöéSystem Mono-ΓöéSystem Mono-Γöé10   8   8  16      Γöé 96   96     ΓöéYes   Yes   Yes      Γöé
  13772.   Γöéspaced      Γöéspaced      Γöé10  10  10  21      Γöé120  120     ΓöéYes   Yes   n/a      Γöé
  13773.   ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  13774.  
  13775.  See International Standards Organization (ISO) 9241 for more information on 
  13776.  ISO 9241. 
  13777.  
  13778.  
  13779. ΓòÉΓòÉΓòÉ 15.3.1. International Standards Organization (ISO) 9241 ΓòÉΓòÉΓòÉ
  13780.  
  13781. ISO 9241 is an international standard covering health and safety in the work 
  13782. place for users of visual display terminals. Part 3 of this standard covers 
  13783. clarity and legibility of text displayed on computer screens; it places 
  13784. requirements on minimum sizes and luminance contrast. The presence of the 
  13785. FM_SEL_ISO9241_TESTED flag in the FONTMETRICS structure indicates that the font 
  13786. has been tested for ISO compliance. 
  13787.  
  13788. Note:  While the fonts were primarily tested for meeting the ISO standard, they 
  13789.        have also been designed to meet the German standard DIN 66 234. Where 
  13790.        the two standards differ, the fonts have been designed to meet the 
  13791.        stricter requirement. 
  13792.  
  13793.  The FM_ISO_xxx flags indicate the results of the test on the three IBM 
  13794.  displays that conform to the standard. These are the IBM 9515, 9517, and 9518 
  13795.  color displays at the supported resolutions of 640 x 480 and 1024 x 768. To 
  13796.  determine whether a non-IBM display complies with ISO 9241, contact the 
  13797.  manufacturer. The current display type can be established using VioGetConfig. 
  13798.  
  13799.  In order for applications to meet the standard, they have to ensure that they 
  13800.  use only fonts that have been tested and passed. You can determine this by 
  13801.  examining the new FM_SEL_ISO9241_TESTED flag in the fsSelection parameter in 
  13802.  the FONTMETRICS structure, the FM_ISO_xxx flags and the sXDeviceRes and 
  13803.  sYDeviceRes fields in the structure. 
  13804.  
  13805.  See Fonts Supplied with the OS/2 Operating System for the table describing ISO 
  13806.  9241 compliant fonts. 
  13807.  
  13808.  
  13809. ΓòÉΓòÉΓòÉ 15.4. Initialization File Information ΓòÉΓòÉΓòÉ
  13810.  
  13811. Initialization files include information about printers, queues, and system 
  13812. preferences set by the user from the control panel.  Applications can query 
  13813. this information by using the PrfQueryProfileData, PrfQueryProfileInt, 
  13814. PrfQueryProfileSize, and PrfQueryProfileString functions. 
  13815.  
  13816. All data in initialization files is accessed by a two-level hierarchy of 
  13817. application name, and key name within an application.  Presentation Manager 
  13818. system data is keyed off "applications" that have names starting with PM_. 
  13819.  
  13820. The application name/key name combinations that applications may need to use 
  13821. are listed below, together with the definition of the corresponding data. 
  13822.  
  13823. Note:  Information that is prefixed with PM_SPOOLERxxxx can not always be 
  13824.        modified directly:  The spooler validates all attempts to write 
  13825.        information to the INI file that it depends on. 
  13826.  
  13827.  Application name      "PM_ControlPanel" 
  13828.  Key name              "Beep" 
  13829.  Type                  integer 
  13830.  Content/value         1 or 0. 
  13831.  
  13832.  Application name      "PM_ControlPanel" 
  13833.  Key name              "LogoDisplayTime" 
  13834.  Type                  integer 
  13835.  Content/value         -1 <= time <= 32767 milliseconds. 
  13836.                           Indefinite display       -1 
  13837.                           No display                0 
  13838.                           Timed display            >0 
  13839.  
  13840.  Application name      "PM_ControlPanel" 
  13841.  Key name              "cxDoubleClick" 
  13842.  Type                  integer 
  13843.  Content/value         SV_CXDBLCLK size in pels. 
  13844.  
  13845.  Application name      "PM_ControlPanel" 
  13846.  Key name              "cyDoubleClick" 
  13847.  Type                  integer 
  13848.  Content/value         SV_CYDBLCLK size in pels. 
  13849.  
  13850.  Application name      "PM_ControlPanel" 
  13851.  Key name              "cxMotionStart" 
  13852.  Type                  integer 
  13853.  Content/value         SV_CXMOTIONSTART size in pels. 
  13854.  
  13855.  Application name      "PM_ControlPanel" 
  13856.  Key name              "cyMotionStart" 
  13857.  Type                  integer 
  13858.  Content/value         SV_CYMOTIONSTART size in pels. 
  13859.  
  13860.  Application name      "PM_National" 
  13861.  Key name              "iCountry" 
  13862.  Type                  integer 
  13863.  Content/value         country code: 
  13864.                           Arabic                  785 
  13865.                           Australian               61 
  13866.                           Belgian                  32 
  13867.                           Canadian-French           2 
  13868.                           Danish                   45 
  13869.                           Finnish                 358 
  13870.                           French                   33 
  13871.                           German                   49 
  13872.                           Hebrew                  972 
  13873.                           Italian                  39 
  13874.                           Japanese                 81 
  13875.                           Korean                   82 
  13876.                           Latin-American            3 
  13877.                           Netherlands              31 
  13878.                           Norwegian                47 
  13879.                           Portuguese              351 
  13880.                           Simpl. Chinese           86 
  13881.                           Spanish                  34 
  13882.                           Swedish                  46 
  13883.                           Swiss                    41 
  13884.                           Trad. Chinese            88 
  13885.                           UK-English               44 
  13886.                           US-English                1 
  13887.                           Other country             0. 
  13888.  
  13889.  Application name      "PM_National" 
  13890.  Key name              "iDate" 
  13891.  Type                  integer 
  13892.  Content/value         0=MDY; 1=DMY; 2=YMD. 
  13893.  
  13894.  Application name      "PM_National" 
  13895.  Key name              "iCurrency" 
  13896.  Type                  integer 
  13897.  Content/value         Values have the following meanings: 
  13898.                           0        Prefix, no separator 
  13899.                           1        Suffix, no separator 
  13900.                           2        Prefix, 1 character separator 
  13901.                           3        Suffix, 1 character separator. 
  13902.  
  13903.  Application name      "PM_National" 
  13904.  Key name              "iDigits" 
  13905.  Type                  integer 
  13906.  Content/value         n = number of decimal digits. 
  13907.  
  13908.  Application name      "PM_National" 
  13909.  Key name              "iTime" 
  13910.  Type                  integer 
  13911.  Content/value         0 = 12-hour clock; 1 = 24-hour clock. 
  13912.  
  13913.  Application name      "PM_National" 
  13914.  Key name              "iLzero" 
  13915.  Type                  integer 
  13916.  Content/value         0 = no leading zero; 1 = leading zero. 
  13917.  
  13918.  Application name      "PM_National" 
  13919.  Key name              "s1159" 
  13920.  Type                  string 
  13921.  Content/value         "am" for example. 3 chars max. 
  13922.  
  13923.  Application name      "PM_National" 
  13924.  Key name              "s2359" 
  13925.  Type                  string 
  13926.  Content/value         "pm" for example. 3 chars max. 
  13927.  
  13928.  Application name      "PM_National" 
  13929.  Key name              "sCurrency" 
  13930.  Type                  string 
  13931.  Content/value         "$" for example. 3 chars max. 
  13932.  
  13933.  Application name      "PM_National" 
  13934.  Key name              "sThousand" 
  13935.  Type                  string 
  13936.  Content/value         "," for example. 1 char max. 
  13937.  
  13938.  Application name      "PM_National" 
  13939.  Key name              "sDecimal" 
  13940.  Type                  string 
  13941.  Content/value         "." for example. 1 char max. 
  13942.  
  13943.  Application name      "PM_National" 
  13944.  Key name              "sDate" 
  13945.  Type                  string 
  13946.  Content/value         "/" for example. 1 char max. 
  13947.  
  13948.  Application name      "PM_National" 
  13949.  Key name              "sTime" 
  13950.  Type                  string 
  13951.  Content/value         ":" for example. 1 char max. 
  13952.  
  13953.  Application name      "PM_National" 
  13954.  Key name              "sList" 
  13955.  Type                  string 
  13956.  Content/value         "," for example. 1 char max. 
  13957.  
  13958.  Application name      PM_Fonts 
  13959.  Key name              <Font module name> 
  13960.  Type                  string 
  13961.  Content/value         fully-qualified drive:\path\filename.ext. 
  13962.  
  13963.  Application name      "PM_SPOOLER" 
  13964.  Key name              "QUEUE" 
  13965.  Type                  string 
  13966.  Content/value         <Queue name>; 
  13967.  
  13968.                        where: <Queue name> is the name of the default queue 
  13969.                        (might be NULL). This must be a key name for the 
  13970.                        PM_SPOOLER_QUEUE application. 
  13971.  
  13972.  Application name      "PM_SPOOLER" 
  13973.  Key name              " PRINTER" 
  13974.  Type                  string 
  13975.  Content/value         <Printer name>; 
  13976.  
  13977.                        where: <Printer name> is the name of the default printer 
  13978.                        (might be NULL). 
  13979.  
  13980.  Note:  Use the SplQueryDevice and SplQueryQueue functions to retrieve the 
  13981.         spooler configuration data. 
  13982.  
  13983.  
  13984. ΓòÉΓòÉΓòÉ 15.5. Interchange File Format ΓòÉΓòÉΓòÉ
  13985.  
  13986. A metafile is a file in which graphics are stored. The file is 
  13987. application-created, and it contains the graphics orders generated from those 
  13988. GPI calls that are valid in a metafile. Metafiled graphics can be reused by the 
  13989. application that created them. They can also be made available to other 
  13990. applications at the same, or at a different, workstation. 
  13991.  
  13992. This section describes the restrictions which apply when generating the 
  13993. metafile and gives detail of the overall structure. For the graphics orders 
  13994. descriptions, see "Graphics Orders" in the Graphics Programming Interface 
  13995. Programming Reference. 
  13996.  
  13997.  
  13998. ΓòÉΓòÉΓòÉ 15.5.1. Metafile Restrictions ΓòÉΓòÉΓòÉ
  13999.  
  14000. The following restrictions apply to the generation of all metafiles, and also 
  14001. to the generation of a PM_Q_STD print file to a device: 
  14002.  
  14003.      If GpiWCBitBlt or GpiBitBlt is used to copy a bit map to a device context 
  14004.       in an application, the application should not delete that bit map handle 
  14005.       with GpiDeleteBitmap before the device context is closed (metafile is 
  14006.       closed). 
  14007.  
  14008.      GpiSetPS must not be used. 
  14009.  
  14010.      GpiSetPageViewport is ignored. 
  14011.  
  14012.  The following section lists some general rules that must be followed when 
  14013.  creating a metafile that is to be acceptable to SAA-conforming 
  14014.  implementations, or replayed into a presentation space that is in 
  14015.  draw-and-retain or retain mode (see "GpiSetDrawingMode" in Graphics 
  14016.  Programming Interface Programming Reference). 
  14017.  
  14018.      These items must be established or defaulted before any drawing occurs to 
  14019.       the graphics presentation space, and not changed subsequently: 
  14020.  
  14021.         -  The graphics field (GpiSetGraphicsField). For an SAA-conforming 
  14022.            metafile, the graphics field must be defaulted or set to no 
  14023.            clipping. 
  14024.         -  The code page for the default character set (GpiSetCp). 
  14025.         -  The color table or palette (GpiCreateLogColorTable or 
  14026.            GpiCreatePalette). The size of the color table must not exceed 31KB 
  14027.            (KB equals 1024 bytes). 
  14028.         -  The default viewing transform (GpiSetDefaultViewMatrix). 
  14029.         -  The setting of the draw controls (GpiSetDrawControl). DCTL_DISPLAY 
  14030.            must be defaulted or set ON. 
  14031.         -  The default values of attributes (see "GpiSetDefAttrs" in the 
  14032.            Graphics Programming Interface Programming Reference), viewing 
  14033.            limits (see "GpiSetDefViewingLimits" in the Graphics Programming 
  14034.            Interface Programming Reference), primitive tag (see "GpiSetDefTag" 
  14035.            in the Graphics Programming Interface Programming Reference) and arc 
  14036.            parameters (see "GpiSetDefArcParams" in the Graphics Programming 
  14037.            Interface Programming Reference). 
  14038.  
  14039.      These calls should not be used: 
  14040.  
  14041.         -  GpiBitBlt 
  14042.         -  GpiDeleteSetId (note that this means that local identifiers cannot 
  14043.            be used again within the picture) 
  14044.         -  GpiErase 
  14045.         -  GpiExcludeClipRectangle 
  14046.         -  GpiIntersectClipRectangle 
  14047.         -  GpiOffsetClipRegion 
  14048.         -  GpiPaintRegion 
  14049.         -  GpiResetPS 
  14050.         -  GpiSetClipRegion 
  14051.         -  GpiSetPel 
  14052.         -  GpiSetPS 
  14053.         -  DevEscape (for an escape which is metafiled). 
  14054.  
  14055.      GpiCreateLogFont must not redefine a local identifier that has previously 
  14056.       been used within the picture. 
  14057.  
  14058.      The metafile context must not be reassociated. 
  14059.  
  14060.      If a bit map is used as the source of a GpiWCBitBlt operation, or as an 
  14061.       area-fill pattern, it must not be modified or deleted (GpiDeleteBitmap) 
  14062.       before the metafile is closed. 
  14063.  
  14064.      Only these foreground mixes must be used (see "GpiSetMix" in the Graphics 
  14065.       Programming Interface Programming Reference): 
  14066.  
  14067.         -  FM_DEFAULT 
  14068.         -  FM_OR 
  14069.         -  FM_OVERPAINT 
  14070.         -  FM_LEAVEALONE 
  14071.  
  14072.      Only these background mixes must be used (see "GpiSetBackMix" in the 
  14073.       Graphics Programming Interface Programming Reference): 
  14074.  
  14075.         -  BM_DEFAULT 
  14076.         -  BM_OVERPAINT 
  14077.         -  BM_LEAVEALONE 
  14078.  
  14079.      If palettes are used (see "GpiCreatePalette" in the Graphics Programming 
  14080.       Interface Programming Reference): the palette that is metafiled is the 
  14081.       one in force when the metafile device context is dissociated from the 
  14082.       (final) presentation space. If the palette is changed during the course 
  14083.       of the picture (using GpiSetPaletteEntries), it must therefore only be 
  14084.       with incremental additions. 
  14085.  
  14086.  Note:  There is no restriction concerning the use of primitives outside 
  14087.         segments. These are metafiled in segment(s) with zero identifier. 
  14088.  
  14089.  
  14090. ΓòÉΓòÉΓòÉ 15.5.2. Metafile Data Format ΓòÉΓòÉΓòÉ
  14091.  
  14092. This section describes the format of the data in a metafile, as it would be 
  14093. stored in an OS/2 disk file. 
  14094.  
  14095. Metafile data is stored as a sequence of structured fields. Each structured 
  14096. field starts with an eight-byte header consisting of a two-byte length field 
  14097. and a three-byte identifier field. These are followed by a one-byte flags field 
  14098. and a two-byte segment sequence number field. 
  14099.  
  14100. The length field contains a count of the total number of bytes in the 
  14101. structured field, including the length field. The identifier field uniquely 
  14102. identifies the type of the structured field. 
  14103.  
  14104. The flags and segment sequence number fields are always zero. 
  14105.  
  14106. Following the header are positional parameters that are optional and dependent 
  14107. on the particular structured field. 
  14108.  
  14109. Following the positional parameters are non-positional parameters called 
  14110. triplets. These are self-defining parameters and consist of a one-byte length 
  14111. field, followed by a one-byte identifier field, followed by the data of the 
  14112. parameter. 
  14113.  
  14114. The length field contains a count of the total number of bytes in the triplet, 
  14115. including the length and identifier fields. The identifier field identifies 
  14116. uniquely the type of the triplet. 
  14117.  
  14118. A metafile is structured into a number of different functional components; for 
  14119. example, document and graphics object. Each component comprises a number of 
  14120. structured fields, and is delimited by "begin-component" and "end-component" 
  14121. structured fields. Structured fields marked as required, inside an optional 
  14122. structured field bracket, are required if the containing bracket is present. 
  14123.  
  14124. The graphics orders that describe a picture occur in the graphics data 
  14125. structured field. See Structured Field Formats for more information. 
  14126.  
  14127.  
  14128. ΓòÉΓòÉΓòÉ 15.5.3. Structured Field Formats ΓòÉΓòÉΓòÉ
  14129.  
  14130. Following is the format of the various structured fields: 
  14131.  
  14132. Begin Document 
  14133.  
  14134. Structured Field Introducer (BDT): required 
  14135.  
  14136.  0-1       Length 0xn+1E 
  14137.  2-4       BDT 0xD3A8A8 
  14138.  5         Flags 0x00 
  14139.  6-7       Segment sequence number 0x0000 
  14140.  
  14141.  Parameters 
  14142.  
  14143.  0-7       Document name C'0000 0001' 
  14144.  8         Architecture version 0x00 
  14145.  9         Document security 0x00 
  14146.  
  14147.  Triplets (all required) 
  14148.  
  14149.  0         Length 0x05 
  14150.  1         Triplet Id 0x18 
  14151.  2         Interchange set type 0x03 (resource document) 
  14152.  3-4       Base set definition 0x0C00 (level 12, version 0) 
  14153.  
  14154.  0         Length 0x06 
  14155.  1         Triplet Id 0x01 
  14156.  2-5       GCID 
  14157.  
  14158.  0         Length 0xn+1 
  14159.  1         Triplet Id 0x65 
  14160.  2-n       Comment, used for metafile description of up to 252 bytes. 
  14161.  
  14162.  Begin Resource Group (BRG): required 
  14163.  
  14164.  Structured Field Introducer 
  14165.  
  14166.  0-1       Length 0x0010 
  14167.  2-4       BRG 0xD3A8C6 
  14168.  5         Flags 0x00 
  14169.  6-7       Segment sequence number 0x0000 
  14170.  
  14171.  Parameters 
  14172.  
  14173.  0-7       Resource group name  C'0000 0002' 
  14174.  
  14175.  Begin Color Attribute (BCA) Table: required 
  14176.  
  14177.  Structured Field Introducer 
  14178.  
  14179.  0-1       Length 0x0010 
  14180.  2-4       BCA 0xD3A877 
  14181.  5         Flags 0x00 
  14182.  6-7       Segment sequence number 0x0000 
  14183.  
  14184.  Parameters 
  14185.  
  14186.  0-7       Color table name C'0000 0004' 
  14187.  
  14188.  Color Attribute Table (CAT): required 
  14189.  
  14190.  Structured Field Introducer 
  14191.  
  14192.  0-1       Length 0xn+8 
  14193.  2-4       CAT 0xD3B077 
  14194.  5         Flags 0x00 
  14195.  6-7       Segment sequence number 0x0000 
  14196.  
  14197.  Parameters 
  14198.  
  14199.  Base Part (required) 
  14200.  
  14201.  0         Flags 
  14202.            0         Reserved B'0' 
  14203.            1         Reset 
  14204.                      B'0'       Do not reset to default 
  14205.                      B'1'       Do reset to default 
  14206.            2-7       Reserved B'000000' 
  14207.  1         Reserved 0x00 
  14208.  2         LCTID 0x00 
  14209.  
  14210.  Element list(s) (triple generating) are mutually-exclusive.  One or other is 
  14211.  required. 
  14212.  
  14213.  Element List (repeating) 
  14214.  
  14215.  0         Length of this parameter 
  14216.  1         Type 0x01: element list 
  14217.  2         Flags 0x00: reserved 
  14218.  3         Format 
  14219.            0x01       RGB 
  14220.  4-6       Starting Index 
  14221.            (Top Byte Truncated) 
  14222.  7         Size of RGB component1 0x08 
  14223.  8         Size of RGB component2 0x08 
  14224.  9         Size of RGB component3 0x08 
  14225.  10        Number of bytes in each following color triple 0x04 
  14226.  11-m      Color triples 
  14227.  
  14228.  Triple Generating 
  14229.  
  14230.  0         Length of this parameter 0x0A 
  14231.  1         Type 0x02: bit generator 
  14232.  2         Flags 
  14233.            0         ABFlag 
  14234.                      B'0'       Normal 
  14235.            1-7       Reserved B'0000000' 
  14236.  3         Format 
  14237.            0x01           RGB 
  14238.            4-6            Starting index (top byte truncated) 
  14239.  7         Size of RGB component1 0x08 
  14240.  8         Size of RGB component2 0x08 
  14241.  9         Size of RGB component3 0x08 
  14242.  End Color Attribute (ECA) Table: required 
  14243.  
  14244.  Structured Field Introducer 
  14245.  
  14246.  0-1       Length 0x0010 
  14247.  2-4       ECA 0xD3A977 
  14248.  5         Flags 0x00 
  14249.  6-7       Segment sequence number 0x0000 
  14250.  
  14251.  Parameters 
  14252.  
  14253.  0-7       Color table name C'0000 0004' 
  14254.  
  14255.  Begin Image Object (BIM): optional, repeating 
  14256.  
  14257.  Structured Field Introducer 
  14258.  
  14259.  0-1       Length 0x0010 
  14260.  2-4       BIM 0xD3A8FB 
  14261.  5         Flags 0x00 
  14262.  6-7       Segment sequence number 0x0000 
  14263.  
  14264.  Parameters 
  14265.  
  14266.  0-7       Image name C'xxxx xxxx' 
  14267.  
  14268.  Begin Resource Group (BRG): optional 
  14269.  
  14270.  Structured Field Introducer 
  14271.  
  14272.  0-1       Length 0x0010 
  14273.  2-4       BRG 0xD3A8C6 
  14274.  5         Flags 0x00 
  14275.  6-7       Segment sequence number 0x0000 
  14276.  
  14277.  Parameters 
  14278.  
  14279.  0-7       Resource group name C'xxxx xxxx' 
  14280.  
  14281.  Color Attribute Table (BCA): optional 
  14282.  
  14283.  Structured Field Introducer 
  14284.  
  14285.  0-1       Length 0x0010 
  14286.  2-4       BCA 0xD3A877 
  14287.  5         Flags 0x00 
  14288.  6-7       Segment sequence number 0x0000 
  14289.  
  14290.  Parameters 
  14291.  
  14292.  0-7       Color table name C'xxxx xxxx' 
  14293.  
  14294.  Color Attribute Table (CAT): required 
  14295.  
  14296.  Structured Field Introducer 
  14297.  
  14298.  0-1       Length 
  14299.  2-4       CAT 0xD3B077 
  14300.  5         Flags 0x00 
  14301.  6-7       Segment sequence number 0x0000 
  14302.  
  14303.  Parameters 
  14304.  
  14305.  Base Part 
  14306.  
  14307.  0         Flags 0x00 
  14308.  1         Reserved 0x00 
  14309.  2         LUTID 
  14310.  
  14311.  Element List (repeating) 
  14312.  
  14313.  0         Length of this parameter 
  14314.  1         Type 0x01: element list 
  14315.  2         Flags 0x00: reserved 
  14316.  3         Format 0x01: RGB 
  14317.  4-6       Starting index 
  14318.            (top byte truncated) 
  14319.  7         Size of RGB component1 0x08 
  14320.  8         Size of RGB component2 0x08 
  14321.  9         Size of RGB component3 0x08 
  14322.  10        Number of bytes in each following color triple 0x03 
  14323.  11-n      Color triples 
  14324.  
  14325.  End Color Attribute Table (ECA): required if BCA present 
  14326.  
  14327.  Structured Field Introducer 
  14328.  
  14329.  0-1       Length 0x0010 
  14330.  2-4       ECA 0xD3A977 
  14331.  5         Flags 0x00 
  14332.  6-7       Segment sequence number 0x0000 
  14333.  
  14334.  Parameters 
  14335.  
  14336.  0-7       Color Table name C'xxxx xxxx' 
  14337.  
  14338.  End Resource Group (ERG): required if BRG present 
  14339.  
  14340.  Structured Field Introducer 
  14341.  
  14342.  0-1       Length 0x0010 
  14343.  2-4       ERG 0xD3A9C6 
  14344.  5         Flags 0x00 
  14345.  6-7       Segment sequence number 0x0000 
  14346.  
  14347.  Parameters 
  14348.  
  14349.  0-7       Resource Group name C'xxxx xxxx' 
  14350.  
  14351.  Begin Object Environment Group (BOG): optional 
  14352.  
  14353.  Structured Field Introducer 
  14354.  
  14355.  0-1       Length 0x0010 
  14356.  2-4       BOG 0xD3A8C7 
  14357.  5         Flags 0x00 
  14358.  6-7       Segment sequence number 0x0000 
  14359.  
  14360.  Parameters 
  14361.  
  14362.  0-7       Object environment group name C'xxxx xxxx' 
  14363.  
  14364.  Map Color Attribute (MCA) Table: required 
  14365.  
  14366.  Structured Field Introducer 
  14367.  
  14368.  0-1       Length 0x001A 
  14369.  2-4       MCA 0xD3AB77 
  14370.  5         Flags 0x00 
  14371.  6-7       Segment sequence number 0x0000 
  14372.  
  14373.  Parameters 
  14374.  
  14375.  0-1       Length 
  14376.  
  14377.  Triplet (required) 
  14378.  
  14379.  0         Length 0x0C 
  14380.  1         Triplet type: fully qualified name 0x02 
  14381.  2         Type: ref to Begin Resource Object 0x84 
  14382.  3         ID 0x00 
  14383.  4-11      Color table name C'xxxx xxxx' 
  14384.  
  14385.  lcid (required) 
  14386.  
  14387.  0         Length 0x04 
  14388.  1         Triplet type: resource local ID 0x24 
  14389.  2         Type color table resource 0x07 
  14390.  3         Local identifier (LUT-ID) 0x01 
  14391.  
  14392.  End Object Environment Group (EOG): required if BOG present 
  14393.  
  14394.  Structured Field Introducer 
  14395.  
  14396.  0-1       Length 0x0010 
  14397.  2-4       EOG 0xD3A9C7 
  14398.  5         Flags 0x00 
  14399.  6-7       Segment sequence number 0x0000 
  14400.  
  14401.  Parameters 
  14402.  
  14403.  0-7       Object Environment Group name C'xxxx xxxx' 
  14404.  
  14405.  Image Data Descriptor (IDD): required 
  14406.  
  14407.  Structured Field Introducer 
  14408.  
  14409.  0-1       Length 0x0011 
  14410.  2-4       IDD 0xD3A6FB 
  14411.  5         Flags 0x00 
  14412.  6-7       Segment sequence number 0x0000 
  14413.  
  14414.  Parameters 
  14415.  
  14416.  0         Unit of measure: 
  14417.            0x00       tens of inches 
  14418.            0x01       tens of centimeters 
  14419.  1-2       X resolution image points / UOM 
  14420.  3-4       Y resolution image points / UOM 
  14421.  5-6       X extent of image PS 
  14422.  7-8       Y extent of image PS 
  14423.  
  14424.  Image Picture Data (IPD): required 
  14425.  
  14426.  Structured Field Introducer 
  14427.  
  14428.  0-1       Length 
  14429.  2-4       IPD 0xD3EEFB 
  14430.  5         Flags 0x00 
  14431.  6-7       Segment sequence number 0x0000 
  14432.  
  14433.  Parameters (all required and in this order, except that only one of Image 
  14434.  LUT-ID and IDE structure is present) 
  14435.  
  14436.  Begin Segment 
  14437.  
  14438.  0         Type 0x70: begin segment 
  14439.  1         Length of following 0x00 
  14440.  
  14441.  Begin Image Content 
  14442.  
  14443.  0         Type 0x91: Begin Image Content 
  14444.  1         Length of following 0x01 
  14445.  2         Format 0xFF 
  14446.  
  14447.  Image Size 
  14448.  
  14449.  0         Type 0x94: image size 
  14450.  1         Length of following 0x09 
  14451.  2         Units of measure 0x02: logical 
  14452.  3-4       Horizontal resolution 
  14453.  5-6       Vertical resolution 
  14454.  7-8       Height in pels 
  14455.  9-10      Width in pels 
  14456.  
  14457.  Image Encoding 
  14458.  
  14459.  0         Type 0x95: image encoding 
  14460.  1         Length of following 0x02 
  14461.  2         Compression algorithm 0x03: none 
  14462.  3         Recording algorithm 0x03: bottom-to-top 
  14463.  
  14464.  Image IDE-Size 
  14465.  
  14466.  0         Type 0x96: image IDE-Size 
  14467.  1         Length of following 0x01 
  14468.  2         Number of bits per element 
  14469.  
  14470.  Image LUT-ID (For bit maps with other than 24 bits per pel) 
  14471.  
  14472.  0         Type 0x97 Image LUT-ID 
  14473.  1         Length of following 0x01 
  14474.  2         LUT-ID 
  14475.  
  14476.  IDE Structure (For bit maps with 24 bits per pel) 
  14477.  
  14478.  0         Type 0x9B: IDE structure 
  14479.  1         Length of following 0x08 
  14480.  2         Flags: 
  14481.            0         ABFlag 
  14482.                      B'0'       Normal (Additive) 
  14483.            1-7       Reserved B'0000000' 
  14484.  3         Format 
  14485.            0x01       RGB 
  14486.  4-6       Reserved 0x000000 
  14487.  7         Size of element 1 
  14488.  8         Size of element 2 
  14489.  9         Size of element 3 
  14490.  
  14491.  Image Picture Data (IPD): required, repeating 
  14492.  
  14493.  Structured Field Introducer 
  14494.  
  14495.  0-1       Length 
  14496.  2-4       IPD 0xD3EEFB 
  14497.  5         Flags 0x00 
  14498.  6-7       Segment sequence number 0x0000 
  14499.  
  14500.  Parameters 
  14501.  
  14502.  Image Data 
  14503.  
  14504.  0-1       Type 0xFE92: image data 
  14505.  2-3       Length of following 
  14506.  4-n       Image data (scan lines of bit maps) 
  14507.  
  14508.  End Image Content (required, only present in last Image Picture Data) 
  14509.  
  14510.  0         Type 0x93: End Image Content 
  14511.  1         Length of following 0x00 
  14512.  
  14513.  End Segment (required, only present in last Image Picture Data) 
  14514.  
  14515.  0         Type 0x71: end segment 
  14516.  1         Length of following 0x00 
  14517.  
  14518.  End Image Object (EIM): required if BIM present 
  14519.  
  14520.  Structured Field Introducer 
  14521.  
  14522.  0-1       Length 0x0010 
  14523.  2-4       EIM 0xD3A9FB 
  14524.  5         Flags 0x00 
  14525.  6-7       Segment sequence number 0x0000 
  14526.  
  14527.  Parameters 
  14528.  
  14529.  0-7       Image name C'xxxx xxxx' 
  14530.  
  14531.  Begin Graphics Object (BGR): required 
  14532.  
  14533.  Structured Field Introducer 
  14534.  
  14535.  0-1       Length 0x0010 
  14536.  2-4       BGR 0xD3A8BB 
  14537.  5         Flags 0x00 
  14538.  6-7       Segment sequence number 0x0000 
  14539.  
  14540.  Parameters 
  14541.  
  14542.  0-7       Graphics object name C'0000 0007' 
  14543.  
  14544.  Begin Object Environment Group (BOG): optional 
  14545.  
  14546.  Structured Field Introducer 
  14547.  
  14548.  0-1       Length 0x0010 
  14549.  2-4       LOG 0xD3A8C7 
  14550.  5         Flags 0x00 
  14551.  6-7       Segment sequence number 0x0000 
  14552.  
  14553.  Parameters 
  14554.  
  14555.  0-7       Object Environment Group name C'0000 0007' 
  14556.  
  14557.  Map Color Attribute Table (MCA): required 
  14558.  
  14559.  Structured Field Introducer 
  14560.  
  14561.  0-1       Length 0x0016 
  14562.  2-4       MCA 0xD3AB77 
  14563.  5         Flags 0x00 
  14564.  6-7       Segment sequence number 0x0000 
  14565.  
  14566.  Parameters 
  14567.  
  14568.  0-1       Length 
  14569.  
  14570.  Triplet (required) 
  14571.  
  14572.  0         Length 0x0C 
  14573.  1         Triplet type: fully qualified name 0x02 
  14574.  2         Type: ref to Begin Resource Object 0x84 
  14575.  3         ID 0x00 
  14576.  4-11      Color table name C'0000 0004' 
  14577.  
  14578.  Map Coded Font (MCF): required, for default font 
  14579.  
  14580.  Structured Field Introducer 
  14581.  
  14582.  0-1       Length 0x20 
  14583.  2-4       MCF 0xD3AB8A 
  14584.  5         Flags 0x00 
  14585.  6-7       Segment sequence number 0x0000 
  14586.  
  14587.  Parameters 
  14588.  
  14589.  0-1       Length 
  14590.  
  14591.  Triplets (required) 
  14592.  
  14593.  Font name 
  14594.  
  14595.  0         Length 0x0C 
  14596.  1         Triplet type: fully qualified name 0x02 
  14597.  2         Type: ref to coded font 0x84 
  14598.  3         ID 0x00 
  14599.  4-11      Coded font name: C'nnxx xxxx' 
  14600.            where n is 0xFF 
  14601.  
  14602.  lcid 
  14603.  
  14604.  0         Length 0x04 
  14605.  1         Triplet type: Resource Local ID 0x24 
  14606.  2         Type: Coded Font Resource 0x05 
  14607.  3         Local identifier (LCID) 0x00 
  14608.  
  14609.  Font Binary GCID 
  14610.  
  14611.  0         Length 0x06 
  14612.  1         Triplet type: Font Binary GCID 0x20 
  14613.  2-5       GCID 
  14614.  
  14615.  Map Coded Font (MCF): optional, repeating, for loaded fonts 
  14616.  
  14617.  Structured Field Introducer 
  14618.  
  14619.  0-1       Length 0x58 
  14620.  2-4       MCF 0xD3AB8A 
  14621.  5         Flags 0x00 
  14622.  6-7       Segment sequence number 0x0000 
  14623.  
  14624.  Parameters 
  14625.  
  14626.  0-1       Length 
  14627.  
  14628.  Triplets (required) 
  14629.  
  14630.  Font name 
  14631.  
  14632.  0         Length 0x0C 
  14633.  1         Triplet type: fully qualified name 0x02 
  14634.  2         Type: ref to coded font 0x84 
  14635.  3         ID 0x00 
  14636.  4-11      Coded font name 
  14637.  
  14638.  lcid 
  14639.  
  14640.  0         Length 0x04 
  14641.  1         Triplet type: Resource Local ID 0x24 
  14642.  2         Type: coded font resource 0x05 
  14643.  3         Local identifier (LCID) 
  14644.  
  14645.  Font Attributes 
  14646.  
  14647.  0         Length 0x14 
  14648.  1         Triplet type: Font Descriptor 0x1F 
  14649.  2         Weight Class 
  14650.  3         Width Class 
  14651.  4-5       Font Height 
  14652.  6-7       Char Width 
  14653.  8         Descript Flags 
  14654.  9         Usage Codes 
  14655.  10        Family 
  14656.  11        Activity Class 
  14657.  12        Font Quality 
  14658.  13-14     CAP Height 
  14659.  15-16     X Height 
  14660.  17-18     Line Density 
  14661.  19        Use Flags 
  14662.  
  14663.  Font Binary GCID 
  14664.  
  14665.  0         Length 0x06 
  14666.  1         Triplet type: Font Binary GCID 0x20 
  14667.  2-5       GCID 
  14668.  
  14669.  Font Typeface 
  14670.  
  14671.  0         Length 0x24 
  14672.  1         Triplet type: fully qualified name 0x02 
  14673.  2         Type: ref to font typeface 0x08 
  14674.  3         ID 0x00 
  14675.  4-35      Font typeface C'xxx..xxx' 
  14676.  
  14677.  Map Data Resource (MDR): optional, repeating 
  14678.  
  14679.  Structured Field Introducer 
  14680.  
  14681.  0-1       Length 0x1D 
  14682.  2-4       MDR 0xD3ABC3 
  14683.  5         Flags 0x00 
  14684.  6-7       Segment sequence number 0x0000 
  14685.  
  14686.  Parameters 
  14687.  
  14688.  0-1       Length 
  14689.  
  14690.  Triplets (required) 
  14691.  
  14692.  Bit-map Name 
  14693.  
  14694.  0         Length 0x0C 
  14695.  1         Triplet type: fully qualified name 0x02 
  14696.  2         Type: ref to Image Object 0x84 
  14697.  3         ID 0x00 
  14698.  4-11      Image name C'xxxx xxxx' 
  14699.  
  14700.  Extended Resource lcid 
  14701.  
  14702.  0         Length 0x07 
  14703.  1         Triplet type: Extended Resource Local ID 0x22 
  14704.  2         Type: Image Resource 0x10 
  14705.  3-6       Bit-map handle 
  14706.  
  14707.  End Object Environment Group (EOG): required if BOG present 
  14708.  
  14709.  Structured Field Introducer 
  14710.  
  14711.  0-1       Length 0x0010 
  14712.  2-4       EOG 0xD3A9C7 
  14713.  5         Flags 0x00 
  14714.  6-7       Segment sequence number 0x0000 
  14715.  
  14716.  Parameters 
  14717.  
  14718.  0-7       Object Environment Group name C'0000 0007' 
  14719.  
  14720.  Graphics Data Descriptor (GDD): required 
  14721.  
  14722.  Structured Field Introducer 
  14723.  
  14724.  0-1       Length 0xnnnn 
  14725.  2-4       GDD 0xD3A6BB 
  14726.  5         Flags 0x00 
  14727.  6-7       Segment sequence number 0x0000 
  14728.  
  14729.  Parameters (all required and in this order) 
  14730.  
  14731.  0         0xF7 Specify GVM Subset 
  14732.  1         Length of following data 0x07 
  14733.  2         0xB0 drawing order subset 
  14734.  3-4       0x0000 
  14735.  5         0x23 Level 3.2 
  14736.  6         0x01 Version 1 
  14737.  7         Length of following field 0x01 
  14738.  8         Coordinate types in data 
  14739.            0x04      Intel16 
  14740.            0x05      Intel32 
  14741.  
  14742.  0         0xF6 Set Picture Descriptor 
  14743.  1         Length of following data 
  14744.  2         Flags 
  14745.            0         B'0' Picture in 2D 
  14746.            1         Picture Dimensions 
  14747.                      B'0'       Not absolute (PU_ARBITRARY PS) 
  14748.                      B'1'       Absolute (example: PU_TWIPS PS) 
  14749.            2         Picture Elements 
  14750.                      B'0'       Not pels 
  14751.                      B'1'       Pels (PU_PELS PS) 
  14752.                                 (Bit 1 must also be set) 
  14753.            3-7       B'00000' 
  14754.  3         0x00 Reserved 
  14755.  4         Picture frame size coordinate type 
  14756.            0x04       Intel16 
  14757.            0x05       Intel32 
  14758.  5         UnitsOfMeasure 
  14759.            0x00       Ten inches 
  14760.            0x01       Decimeter 
  14761.  6-11 or 6-17(2 or 4 bytes) Resolution. 
  14762.                 GPS Units / UOM on x axis 
  14763.                 GPS Units / UOM on y axis 
  14764.                 GPS Units / UOM on z axis 
  14765.  12-23 or 18-41(2 or 4 bytes) Window Size. 
  14766.                 GPS X left, X right 
  14767.                 GPS Y bottom, Y top 
  14768.                 GPS Z near, Z far 
  14769.  
  14770.  0         0x21 Set Current Defaults 
  14771.  1         Length of following data 
  14772.  2         Set Default Parameter Format 0x08 
  14773.  3-4       Mask 0xE000 
  14774.  5         Names 0x8F 
  14775.  6         Coordinates 
  14776.            0x00       Picture in 2D 
  14777.  7         Transforms 
  14778.            0x04       Intel16 
  14779.            0x05       Intel32 
  14780.  8         Geometrics 
  14781.            0x04       Intel16 
  14782.            0x05       Intel32 
  14783.  
  14784.  0         0x21 Set Current Defaults 
  14785.  1         Length of following data 
  14786.  2         Set default viewing transform 0x07 
  14787.  3-4       Mask 0xCC0C 
  14788.  5         Names 0x8F 
  14789.  6-n       M11, M12, M21, M22, M41, M42  Matrix elements 
  14790.  
  14791.  0         0x21 Set Current Defaults 
  14792.  1         Length of following data 
  14793.  2         Set default line attributes 0x01 
  14794.  3-4       Mask - OR of as many of the following bits as are required: 
  14795.            0x8000       Line type 
  14796.            0x4000       Line width 
  14797.            0x2000       Line end 
  14798.            0x1000       Line join 
  14799.            0x0800       Stroke width 
  14800.            0x0008       Line color 
  14801.            0x0002       Line mix 
  14802.  5         Flags 
  14803.            0x0F       Set indicated default attributes to initial values. (Data 
  14804.                       field is not present in this instance). 
  14805.            0x8F       Set indicated default attributes to specified values. 
  14806.  6-n       Data - data values as required, in the following order if present. 
  14807.            No space is reserved for attributes for which the corresponding mask 
  14808.            flag was not set. 
  14809.            (1 byte)       - Line type 
  14810.            (1 byte)       - Line width 
  14811.            (1 byte)       - Line end 
  14812.            (1 byte)       - Line join 
  14813.            (G bytes)      - Stroke width 
  14814.            (4 bytes)      - Line color 
  14815.            (1 byte)       - Line mix (G=2 or 4 depending on the Geometrics 
  14816.            parameter of Set Default Parameter Format) 
  14817.  
  14818.  0         0x21 Set Current Defaults 
  14819.  1         Length of following data 
  14820.  2         Set Default Character Attributes 0x02 
  14821.  3-4       Mask - OR of as many of the following bits as are required: 
  14822.            0x8000       Character angle 
  14823.            0x4000       Character box 
  14824.            0x2000       Character direction 
  14825.            0x1000       Character precision 
  14826.            0x0800       Character set 
  14827.            0x0400       Character shear 
  14828.            0x0040       Character break extra 
  14829.            0x0020       Character extra 
  14830.            0x0008       Character color 
  14831.            0x0004       Character background color 
  14832.            0x0002       Character mix 
  14833.            0x0001       Character background mix 
  14834.  5         Flags 
  14835.            0x0F      Set indicated default attributes to initial values.  (Data 
  14836.                      field is not present in this case). 
  14837.            0x8F      Set indicated default attributes to specified values. 
  14838.  6-n       Data - data values as required, in the following order if present. 
  14839.            No space is reserved for attributes for which the corresponding Mask 
  14840.            flag was not set. 
  14841.            (2*G bytes)          - Character angle 
  14842.            (2*G + 4 bytes)      - Character box 
  14843.            (1 byte)             - Character direction 
  14844.            (1 byte)             - Character precision 
  14845.            (1 byte)             - Character set 
  14846.            (2*G bytes)          - Character shear 
  14847.            (4 bytes)            - Character break extra 
  14848.            (4 bytes)            - Character extra 
  14849.            (4 bytes)            - Character color 
  14850.            (4 bytes)            - Character background color 
  14851.            (1 byte)             - Character mix 
  14852.            (1 byte)             - Character background mix (G=2 or 4 depending 
  14853.            on the Geometrics parameter of Set Default Parameter Format) 
  14854.  
  14855.  0         0x21 Set Current Defaults 
  14856.  1         Length of following data 
  14857.  2         Set Default Marker Attributes 0x03 
  14858.  3-4       Mask - OR of as many of the following bits as are required: 
  14859.            0x4000       Marker box 
  14860.            0x1000       Marker precision 
  14861.            0x0800       Marker set 
  14862.            0x0100       Marker symbol 
  14863.            0x0008       Marker color 
  14864.            0x0004       Marker background color 
  14865.            0x0002       Marker mix 
  14866.            0x0001       Marker background mix 
  14867.  5         Flags 
  14868.            0x0F       Set indicated default attributes to initial values. 
  14869.                       (Data field is not present in this instance) 
  14870.            0x8F       Set indicated default attributes to specified values. 
  14871.  6-n       Data - data values as required, in this order if present. 
  14872.            No space is reserved for attributes for which the corresponding Mask 
  14873.            flag was not set. 
  14874.            (2*G bytes)         - Marker box 
  14875.            (1 byte)            - Marker precision 
  14876.            (1 byte)            - Marker set 
  14877.            (1 byte)            - Marker symbol 
  14878.            (4 bytes)           - Marker color 
  14879.            (4 bytes)           - Marker background color 
  14880.            (1 byte)            - Marker mix 
  14881.            (1 byte)            - Marker background mix (G=2 or 4 depending on 
  14882.            the Geometrics parameter of Set Default Parameter Format) 
  14883.  
  14884.  0         0x21 Set Current Defaults 
  14885.  1         Length of following data 
  14886.  2         Set Default Pattern Attributes 0x04 
  14887.  3-4       Mask - OR of as many of the following bits as are required: 
  14888.            0x0800       Pattern set 
  14889.            0x0100       Pattern symbol 
  14890.            0x0080       Pattern reference point 
  14891.            0x0008       Pattern color 
  14892.            0x0004       Pattern background color 
  14893.            0x0002       Pattern mix 
  14894.            0x0001       Pattern background mix 
  14895.            5            Flags 
  14896.                         0x0F       Set indicated default attributes to initial 
  14897.                                    values. 
  14898.                                    (Data field is not present in this instance) 
  14899.                         0x8F       Set indicated default attributes to 
  14900.                                    specified values. 
  14901.            6-n          Data - data values as required, in this order if 
  14902.                         present. 
  14903.                         No space is reserved for attributes for which the 
  14904.                         corresponding Mask flag was not set. 
  14905.                         (1 byte)          - Pattern set 
  14906.                         (1 byte)          - Pattern symbol 
  14907.                         (2*G bytes)       - Pattern reference point 
  14908.                         (4 bytes)         - Pattern color 
  14909.                         (4 bytes)         - Pattern background color 
  14910.                         (1 byte)          - Pattern mix 
  14911.                         (1 byte)          - Pattern background mix (G=2 or 4 
  14912.                         depending on the Geometrics parameter of Set Default 
  14913.                         Parameter Format) 
  14914.  
  14915.            0            0x21 Set Current Defaults 
  14916.            1            Length of following data 
  14917.            2            Set Default Image Attributes 0x06 
  14918.            3-4          Mask - OR of as many of these bits as are required: 
  14919.                         0x0008       Image color 
  14920.                         0x0004       Image background color 
  14921.                         0x0002       Image mix 
  14922.                         0x0001       Image background mix 
  14923.            5            Flags 
  14924.                         0x0F       Set indicated default attributes to initial 
  14925.                                    values. (Data field is not present in this 
  14926.                                    instance) 
  14927.                         0x8F       Set indicated default attributes to 
  14928.                                    specified values. 
  14929.            6-n          Data - data values as required, in this order if 
  14930.                         present. 
  14931.                         No space is reserved for attributes for which the 
  14932.                         corresponding Mask flag was not set. 
  14933.                         (4 bytes)       - Image color 
  14934.                         (4 bytes)       - Image background color 
  14935.                         (1 byte)        - Image mix 
  14936.                         (1 byte)        - Image background mix 
  14937.  
  14938.            0            0x21 Set Current Defaults 
  14939.            1            Length of following data 
  14940.            2            Set Default Viewing Window 0x05 
  14941.            3-4          Mask - OR of as many of the following bits as are 
  14942.                         required: 
  14943.                         0x8000       x left limit 
  14944.                         0x4000       x right limit 
  14945.                         0x2000       y bottom limit 
  14946.                         0x1000       y top limit 
  14947.            5            Flags 
  14948.                         0x0F       Set indicated default attributes to initial 
  14949.                                    values. 
  14950.                                    (Data field is not present in this case). 
  14951.                         0x8F       Set indicated default attributes to 
  14952.                                    specified values. 
  14953.            6-n          Data - data values as required, in the following order 
  14954.                         if present. 
  14955.                         No space is reserved for attributes for which the 
  14956.                         corresponding Mask flag was not set. 
  14957.                         (2*G bytes)       - x left limit 
  14958.                         (2*G bytes)       - x right limit 
  14959.                         (2*G bytes)       - y bottom limit 
  14960.                         (2*G bytes)       - y top limit (G=2 or 4 depending on 
  14961.                         the Geometrics parameter of Set Default Parameter 
  14962.                         Format) 
  14963.  
  14964.            0            0x21 Set Current Defaults 
  14965.            1            Length of following data 
  14966.            2            Set Default Arc Parameters 0x0B 
  14967.            3-4          Mask - OR of as many of the following bits as are 
  14968.                         required: 
  14969.                         0x8000       P value 
  14970.                         0x4000       Q value 
  14971.                         0x2000       R value 
  14972.                         0x1000       S value 
  14973.            5            Flags 
  14974.                         0x0F       Set indicated default attributes to initial 
  14975.                                    values. 
  14976.                                    (Data field is not present in this case). 
  14977.                         0x8F       Set indicated default attributes to 
  14978.                                    specified values. 
  14979.            6-n          Data - data values as required, in the following order 
  14980.                         if present. 
  14981.                         No space is reserved for attributes for which the 
  14982.                         corresponding Mask flag was not set. 
  14983.                         (G bytes)       - P value 
  14984.                         (G bytes)       - Q value 
  14985.                         (G bytes)       - R value 
  14986.                         (G bytes)       - S value (G=2 or 4 depending on the 
  14987.                         Geometrics parameter of Set Default Parameter Format) 
  14988.  
  14989.            0            0x21 Set Current Defaults 
  14990.            1            Length of following data 
  14991.            2            Set Default Pick Identifier 0x0C 
  14992.            3-4          Mask - OR of as many of the following bits as are 
  14993.                         required: 
  14994.                         0x8000       Pick identifier 
  14995.            5            Flags 
  14996.                         0x0F       Set indicated default attributes to initial 
  14997.                                    values. 
  14998.                                    (Data field is not present in this case). 
  14999.                         0x8F       Set indicated default attributes to 
  15000.                                    specified values. 
  15001.            6-n          Data - data values as required, in the following order 
  15002.                         if present. 
  15003.                         No space is reserved for attributes for which the 
  15004.                         corresponding Mask flag was not set. 
  15005.                         (4 bytes)       - Pick identifier 
  15006.  
  15007.            0            0xE7 Set Bit-map Identifier 
  15008.            1            Length of following data 0x07 
  15009.            2-3          Usage Flags 0x8000 
  15010.            4-7          Bit-map handle 
  15011.            8            Lcid 
  15012.  
  15013.  Graphics Data (GAD): optional, repeating 
  15014.  
  15015.  Structured Field Introducer 
  15016.  
  15017.  0-1       Length 0xn+9 
  15018.  2-4       GAD 0xD3EEBB 
  15019.  5         Flags 0x00 
  15020.  6-7       Segment sequence number 0x0000 
  15021.  Parameters (maximum length in one structured field is 32759) 
  15022.  
  15023.  Graphics Segment (optional, repeating) 
  15024.  
  15025.  Segment data (including the Begin Segment parameter) can be split at any point 
  15026.  between successive Graphics Data structured fields. 
  15027.  
  15028.  0         0x70 Begin Segment 
  15029.  1         Length of following data 0x0E 
  15030.  2-5       Segment identifier 
  15031.  6         Segment attributes (1) 
  15032.            0 B'1'       Invisible 
  15033.            1 B'1'       Propagate invisibility 
  15034.            2 B'1'       Detectable 
  15035.            3 B'1'       Propagate detectability 
  15036.            6 B'1'       Dynamic 
  15037.            7 B'1'       Fast chaining 
  15038.  7         Segment attributes (2) 
  15039.            0 B'1'       Non-chained 
  15040.            3 B'1'       Prolog 
  15041.  8-9       Segment data length (low-order 2 bytes) 
  15042.  10-13     Reserved 
  15043.  14-15     Segment data length (high-order 2 bytes) 
  15044.  16-n      Graphics orders (see the Graphics Programming Interface Programming 
  15045.            Reference) 
  15046.  
  15047.  End Graphics Object (EGR) 
  15048.  
  15049.  Structured Field Introducer 
  15050.  
  15051.  0-1       Length 0x0010 
  15052.  2-4       EGR 0xD3A9BB 
  15053.  5         Flags 0x00 
  15054.  6-7       Segment sequence number 0x0000 
  15055.  
  15056.  Parameters 
  15057.  
  15058.  0-7       Graphics object name C'0000 0007' 
  15059.  
  15060.  End Resource Group (ERG): required 
  15061.  
  15062.  Structured Field Introducer 
  15063.  
  15064.  0-1       Length 0x0010 
  15065.  2-4       ERG 0xD3A9C6 
  15066.  5         Flags 0x00 
  15067.  6-7       Segment sequence number 0x0000 
  15068.  
  15069.  Parameters 
  15070.  
  15071.  0-7       Resource Group name  C'0000 0002' 
  15072.  
  15073.  End Document (EDT): required 
  15074.  
  15075.  Structured Field Introducer 
  15076.  
  15077.  0-1       Length 0x0010 
  15078.  2-4       EDT 0xD3A9A8 
  15079.  5         Flags 0x00 
  15080.  6-7       Segment sequence number 0x0000 
  15081.  
  15082.  Parameters 
  15083.  
  15084.  0-7       Document name  C'0000 0001' 
  15085.  
  15086.  
  15087. ΓòÉΓòÉΓòÉ 15.6. Resource Files ΓòÉΓòÉΓòÉ
  15088.  
  15089. This section describes the syntax for the resource language using railroad 
  15090. syntax, and describes the formats used. 
  15091.  
  15092. Resource files are used to build dialog templates, menu templates, accelerator 
  15093. tables, extended attribute association tables, keyboard scancode mapping 
  15094. tables, keyboard names and fonts. The files must be compiled before they can be 
  15095. used by application programs. 
  15096.  
  15097. How to Read the Syntax Definitions 
  15098.  
  15099. Throughout this reference, syntax is described using the following structure. 
  15100.  
  15101.      Read the syntax diagrams from left to right, from top to bottom, 
  15102.       following the path of the line. 
  15103.  
  15104.       The ΓöÇΓöÇΓöÇ symbol indicates the beginning of a statement. 
  15105.  
  15106.       The ΓöÇΓöÇΓöÇ symbol indicates that the statement syntax is continued on the 
  15107.       next line. 
  15108.  
  15109.       The ΓöÇΓöÇΓöÇ symbol indicates that a statement is continued from the previous 
  15110.       line. 
  15111.  
  15112.       The ΓöÇΓöÇΓöÇ symbol indicates the end of a statement. 
  15113.  
  15114.       Diagrams of syntactical units other than complete statements start with 
  15115.       the ΓöÇΓöÇΓöÇ symbol and end with the ΓöÇΓöÇΓöÇ symbol. 
  15116.  
  15117.      Required items appear on the horizontal line (the main path). 
  15118.  
  15119.             ΓöÇΓöÇΓöÇSTATEMENTΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇrequired_itemΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15120.  
  15121.      Optional items appear below the main path. 
  15122.  
  15123.             ΓöÇΓöÇΓöÇSTATEMENTΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15124.                                ΓööΓöÇoptional_itemΓöÇΓöÿ
  15125.  
  15126.      If a choice can be made from two or more items, they appear vertically, 
  15127.       in a stack. 
  15128.  
  15129.       If one of the items must be chosen, one item of the stack appears on the 
  15130.       main path. 
  15131.  
  15132.             ΓöÇΓöÇΓöÇSTATEMENTΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇrequired_choice1ΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15133.                              ΓööΓöÇΓöÇrequired_choice2ΓöÇΓöÇΓöÿ
  15134.  
  15135.       If choosing one of the items is optional, the entire stack appears below 
  15136.       the main path. 
  15137.  
  15138.             ΓöÇΓöÇΓöÇSTATEMENTΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15139.                              Γö£ΓöÇΓöÇoptional_choice1ΓöÇΓöÇΓöñ
  15140.                              ΓööΓöÇΓöÇoptional_choice2ΓöÇΓöÇΓöÿ
  15141.  
  15142.      An arrow returning to the left above the main path indicates an item that 
  15143.       can be repeated. 
  15144.  
  15145.                              ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  15146.                                                Γöé
  15147.             ΓöÇΓöÇΓöÇSTATEMENTΓöÇΓöÇΓöÇΓöÇΓöÇrepeatable_itemΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15148.  
  15149.       A repeat arrow above a stack indicates that a choice can be made from the 
  15150.       stacked items, or a single choice can be repeated. 
  15151.  
  15152.      Keywords appear in uppercase, for example: 
  15153.  
  15154.  
  15155.             PARM1
  15156.  
  15157.       They must be spelled exactly as shown. Variables appear in all lowercase 
  15158.       letters, for example: 
  15159.  
  15160.  
  15161.             parmx
  15162.  
  15163.       They represent user-supplied names or values. 
  15164.  
  15165.      If punctuation marks, parentheses, arithmetic operators, or such symbols 
  15166.       are shown, they must be entered as part of the syntax. 
  15167.  
  15168.  
  15169. ΓòÉΓòÉΓòÉ 15.6.1. Definitions Used in all Resources ΓòÉΓòÉΓòÉ
  15170.  
  15171. The definitions used in all resources are defined in Specification of Values 
  15172. and Resource Load and Memory Options. 
  15173.  
  15174.  
  15175. ΓòÉΓòÉΓòÉ 15.6.1.1. Specification of Values ΓòÉΓòÉΓòÉ
  15176.  
  15177. These rules apply to values specified in resources: 
  15178.  
  15179.      Coordinates must be integers. There must be no space between the sign of 
  15180.       the value and the value itself. For example, "-1" is allowed but "- 1" is 
  15181.       not. 
  15182.  
  15183.      Resource identifiers may be any of the following: 
  15184.  
  15185.         -  Positive integers 
  15186.         -  Names that resolve to positive integers 
  15187.         -  Strings (for some resources) 
  15188.  
  15189.      Real values, containing a decimal point, cannot be used. 
  15190.  
  15191.  
  15192. ΓòÉΓòÉΓòÉ 15.6.1.2. Resource Load and Memory Options ΓòÉΓòÉΓòÉ
  15193.  
  15194. The following options define when each resource is loaded and how memory is 
  15195. allocated for each resource. 
  15196.  
  15197.  LOADOPTION     Resource loading options. 
  15198.  
  15199.                 PRELOAD               Resource is loaded immediately. 
  15200.                 LOADONCALL            Resource is loaded when called. 
  15201.  
  15202.  MEMOPTION      Resource memory options. 
  15203.  
  15204.                 FIXED                     Resource remains at a fixed memory 
  15205.                                           location. 
  15206.                 MOVEABLE                  Resource can be moved if necessary to 
  15207.                                           compact. 
  15208.                 DISCARDABLE               Resource can be discarded if no 
  15209.                                           longer needed. 
  15210.                 SEGALIGN                  Resources are aligned on 64K byte 
  15211.                                           boundaries. 
  15212.  
  15213.  
  15214. ΓòÉΓòÉΓòÉ 15.6.2. Resource Script File Specification ΓòÉΓòÉΓòÉ
  15215.  
  15216. The resource script file defines the names and attributes of the resources to 
  15217. be added to the executable file of the application. The file consists of one or 
  15218. more resource statements that define the resource type and original file, if 
  15219. any. See the following for a description of the resource statements: 
  15220.  
  15221.      Single-Line Statements 
  15222.      User-Defined Resources 
  15223.      Directives 
  15224.      Multiple-Line Statements. 
  15225.  
  15226.  
  15227. ΓòÉΓòÉΓòÉ 15.6.2.1. Single-Line Statements ΓòÉΓòÉΓòÉ
  15228.  
  15229. The general form for all single-line statements is: 
  15230.  
  15231.  ΓöÇΓöÇresourcetypeΓöÇΓöÇnameidΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇ
  15232.                            ΓööΓöÇloadoptionΓöÇΓöÿ
  15233.  
  15234.  ΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇfilenameΓöÇΓöÇ
  15235.     ΓööΓöÇmemoptionΓöÇΓöÿ
  15236.  
  15237.  resourcetype (USHORT) 
  15238.     One of the following keywords, specifying the type of resource to be 
  15239.     loaded: 
  15240.  
  15241.          Keyword        Resource type 
  15242.  
  15243.     BITMAP              A bit-map resource is a custom bit map that an 
  15244.                         application intends to use in its screen display or as 
  15245.                         an item in a menu. 
  15246.  
  15247.     DEFAULTICON         This keyword installs the filename.ico icon definition 
  15248.                         under the ICON EA of the program file. 
  15249.  
  15250.                         Example: 
  15251.  
  15252.  
  15253.                                                 DEFAULTICON <filename.ico>
  15254.  
  15255.     DLGINCLUDE          This statement tells the dialog editor which file to 
  15256.                         use as an include file for the dialogs in the resource 
  15257.                         file. The nameid is not applicable. 
  15258.  
  15259.     FONT                A font resource is a file containing a font. 
  15260.  
  15261.     ICON                An icon resource is a bit map defining the shape of the 
  15262.                         icon to be used for a given application. 
  15263.  
  15264.     POINTER             A pointer resource is a bit map defining the shape of 
  15265.                         the pointing device pointer on the display screen. 
  15266.  
  15267.  nameid (USHORT) 
  15268.     is either a unique name or an integer number identifying the resource. For 
  15269.     a FONT resource, the nameid must be a number; it cannot be a name. 
  15270.  
  15271.  loadoption (LOADOPTION) 
  15272.     The default is LOADONCALL. 
  15273.  
  15274.     See Resource Load and Memory Options for a description of LOADOPTION. 
  15275.  
  15276.  memoption (MEMOPTION) 
  15277.     The default is MOVEABLE and DISCARDABLE for POINTER, ICON, and FONT 
  15278.     resources. The default for BITMAP resources is MOVEABLE. The FIXED option 
  15279.     overrides both MOVEABLE and DISCARDABLE. The SEGALIGN option can be 
  15280.     specified independently of other options, if it is not present the default 
  15281.     (for all resources) is that the resource is not aligned on a 64KB boundary. 
  15282.  
  15283.     See Resource Load and Memory Options for a description of MEMOPTION. 
  15284.  
  15285.  filename (PCH) 
  15286.     An ASCII string specifying the OS/2* name of the file containing the 
  15287.     resource. A full path must be given if the file is not in the current 
  15288.     working directory. 
  15289.  
  15290.  Example 
  15291.  
  15292.   POINTER "pointer" point.cur
  15293.   POINTER "discardable pointer" DISCARDABLE point.cur
  15294.   POINTER 10 custom.cur
  15295.  
  15296.   ICON "desk" desk.ico
  15297.   ICON "discardable desk" DISCARDABLE desk.ico
  15298.   ICON 11 custom.ico
  15299.  
  15300.   BITMAP "disk" disk.bmp
  15301.   BITMAP "discardable disk" DISCARDABLE disk.bmp
  15302.   BITMAP 12 custom.bmp
  15303.  
  15304.   FONT 5 CMROMAN.FNT
  15305.  
  15306.  
  15307. ΓòÉΓòÉΓòÉ 15.6.2.2. User-Defined Resources ΓòÉΓòÉΓòÉ
  15308.  
  15309. An application can also define its own resource. The resource can be any data 
  15310. that the application intends to use. A user-defined resource statement has the 
  15311. form: 
  15312.  
  15313.  ΓöÇΓöÇΓöÇresource-typeΓöÇΓöÇΓöÇtypeIDΓöÇΓöÇΓöÇnameIDΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15314.  
  15315.  ΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇfilenameΓöÇΓöÇΓöÇΓöÇ
  15316.       ΓööΓöÇΓöÇloadoptionΓöÇΓöÇΓöÿ   ΓööΓöÇΓöÇmemoptionΓöÇΓöÇΓöÿ
  15317.  
  15318.  typeID 
  15319.     Either a unique name or an integer number identifying the resource type. If 
  15320.     a number is given, it must be greater than 255. The type numbers 1 through 
  15321.     255 are reserved for existing and future predefined resource types. Value 
  15322.     1000 is reserved for custom fonts. 
  15323.  
  15324.  nameID 
  15325.     Either a unique name or an integer number identifying the resource. 
  15326.  
  15327.  loadoption (LOADOPTION) 
  15328.     The default is LOADONCALL. 
  15329.  
  15330.     See Resource Load and Memory Options for a description of LOADOPTION. 
  15331.  
  15332.  memoption (MEMOPTION) 
  15333.     The default is MOVEABLE. 
  15334.  
  15335.     See Resource Load and Memory Options for a description of MEMOPTION. 
  15336.  
  15337.  filename 
  15338.     Can be either: 
  15339.  
  15340.         An ASCII string specifying the OS/2* name of the file containing the 
  15341.          cursor bit map. A full path must be given if the file is not in the 
  15342.          current working directory. 
  15343.  
  15344.         A BEGIN END data definition construct as follows: 
  15345.  
  15346.                   BEGIN
  15347.                   data - definition  [ ,  data - definition ]  . . .
  15348.                      .
  15349.                      .
  15350.                      .
  15351.                   END
  15352.  
  15353.          For example, the RESOURCE statement might be written as follows: 
  15354.  
  15355.                   RESOURCE  MYRES  " array "
  15356.                   BEGIN
  15357.                     13L ,  26L
  15358.                   END
  15359.  
  15360.  When the resource compiler (RC.EXE) encounters one or more font resources, or 
  15361.  any custom resource having type-id of 1000, it creates a font directory 
  15362.  resource which it adds to the output binary data. 
  15363.  
  15364.  Example 
  15365.  
  15366.  
  15367.   RESOURCE MYRES   "array" DATA.RES
  15368.   RESOURCE 300     14      CUSTOM.RES
  15369.  
  15370.  
  15371. ΓòÉΓòÉΓòÉ 15.6.2.2.1. RCDATA statement ΓòÉΓòÉΓòÉ
  15372.  
  15373. The RCDATA statement is provided to allow an application to define a simple 
  15374. data resource. 
  15375.  
  15376.  ΓöÇRCDATAΓöÇΓöÇΓöÇidΓöÇΓöÇΓöÇΓöÇloadoptionΓöÇΓöÇΓöÇΓöÇΓöÇmemoptionΓöÇΓöÇΓöÇ
  15377.  
  15378.              ΓöîΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÉ
  15379.               ΓööΓöÇnewlineΓöÇΓöÿ Γöé
  15380.  ΓöÇΓöÇΓöÇBEGINΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇdataΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇENDΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15381.  
  15382.  id 
  15383.     Either a unique name or an integer number identifying the resource. 
  15384.  
  15385.  loadoption (LOADOPTION) 
  15386.     The default is LOADONCALL. 
  15387.  
  15388.     See Resource Load and Memory Options for a description of LOADOPTION. 
  15389.  
  15390.  memoption (MEMOPTION) 
  15391.     The default is MOVEABLE. 
  15392.  
  15393.     See Resource Load and Memory Options for a description of MEMOPTION. 
  15394.  
  15395.  data 
  15396.     A number or string. 
  15397.  
  15398.  Example: 
  15399.  
  15400.  
  15401.   RCDATA 4
  15402.   BEGIN
  15403.    "Sample string."
  15404.    "TEST DATA."
  15405.    "A message."
  15406.   END
  15407.  
  15408.  
  15409. ΓòÉΓòÉΓòÉ 15.6.2.3. Directives ΓòÉΓòÉΓòÉ
  15410.  
  15411. The resource directives are special statements that define actions to perform 
  15412. on the file before it is compiled. The directives can assign values to names, 
  15413. include the contents of files, and control compilation of the file. 
  15414.  
  15415. #include filename 
  15416.  
  15417. rcinclude filename 
  15418.            These directives copy the contents of the file specified by filename 
  15419.            into the resource before it is compiled. If rcinclude is used, the 
  15420.            entire file is copied. If #include is used, only #define statements 
  15421.            are copied. 
  15422.  
  15423.            Note:  If an rcinclude is to be commented out, the open comment (/*) 
  15424.                   must appear on the same line as the directive. Filename is an 
  15425.            ASCII string. A full path must be given if the file is not in the 
  15426.            current directory or in the directory specified by the INCLUDE 
  15427.            environment variable. The file extensions .I and .TMP must not be 
  15428.            used as these are reserved for system use. 
  15429.  
  15430.            The filename parameter is handled as a C string, and two 
  15431.            back-slashes must be given wherever one is expected in the path name 
  15432.            (for example, root\\sub.) or, a single forward slash (/) can be used 
  15433.            instead of double back-slashes (for example, root/sub.) 
  15434.  
  15435.            Example: 
  15436.  
  15437.  
  15438.                       #include "wincalls.h"
  15439.  
  15440.                       MENU PenSelect
  15441.                       BEGIN
  15442.                              MENUITEM "black pen", BLACK_PEN
  15443.                       END
  15444.  
  15445.            Files included in resource script files constants that use #define 
  15446.            statements may not include any casting of those constants that are 
  15447.            used in the resource script. The resource compiler does not parse 
  15448.            this casting syntax. For example, the following statement may not be 
  15449.            included: 
  15450.  
  15451.  
  15452.                       #define IDBUTTON1  (USHORT) 3
  15453.  
  15454.            If casting is required for C source compilation, you may use two 
  15455.            statements such as: 
  15456.  
  15457.  
  15458.                       #define IDBUTTON1    3
  15459.                       #define CSRC_IDBUTTON1    ((USHORT)IDBUTTON1)
  15460.  
  15461.  
  15462.  #define name value 
  15463.            This directive assigns the given value to name. All subsequent 
  15464.            occurrences of name are replaced by the value. 
  15465.  
  15466.            name is any combination of letters, digits, or punctuation. 
  15467.  
  15468.            value is any integer, character string, or line of text. 
  15469.  
  15470.            Example: 
  15471.  
  15472.  
  15473.                       #define     nonzero        1
  15474.                       #define     USERCLASS   "MyControlClass"
  15475.  
  15476.  
  15477.  #undef name 
  15478.            This directive removes the current definition of name. All 
  15479.            subsequent occurrences of name are processed without replacement. 
  15480.  
  15481.            name is any combination of letters, digits, or punctuation. 
  15482.  
  15483.            Example: 
  15484.  
  15485.  
  15486.                       #undef     nonzero
  15487.                       #undef     USERCLASS
  15488.  
  15489.  
  15490.  #ifdef name 
  15491.            This directive performs a conditional compilation of the resource 
  15492.            file by checking the specified name. If the name has been defined 
  15493.            using a #define directive, #ifdef directs the resource compiler to 
  15494.            continue with the statement immediately after it. If the name has 
  15495.            not been defined, #ifdef directs the compiler to skip all statements 
  15496.            up to the next #endif directive. 
  15497.  
  15498.            name is the name to be checked by the directive. 
  15499.  
  15500.            Example: 
  15501.  
  15502.  
  15503.                       #ifdef Debug
  15504.                       FONT 4 errfont.fnt
  15505.                       #endif
  15506.  
  15507.  
  15508.  #ifndef name 
  15509.            This directive performs a conditional compilation of the resource 
  15510.            file by checking the specified name. If the name has not been 
  15511.            defined or if its definition has been removed using the #undef 
  15512.            directive, #ifndef directs the resource compiler to continue 
  15513.            processing statements up to the next #endif, #else, or #elif 
  15514.            directive, then skip to the statement after the #endif. If the name 
  15515.            is defined, #ifndef directs the compiler to skip to the next #endif, 
  15516.            #else, or #elif directive. 
  15517.  
  15518.            name is the name to be checked by the directive. 
  15519.  
  15520.            Example: 
  15521.  
  15522.  
  15523.                       #ifndef Optimize
  15524.                       FONT 4 errfont.fnt
  15525.                       #endif
  15526.  
  15527.  
  15528.  #if constant expression 
  15529.  
  15530.            This directive performs a conditional compilation of the resource 
  15531.            file by checking the specified constant-expression. If the 
  15532.            constant-expression is nonzero, #if directs the resource compiler to 
  15533.            continue processing statements up to the next #endif, #else, or 
  15534.            #elif directive, then skip to the statement after the #endif. If the 
  15535.            constant-expression is zero, #if directs the compiler to skip to the 
  15536.            next #endif, #else, or #elif directive. 
  15537.  
  15538.            constant expression is a defined name, an integer constant, or an 
  15539.            expression consisting of names, integers, and arithmetic and 
  15540.            relational operators. 
  15541.  
  15542.            Example: 
  15543.  
  15544.  
  15545.                       #if Version<3
  15546.                       FONT 4 errfont.fnt
  15547.                       #endif
  15548.  
  15549.  
  15550.  #elif constant expression 
  15551.            This directive marks an optional clause of a conditional compilation 
  15552.            block defined by an #ifdef, #ifndef, or #if directive. The directive 
  15553.            carries out conditional compilation of the resource file by checking 
  15554.            the specified constant-expression. If the constant-expression is 
  15555.            nonzero, #elif directs the resource compiler to continue processing 
  15556.            statements up to the next #endif, #else, or #elif directive, then 
  15557.            skip to the statement after the #endif. If the constant-expression 
  15558.            is zero, #elif directs the compiler to skip to the next #endif, 
  15559.            #else, or #elif directive. Any number of #elif directives can be 
  15560.            used in a conditional block. 
  15561.  
  15562.            constant expression Is a defined name, an integer constant, or an 
  15563.            expression consisting of names, integers, and arithmetic and 
  15564.            relational operators. 
  15565.  
  15566.            Example: 
  15567.  
  15568.  
  15569.                       #if Version<3
  15570.                       FONT 4 italic.fnt
  15571.                       #elif Version<7
  15572.                       FONT 4 bold.fnt
  15573.                       #endif
  15574.  
  15575.  
  15576.  #else 
  15577.  
  15578.            This directive marks an optional clause of a conditional compilation 
  15579.            block defined by an #ifdef, #ifndef, or #if directive. The #else 
  15580.            directive must be the last directive before #endif. 
  15581.  
  15582.            Example: 
  15583.  
  15584.  
  15585.                       #ifdef Debug
  15586.                       FONT 4 italic.fnt
  15587.                       #else
  15588.                       FONT 4 bold.fnt
  15589.                       #endif
  15590.  
  15591.  
  15592.  #endif 
  15593.            This directive marks the end of a conditional compilation block 
  15594.            defined by an #ifdef, #ifndef, or #if directive. One #endif is 
  15595.            required for each #ifdef, #ifndef, and #if directive. 
  15596.  
  15597.  
  15598. ΓòÉΓòÉΓòÉ 15.6.2.4. Multiple-Line Statements ΓòÉΓòÉΓòÉ
  15599.  
  15600. This sections covers Code Page Flagging, Keyboard Resources, and the following 
  15601. multiple-line statements: 
  15602.  
  15603.      ACCELTABLE Statement 
  15604.      ASSOCTABLE Statement 
  15605.      MENU Statement 
  15606.      STRINGTABLE Statement 
  15607.      Dialog and Window Template Statements 
  15608.  
  15609.  
  15610. ΓòÉΓòÉΓòÉ 15.6.2.4.1. Code Page Flagging ΓòÉΓòÉΓòÉ
  15611.  
  15612. The CODEPAGE statement may be placed within the source, to set the code page 
  15613. used for these resources: 
  15614.  
  15615.      ACCELTABLE 
  15616.      MENU 
  15617.      STRINGTABLE 
  15618.      DIALOGTEMPLATE and WINDOWTEMPLATE. 
  15619.  
  15620.  The CODEPAGE statement cannot be encoded within any other statement. All items 
  15621.  following a CODEPAGE statement are assumed to be in that code page. The code 
  15622.  page is encoded in the resource, and the data in the resource is assumed to be 
  15623.  in the specified code page.  However, no checking is performed. 
  15624.  
  15625.  These code pages can be specified: 
  15626.  
  15627.      437 
  15628.      850 
  15629.      860 
  15630.      863 
  15631.      865. 
  15632.  
  15633.  If the code page is not specified, code page 850 is assumed. 
  15634.  
  15635.  
  15636. ΓòÉΓòÉΓòÉ 15.6.2.4.2. Keyboard Resources ΓòÉΓòÉΓòÉ
  15637.  
  15638. RT_FKALONG (=17), is defined in BSEDOS.H, and the resource compiler (RC.EXE) 
  15639. recognizes FKALONG. This type identifies a 256-byte table, that can be used for 
  15640. either primary or secondary scan-code mapping. 
  15641.  
  15642. The resource ID contains three bytes, the least significant byte identifying 
  15643. the type of scan-code mapping table as follows: 
  15644.  
  15645.  0    Primary scan-code mapping 
  15646.  1    Secondary scan-code mapping. 
  15647.  
  15648.  The other two bytes are 0 for the primary mapping table, and the keyboard ID 
  15649.  (as defined in PMWINP.H) for secondary mapping tables. This is to enable 
  15650.  simple support to be provided for future keyboards with conflicting scan 
  15651.  codes. 
  15652.  
  15653.  The primary scan-code mapping table in the interrupt handler is stored as a 
  15654.  resource of this type. The secondary scan-code mapping table in the interrupt 
  15655.  handler is also stored as a resource of this type. 
  15656.  
  15657.  Depending on which keyboard is attached, the resources are loaded when the 
  15658.  system is initialized, and transferred to RING-0 byte arrays, where they can 
  15659.  be accessed by the interrupt handler as necessary. A default primary scan-code 
  15660.  mapping table is transferred if the resource cannot be loaded. 
  15661.  
  15662.  
  15663. ΓòÉΓòÉΓòÉ 15.6.2.4.3. ACCELTABLE Statement ΓòÉΓòÉΓòÉ
  15664.  
  15665. The ACCELTABLE statement defines a table of accelerator keys for an 
  15666. application. 
  15667.  
  15668. An accelerator is a keystroke defined by the application to give the user a 
  15669. quick way to perform a task. The WinGetMsg function automatically translates 
  15670. accelerator messages from the application queue into WM_COMMAND, WM_HELP, or 
  15671. WM_SYSCOMMAND messages. 
  15672.  
  15673. The ACCELTABLE statement has the form: 
  15674.  
  15675.  ΓöÇΓöÇΓöÇACCELTABLEΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇ
  15676.                   ΓööΓöÇΓöÇidΓöÇΓöÇΓöÿ    ΓööΓöÇmemoptionΓöÇΓöÿ
  15677.  
  15678.  ΓöÇΓöÇΓöÇΓöÇBEGINΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15679.  
  15680.    ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  15681.    Γöé                        ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉΓöé
  15682.                                          ΓöéΓöé
  15683.  ΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇ,ΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇ,ΓöÇΓöÇΓöÇΓöÇacceloptionΓöÇΓöÇΓö┤Γö┤ΓöÇ
  15684.     ΓöökeyvalΓöÇΓöÿ   ΓööΓöÇcmdΓöÇΓöÿ
  15685.  
  15686.  ΓöÇΓöÇΓöÇΓöÇENDΓöÇΓöÇΓöÇ
  15687.  
  15688.  id (USHORT) 
  15689.     The resource identifier. This is either an integer in the range of 1 
  15690.     through 65535 or a unique string enclosed in double quote marks. 
  15691.  
  15692.  memoption 
  15693.     Optional. It consists of the following keyword or keywords, specifying 
  15694.     whether the resource is fixed or movable, and whether it can be discarded: 
  15695.  
  15696.     FIXED               Resource remains at a fixed memory location. 
  15697.     MOVEABLE            Resource can be moved if necessary to compact memory. 
  15698.     DISCARDABLE         Resource can be discarded if no longer needed. 
  15699.  
  15700.     See Resource Load and Memory Options for a description of LOADOPTION. 
  15701.  
  15702.  keyval (USHORT) 
  15703.     The accelerator character code.  This can be either a constant or a quoted 
  15704.     character. If it is a quoted character, the CHAR acceloption is assumed. 
  15705.     If the quoted character is preceded with a caret character (^), a control 
  15706.     character is specified as if the CONTROL acceloption had been used. 
  15707.  
  15708.  cmd (USHORT) 
  15709.     The value of the WM_COMMAND, WM_HELP, or WM_SYSCOMMAND message generated 
  15710.     from the accelerator for the indicated key. 
  15711.  
  15712.  acceloption (BIT_16) 
  15713.     Defines the kind of accelerator. 
  15714.  
  15715.     The following options are available: 
  15716.  
  15717.               ALT 
  15718.               CHAR 
  15719.               CONTROL 
  15720.               HELP 
  15721.               LONEKEY 
  15722.               SCANCODE 
  15723.               SHIFT 
  15724.               SYSCOMMAND 
  15725.               VIRTUALKEY. 
  15726.  
  15727.     The VIRTUALKEY, SCANCODE, LONEKEY, and CHAR acceloptions specify the type 
  15728.     of message that matches the accelerator.  Only one of these options can be 
  15729.     specified for each accelerator. For information on the corresponding KC_* 
  15730.     values, see WM_CHAR. 
  15731.  
  15732.     The acceloptions SHIFT, CONTROL, and ALT, cause a match of the accelerator 
  15733.     only if the corresponding key is down. 
  15734.  
  15735.     If there are two accelerators that use the same key with different SHIFT, 
  15736.     CONTROL, or ALT options, the more restrictive accelerator should be 
  15737.     specified first in the table.  For example, Shift-Enter should be placed 
  15738.     before Enter. 
  15739.  
  15740.     The SYSCOMMAND acceloption causes the keystroke to be passed to the 
  15741.     application as a WM_SYSCOMMAND message. The HELP acceloption causes the 
  15742.     keystroke to be passed to the application as a WM_HELP message. If neither 
  15743.     is specified, a WM_COMMAND message is used. 
  15744.  
  15745.  Example: 
  15746.  
  15747.   ACCELTABLE "MainAcc"
  15748.   BEGIN
  15749.        VK_F1,101,HELP
  15750.        VK_F3,102,SYSCOMMAND
  15751.   END
  15752.  
  15753.  This generates a WM_HELP with value 101 from VIRTUALKEY accelerator F1 and a 
  15754.  WM_SYSCOMMAND with value 102 from VIRTUALKEY accelerator F3. 
  15755.  
  15756.  
  15757. ΓòÉΓòÉΓòÉ 15.6.2.4.4. ASSOCTABLE Statement ΓòÉΓòÉΓòÉ
  15758.  
  15759. The ASSOCTABLE statement defines the extended attributes (EA) for an 
  15760. application. 
  15761.  
  15762. The ASSOCTABLE statement has the form: 
  15763.  
  15764.  ΓöÇΓöÇΓöÇΓöÇASSOCTABLEΓöÇΓöÇassoctableidΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15765.  
  15766.  
  15767.  ΓöÇΓöÇΓöÇΓöÇBEGINΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15768.  
  15769.  
  15770.     ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  15771.                                            Γöé
  15772.  ΓöÇΓöÇΓöÇassocname,extensionsΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇ,ΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓö¼Γö┤ΓöÇ
  15773.                           ΓööΓöÇflagsΓöÿ    ΓööiconΓöÿ
  15774.  
  15775.  ΓöÇΓöÇΓöÇΓöÇENDΓöÇΓöÇΓöÇ
  15776.  
  15777. The source for the ASSOCTABLE description is contained in the resource file for 
  15778. a particular project: 
  15779.  
  15780.  
  15781. ASSOCTABLE assoctableid
  15782. BEGIN
  15783. "association name", "extension", flags, icon filename
  15784. "association name", "extension", flags, icon filename
  15785.  ...
  15786. END
  15787.  
  15788.  association name 
  15789.     Program recognizes data files of this EA TYPE. This is the same name found 
  15790.     in the TYPE field of data files. 
  15791.  
  15792.  assoctableid 
  15793.     A name or number used to identify the assoctable resource. 
  15794.  
  15795.  extension 
  15796.     3 letter file extension that is used to identify files of this type if they 
  15797.     have no EA TYPE entry. (This may be empty.) 
  15798.  
  15799.  flags 
  15800.  
  15801.     EAF_DEFAULTOWNER 
  15802.             The default application for the file. 
  15803.  
  15804.     EAF_UNCHANGEABLE 
  15805.             This flag is set if the entry in the ASSOCTABLE is not to be 
  15806.             edited. 
  15807.  
  15808.     EAF_REUSEICON 
  15809.             This flag is specified if a previously defined icon in the 
  15810.             ASSOCTABLE is to be reused. Entries with this flag set have no icon 
  15811.             data defined. The icon used for this entry is the icon used for the 
  15812.             previous entry (see below). Note that EAF_* flags may be ORed 
  15813.             together when specified in the ASSOCTABLE. 
  15814.  
  15815.  icon filename 
  15816.     Filename of the icon used to represent this file type. (This may be empty.) 
  15817.  
  15818.  Example 
  15819.  
  15820.   ASSOCTABLE 3000
  15821.   BEGIN
  15822.   "Product XYZ Spreadsheet", "xys", EAF_DEFAULTOWNER, xyzspr.ico
  15823.   "Product XYZ Chart", "xyc", EAF_DEFAULTOWNER | EAF_REUSEICON
  15824.   END
  15825.  
  15826.  
  15827. ΓòÉΓòÉΓòÉ 15.6.2.4.5. Dialog and Window Template Statements ΓòÉΓòÉΓòÉ
  15828.  
  15829. This section describes how to define dialog and window templates. 
  15830.  
  15831. It also describes the control data and presentation parameter structures that 
  15832. the application needs to create windows and define dialog templates. 
  15833.  
  15834. DLGTEMPLATE and WINDOWTEMPLATE statements are used by an application to create 
  15835. predefined window and dialog resource templates. These statements are treated 
  15836. identically by the resource compiler and have the following format: 
  15837.  
  15838.  ΓöÇΓöÇΓöÇΓö¼ΓöÇDLGTEMPLATEΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇresourceidΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15839.       ΓööΓöÇWINDOWTEMPLATEΓöÇΓöÇΓöÿ
  15840.  
  15841.  ΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇ
  15842.       ΓööloadoptionΓöÇΓöÿΓööΓöÇmemoptionΓöÇΓöÿΓööΓöÇcodepageΓöÇΓöÿ
  15843.  
  15844.  ΓöÇΓöÇΓöÇBEGINΓöÇΓöÇΓö¼ΓöÇΓöÇDIALOG statementΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇENDΓöÇΓöÇΓöÇ
  15845.             Γö£ΓöÇΓöÇCONTROL statementΓöÇΓöÇΓöñ
  15846.             ΓööΓöÇΓöÇWINDOW statementΓöÇΓöÇΓöÇΓöÿ
  15847.  
  15848. In the following description of the parts of the DLGTEMPLATE and WINDOWTEMPLATE 
  15849. statements, data types are shown after each parameter or option. These are the 
  15850. data types that the parameter or option is converted to when it is compiled. 
  15851.  
  15852.  Purpose 
  15853.     The DLGTEMPLATE or WINDOWTEMPLATE statement marks the beginning of a window 
  15854.     template. It defines the name of the window, and its memory and load 
  15855.     options. 
  15856.  
  15857.  resourceid (USHORT) 
  15858.     This is either: 
  15859.  
  15860.         An integer (or a name that resolves to an integer) in the range of 1 
  15861.          through 65535 
  15862.  
  15863.         A unique string enclosed in double quote marks 
  15864.  
  15865.  loadoption (LOADOPTION) 
  15866.     The default is LOADONCALL. 
  15867.  
  15868.     See Resource Load and Memory Options for a description of LOADOPTION. 
  15869.  
  15870.  memoption (MEMOPTION) 
  15871.     The default is MOVEABLE. 
  15872.  
  15873.     See Resource Load and Memory Options for a description of MEMOPTION. 
  15874.  
  15875.  code page (USHORT) 
  15876.     The code page of the text in the template. 
  15877.  
  15878.  Alternatively, ({) can be used in place of BEGIN and (}) in place of END. 
  15879.  
  15880.  The DLGTEMPLATE and WINDOWTEMPLATE keywords are synonymous. 
  15881.  
  15882.  The DIALOG statement defines a dialog-box window that can be created by an 
  15883.  application and has the following format: 
  15884.  
  15885.    ΓöÇΓöÇΓöÇDIALOGΓöÇΓöÇΓöÇtextΓöÇ,ΓöÇidΓöÇ,ΓöÇxΓöÇ,ΓöÇyΓöÇ,ΓöÇcxΓöÇ,ΓöÇcyΓöÇΓöÇΓöÇΓöÇ
  15886.  
  15887.    ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  15888.            ΓööΓöÇ,styleΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  15889.                     ΓööΓöÇ,controlΓöÇΓöÿ
  15890.  
  15891.    ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼
  15892.     Γöé                 ΓöéΓöéΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉΓöé
  15893.     Γöé                 ΓöéΓöé                     ΓöéΓöé
  15894.     ΓööCTLDATAΓöÇstatementΓöÿΓööΓöÇPRESPARAMSΓöÇstatementΓöÇΓö┤Γöÿ
  15895.  
  15896.              ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  15897.                                      Γöé
  15898.    ΓöÇBEGINΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇDIALOGΓöÇstatementΓöÇΓöÇΓö¼ΓöÇΓö┤ΓöÇΓöÇENDΓöÇΓöÇΓöÇ
  15899.                Γö£ΓöÇΓöÇCONTROLΓöÇstatementΓöÇΓöñ
  15900.                ΓööΓöÇΓöÇWINDOWΓöÇstatementΓöÇΓöÇΓöÿ
  15901.  
  15902.       Control Data Statement 
  15903.       Presentation Parameters Statement 
  15904.  
  15905.  The WINDOW and CONTROL statements have the format: 
  15906.  
  15907.    ΓöÇΓö¼ΓöÇWINDOWΓöÇΓö¼ΓöÇtext,ΓöÇid,ΓöÇx,ΓöÇy,ΓöÇcx,ΓöÇcy,ΓöÇclassΓöÇΓöÇ
  15908.       ΓööΓöÇCONTROLΓöÿ
  15909.  
  15910.    ΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇ
  15911.       ΓööΓöÇΓöÇΓöÇ,styleΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  15912.                    ΓööΓöÇΓöÇ,controlΓöÇΓöÇΓöÇΓöÿ
  15913.  
  15914.  
  15915.    ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼
  15916.     Γöé                 ΓöéΓöéΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉΓöé
  15917.     Γöé                 ΓöéΓöé                     ΓöéΓöé
  15918.     ΓööCTLDATAΓöÇstatementΓöÿΓööΓöÇPRESPARAMSΓöÇstatementΓöÇΓö┤Γöÿ
  15919.  
  15920.              ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  15921.                                      Γöé
  15922.    ΓöÇBEGINΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇDIALOGΓöÇstatementΓöÇΓöÇΓö¼ΓöÇΓö┤ΓöÇΓöÇENDΓöÇΓöÇΓöÇ
  15923.                Γö£ΓöÇΓöÇCONTROLΓöÇstatementΓöÇΓöñ
  15924.                ΓööΓöÇΓöÇWINDOWΓöÇstatementΓöÇΓöÇΓöÿ
  15925.  
  15926.       Control Data Statement 
  15927.       Presentation Parameters Statement 
  15928.  
  15929.  Note:  The WINDOW and CONTROL keywords are synonymous. 
  15930.  
  15931.  The DIALOG, CONTROL, and WINDOW statements between the BEGIN and END 
  15932.  statements are defined as child windows. Presentation parameters always apply 
  15933.  to the whole control. They cannot be changed for the individual items within 
  15934.  the control. 
  15935.  
  15936.  Following is the description of the parameters for these statements. 
  15937.  
  15938.  Purpose 
  15939.     These statements mark the beginning of a window. They define the starting 
  15940.     location on the display screen, its width, its height, and other details 
  15941.     such as style. 
  15942.  
  15943.     Note:  Not all values may be specified for each statement type. For 
  15944.            details, see the call syntax diagrams. 
  15945.  
  15946.  text (PCH) 
  15947.     A string, enclosed in double quotes, that is displayed in the title-bar 
  15948.     control, if it exists. To insert a double-quote character (") in the text, 
  15949.     use two double-quote characters (""). 
  15950.  
  15951.  id (USHORT) 
  15952.     Item identifier. 
  15953.  
  15954.  x,y (SHORT) 
  15955.     Integer numbers specifying the x- and y-coordinates on the display screen 
  15956.     of the lower left corner of the dialog. X and y are in dialog coordinates. 
  15957.     The exact meaning of the coordinates depends on the style defined by the 
  15958.     style argument. For normal dialogs, the coordinates are relative to the 
  15959.     origin of the parent window. For FCF_SCREENALIGN style boxes, the 
  15960.     coordinates are relative to the origin of the display screen. With 
  15961.     FCF_MOUSEALIGN, the coordinates are relative to the position of the pointer 
  15962.     at the time  the dialog is created. 
  15963.  
  15964.  cx,cy (SHORT) 
  15965.     Integer numbers specifying the width and height of the window. 
  15966.  
  15967.  class (PCH) 
  15968.     The class of the window or control to be created. 
  15969.  
  15970.     Note:  For a DIALOG statement the class is fixed as WC_FRAME and cannot be 
  15971.            specified. 
  15972.  
  15973.  style (ULONG) 
  15974.     Any additional window style, frame style, or other class-specific style. 
  15975.  
  15976.     The default style is WS_SYNCPAINT | WS_CLIPSIBLINGS | WS_SAVEBITS | 
  15977.     FS_DLGBORDER. If the FS_DLGBORDER or WS_SAVEBITS styles are not required, 
  15978.     they should be preceded by the keyword "NOT". For example: 
  15979.  
  15980.  
  15981.         NOT FS_DLGBORDER | FS_BORDER | NOT WS_SAVEBITS
  15982.  
  15983.     replaces the FS_DLGBORDER default style by the FS_BORDER style and removes 
  15984.     the WS_SAVEBITS style. Note that the logic of the NOT keyword is different 
  15985.     from the corresponding operator in the C language. 
  15986.  
  15987.     It is not possible to remove the default WS_SYNCPAINT and WS_CLIPSIBLINGS 
  15988.     styles. 
  15989.  
  15990.  control (ULONG) 
  15991.     Frame Creation Flags (FCF_*) for the window. 
  15992.  
  15993.     This data is placed in the control data field in the correct format for a 
  15994.     window of class WC_FRAME. 
  15995.  
  15996.     Note:  FCF_SHELLPOSITION has no effect if specified in a template. 
  15997.  
  15998.  CTLDATA Statement 
  15999.     A statement used to define control data for the control. For more 
  16000.     information on this statement, see Control Data Statement 
  16001.  
  16002.  PRESPARAMS Statement 
  16003.     A statement used to define presentation parameters. For more information on 
  16004.     this statement, see Presentation Parameters Statement 
  16005.  
  16006.  
  16007. ΓòÉΓòÉΓòÉ 15.6.2.4.6. MENU Statement ΓòÉΓòÉΓòÉ
  16008.  
  16009. The MENU statement defines the contents of a menu resource. A menu resource is 
  16010. a collection of information that defines the appearance and function of an 
  16011. application menu. A menu can be used to create an action bar. 
  16012.  
  16013. The MENU statement has the form: 
  16014.  
  16015.  ΓöÇMENU-menuidΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇ
  16016.                  ΓööΓöÇloadoptionΓöÇΓöÿΓööΓöÇmemoptionΓöÇΓöÿ
  16017.  
  16018.  ΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  16019.       ΓööΓöÇΓöÇcodepageΓöÇΓöÇΓöÿ
  16020.  
  16021.                ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  16022.                                     Γöé
  16023.              ΓöîΓöÇΓöÇPRESPARAMSΓöÇstatementΓöÇΓö┤ΓöÉ
  16024.  ΓöÇΓöÇΓöÇΓöÇBEGINΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  16025.           ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  16026.                                   Γöé
  16027.  ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇMENUITEMΓöÇstatementΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇENDΓöÇΓöÇΓöÇΓöÇ
  16028.           Γöé                        Γöé
  16029.           ΓööΓöÇΓöÇΓöÇSUBMENUΓöÇstatementΓöÇΓöÇΓöÇΓöÇΓöÿ
  16030.  
  16031.       Menu Item Statements 
  16032.       Submenu Statements 
  16033.       Presentation Parameters Statement. 
  16034.  
  16035.  menuid (USHORT) 
  16036.     This is either: 
  16037.  
  16038.         An integer (or a name that resolves to an integer) in the range of 1 
  16039.          through 65535 
  16040.  
  16041.         A unique string enclosed in double quote marks 
  16042.  
  16043.  loadoption (LOADOPTION) 
  16044.     The default is LOADONCALL. 
  16045.  
  16046.     SeeResource Load and Memory Options for a description of LOADOPTION. 
  16047.  
  16048.  memoption (MEMOPTION) 
  16049.     The default is MOVEABLE. 
  16050.  
  16051.     See Resource Load and Memory Options for a description of MEMOPTION. 
  16052.  
  16053.  codepage (USHORT) 
  16054.     The code page of the text. 
  16055.  
  16056.  PRESPARAMS statement 
  16057.     A special resource statement used to define presentation parameters. These 
  16058.     are discussed in more detail in Presentation Parameters Statement. 
  16059.  
  16060.  MENUITEM statement 
  16061.     A special resource statement used to define the items in the menu. These 
  16062.     are discussed in more detail in Menu Item Statements. 
  16063.  
  16064.  SUBMENU statement 
  16065.     A special resource statement used to define a submen. SUBMENU statements 
  16066.     are discussed in more detail in Submenu Statements. 
  16067.  
  16068.  Example 
  16069.  
  16070.  Following is an example of a complete MENU statement: 
  16071.  
  16072.  
  16073.   MENU "sample"
  16074.   BEGIN
  16075.    MENUITEM "~Alpha", 100, MIS_TEXT
  16076.    SUBMENU  "~Beta", 101, MIS_TEXT
  16077.    BEGIN
  16078.        MENUITEM "~Green", 200, MIS_TEXT
  16079.        MENUITEM "~Blue", 201, MIS_TEXT,MIA_CHECKED
  16080.    END
  16081.   END
  16082.  
  16083.  
  16084. ΓòÉΓòÉΓòÉ 15.6.2.4.6.1. Menu Item Statements ΓòÉΓòÉΓòÉ
  16085.  
  16086. MENUITEM statements are used in the item-definition section of a MENU statement 
  16087. to define the names and attributes of the actual menu items. Any number of 
  16088. statements can be given; each defines a unique item. The order of the 
  16089. statements defines the order of the menu items. 
  16090.  
  16091. Note:  The MENUITEM statements can only be used within an item-definition 
  16092.        section of a MENU statement. 
  16093.  
  16094.    ΓöÇΓöÇMENUITEMΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  16095.  
  16096.    ΓöÇΓö¼ΓöÇΓöÇstringΓöÇΓöÇ,Γö¼ΓöÇΓöÇΓöÇΓöÇΓö¼,Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇ,Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼Γö¼
  16097.      Γöé           ΓööcmdΓöÇΓöÿ ΓööstylesΓöÿ  ΓööattributesΓöÿΓöé
  16098.      Γöé                                        Γöé
  16099.      ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇSEPARATORΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  16100.  
  16101.  string (PCH) 
  16102.     A string, enclosed in double quotation marks, specifying the text of the 
  16103.     menu item. 
  16104.  
  16105.     To insert a double-quote character (") in the text, use two double-quote 
  16106.     characters (""). 
  16107.  
  16108.     If the styles parameter does not contain MIS_TEXT, the string is ignored 
  16109.     but must still be specified. An empty string ("") should be specified in 
  16110.     this instance. 
  16111.  
  16112.     To indicate the mnemonic for each item, insert the tilde character (~) in 
  16113.     the string preceding the mnemonic character. 
  16114.  
  16115.     For MENUITEM statements within a SUBMENU (that is, pull-down menus) text 
  16116.     may be split into a second column with an alignment substring. To 
  16117.     right-align items insert "\a" in the text where alignment should begin. To 
  16118.     left-align a second column of text insert "\t" in the text where alignment 
  16119.     should begin. For each SUBMENU the longest item in the second column 
  16120.     determines the width of that column. Only one alignment substring should be 
  16121.     used in a menu item. 
  16122.  
  16123.  cmd (USHORT) 
  16124.     The value of the WM_COMMAND, WM_HELP, or WM_SYSCOMMAND message generated by 
  16125.     the item when it is selected. It identifies the selection made and should 
  16126.     be unique within one menu definition. 
  16127.  
  16128.  styles (USHORT) 
  16129.     One or more menu options defined by the MIS_* constants, ORed together with 
  16130.     the "|" operator. For definitions of the MIS_* constants, see Menu Item 
  16131.     Styles. 
  16132.  
  16133.  attributes (USHORT) 
  16134.     One or more menu options defined by the MIA_* constants, ORed together with 
  16135.     the "|" operator. For definitions of the MIA_* constants, see Menu Item 
  16136.     Attributes. 
  16137.  
  16138.     The style MIS_SUBMENU must not be used with this statement. See Submenu 
  16139.     Statements for the SUBMENU statement. 
  16140.  
  16141.  Examples: 
  16142.  
  16143.  
  16144.   MENUITEM  "Alpha", 1, MIS_TEXT,MIA_ENABLED|MIA_CHECKED,'A'
  16145.   MENUITEM  "Beta", 2, MIS_TEXT,,'B'
  16146.  
  16147.  
  16148. ΓòÉΓòÉΓòÉ 15.6.2.4.6.2. Submenu Statements ΓòÉΓòÉΓòÉ
  16149.  
  16150. In addition to simple items, a menu definition can contain the definition of a 
  16151. submenu. A submenu can itself invoke a lower level submenu. 
  16152.  
  16153.  ΓöÇΓöÇSUBMENUΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  16154.  
  16155.  ΓöÇΓöÇΓöÇΓöÇstringΓöÇΓöÇ,Γö¼ΓöÇΓöÇΓöÇΓöÇΓö¼,Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇ,Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇ
  16156.                ΓööcmdΓöÇΓöÿ ΓööstylesΓöÿ  ΓööattributesΓöÿ
  16157.  
  16158.  
  16159.                ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  16160.                                     Γöé
  16161.              ΓöîΓöÇΓöÇPRESPARAMSΓöÇstatementΓöÇΓö┤ΓöÉ
  16162.  ΓöÇΓöÇΓöÇΓöÇBEGINΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  16163.           ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  16164.                                   Γöé
  16165.  ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇMENUITEMΓöÇstatementΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇENDΓöÇΓöÇΓöÇΓöÇ
  16166.           Γöé                        Γöé
  16167.           ΓööΓöÇΓöÇΓöÇSUBMENUΓöÇstatementΓöÇΓöÇΓöÇΓöÇΓöÿ
  16168.  
  16169.  string (PCH) 
  16170.     A string, enclosed in double quotation marks, specifying the text of the 
  16171.     menu item. 
  16172.  
  16173.     To insert a double-quote character (") in the text, use two double-quote 
  16174.     characters (""). 
  16175.  
  16176.     If the styles parameter does not contain MIS_TEXT, the string is ignored 
  16177.     but must still be specified. An empty string ("") should be specified in 
  16178.     this instance. 
  16179.  
  16180.  cmd (USHORT) 
  16181.     The value of the WM_COMMAND, WM_HELP, or WM_SYSCOMMAND message generated by 
  16182.     the item when it is selected. It identifies the selection made and should 
  16183.     be unique within one menu definition. 
  16184.  
  16185.  styles (USHORT) 
  16186.     One or more menu options defined by the MIS_ constants, ORed together with 
  16187.     the "|" operator. 
  16188.  
  16189.     In the SUBMENU statement, the style MIS_SUBMENU is always ORed with the 
  16190.     styles given. If no value is supplied, the default value of MIS_TEXT and 
  16191.     MIS_SUBMENU is used. 
  16192.  
  16193.  attributes (USHORT) 
  16194.     One or more menu options defined by the MIA_ constants, ORed together with 
  16195.     the | operator. 
  16196.  
  16197.  Example: 
  16198.  
  16199.  
  16200.   MENU "chem"
  16201.   BEGIN
  16202.  
  16203.   SUBMENU  "~Elements", 2, MIS_TEXT
  16204.   BEGIN
  16205.        MENUITEM "~Oxygen", 200, MIS_TEXT
  16206.        MENUITEM "~Carbon", 201, MIS_TEXT,MIA_CHECKED
  16207.        MENUITEM "~Hydrogen", 202, MIS_TEXT
  16208.   END
  16209.  
  16210.   SUBMENU  "~Compounds", 3, MIS_TEXT
  16211.   BEGIN
  16212.        MENUITEM "~Glucose", 301, MIS_TEXT
  16213.        MENUITEM "~Sucrose", 302, MIS_TEXT,MIA_CHECKED
  16214.        MENUITEM "~Lactose", 303, MIS_TEXT|MIS_BREAK
  16215.        MENUITEM "~Fructose", 304, MIS_TEXT
  16216.   END
  16217.  
  16218.   END
  16219.  
  16220.  
  16221. ΓòÉΓòÉΓòÉ 15.6.2.4.6.3. SEPARATOR Menu Item ΓòÉΓòÉΓòÉ
  16222.  
  16223. There is a special form of the MENUITEM statement that is used to create a 
  16224. horizontal dividing bar between two active menu items in a pull-down menu. The 
  16225. SEPARATOR menu item is itself inactive and has no text associated with it nor a 
  16226. cmd value. 
  16227.  
  16228. Example 
  16229.  
  16230.  
  16231. MENUITEM  "~Roman", 206, MIS_TEXT
  16232. MENUITEM  SEPARATOR
  16233. MENUITEM  "20 ~Point", 301, MIS_TEXT
  16234.  
  16235.  
  16236. ΓòÉΓòÉΓòÉ 15.6.2.4.6.4. Menu Template ΓòÉΓòÉΓòÉ
  16237.  
  16238. Menu templates are data structures used to define menus. Menu templates can be 
  16239. loaded as resources or created dynamically, or embedded in dialog templates, 
  16240. which in turn can be loaded as resources or created dynamically. Templates 
  16241. loaded as resources cannot contain references to bit maps or owner-drawn items. 
  16242. A menu template consists of a sequence of variable-length records. Each record 
  16243. in a menu template defines a menu item. If a menu item contains a reference to 
  16244. a submenu, the menu template that defines that submenu is placed after the 
  16245. definition of that particular menu item. 
  16246.  
  16247.  
  16248. ΓòÉΓòÉΓòÉ 15.6.2.4.6.5. Template Format ΓòÉΓòÉΓòÉ
  16249.  
  16250. A menu template has the following format: 
  16251.  
  16252.  Length (USHORT) 
  16253.     The length of the menu template. 
  16254.  
  16255.  Version (USHORT) 
  16256.     The template version. Versions 0 and 1 are valid. 
  16257.  
  16258.  Code page (USHORT) 
  16259.     The identifier of the code page used for the text items within the menu 
  16260.     (but not any submenus, which each have their own code pages). 
  16261.  
  16262.  Item offset (USHORT) 
  16263.     The offset of the items from the start of the template, in bytes. 
  16264.  
  16265.  Count (USHORT) 
  16266.     The count of menu items. 
  16267.  
  16268.  Presentation parameters offset (USHORT) 
  16269.     Offset of presentation parameters from the start of the template, in bytes. 
  16270.     This field is only present for version 1 of the template. 
  16271.  
  16272.  Menu Items 
  16273.     A variable-sized array of menu items as follows: 
  16274.  
  16275.     Style (USHORT) 
  16276.             Menu item styles (MIS_*; see Menu Item Styles) combined with the 
  16277.             logical-OR operator. 
  16278.  
  16279.     Attributes (USHORT) 
  16280.             Menu item attributes (MIA_*; see Menu Item Attributes) combined 
  16281.             with the logical-OR operator. 
  16282.  
  16283.     Item (USHORT) 
  16284.             An application-provided identifier for the menu item. 
  16285.  
  16286.     Variable data 
  16287.             Following the identifier is a variable data structure whose format 
  16288.             depends upon the value of Style: 
  16289.  
  16290.             MIS_TEXT 
  16291.  
  16292.                     Text (PSZ) 
  16293.                             Null-terminated text string. 
  16294.  
  16295.             MIS_SUBMENU 
  16296.                     A menu template structure. 
  16297.  
  16298.             MIS_BITMAP 
  16299.  
  16300.                     Text (PCH) 
  16301.                             Null-terminated text string. 
  16302.  
  16303.                             For MIS_BITMAP menu items, the item text string can 
  16304.                             be used to derive the resource identifier from 
  16305.                             which a bit map is loaded. There are three 
  16306.                             instances: 
  16307.  
  16308.                                 The first byte is null; that is, no resource 
  16309.                                  is defined and it is assumed that the 
  16310.                                  application subsequently provides a bit-map 
  16311.                                  handle for the item. 
  16312.  
  16313.                                 The first byte is 0xFF, the second byte is the 
  16314.                                  low byte of the resource identifier, and the 
  16315.                                  third byte is the high byte of the resource 
  16316.                                  identifier. 
  16317.  
  16318.                                 The first character is "#", and subsequent 
  16319.                                  characters make up the decimal text 
  16320.                                  representation of the resource identifier. 
  16321.  
  16322.                             The resource is assumed to reside in the resource 
  16323.                             file of the current process. 
  16324.  
  16325.                             If the string is empty or does not follow the 
  16326.                             format above, no resource is loaded. 
  16327.  
  16328.  
  16329. ΓòÉΓòÉΓòÉ 15.6.2.4.7. STRINGTABLE Statement ΓòÉΓòÉΓòÉ
  16330.  
  16331. The STRINGTABLE statement defines one or more string resources for an 
  16332. application. String resources are null-terminated ASCII strings that can be 
  16333. loaded, when needed, from the executable file, using the WinLoadString 
  16334. function. 
  16335.  
  16336. Note:  The ASCII strings can include no more than 256 characters, including the 
  16337.        NULL termination character. 
  16338.  
  16339.  The STRINGTABLE statement has the form: 
  16340.  
  16341.    ΓöÇSTRINGTABLEΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼Γö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇ
  16342.                   ΓööΓöÇloadoptionΓöÇΓöÿΓööΓöÇmemoptionΓöÇΓöÿ
  16343.  
  16344.  
  16345.    ΓöÇΓöÇΓöÇΓöÇBEGINΓöÇΓöÇΓöÇstring-definitionsΓöÇΓöÇΓöÇENDΓöÇΓöÇΓöÇ
  16346.  String-definitions 
  16347.  
  16348.         ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  16349.         Γöé                                 Γöé
  16350.                                          Γöé
  16351.     ΓöÇΓöÇΓöÇΓöÇΓöÇintegerΓöÇΓöÇΓöÇΓöÇΓöÇstringΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇ
  16352.  
  16353.  loadoption (LOADOPTION) 
  16354.     An optional keyword specifying when the resource is to be loaded. It must 
  16355.     be one of: 
  16356.  
  16357.     PRELOAD                Resource is loaded immediately. 
  16358.     LOADONCALL             Resource is loaded when called. 
  16359.  
  16360.     The default is LOADONCALL. 
  16361.  
  16362.     See Resource Load and Memory Options for a description of LOADOPTION. 
  16363.  
  16364.  memoption (MEMOPTION) 
  16365.     Consists of the following keyword or keywords, specifying whether the 
  16366.     resource is fixed or movable and whether it is discardable: 
  16367.  
  16368.     FIXED                  Resource remains at a fixed memory location. 
  16369.     MOVEABLE               Resource can be moved if necessary to compact 
  16370.                            memory. 
  16371.     DISCARDABLE            Resource can be discarded if no longer needed. 
  16372.  
  16373.     The default is MOVEABLE and DISCARDABLE. 
  16374.  
  16375.     See Resource Load and Memory Options for a description of MEMOPTION. 
  16376.  
  16377.  string (PCH) 
  16378.     A string, enclosed in double quotation marks. To insert a double-quote 
  16379.     character (") in the text, use two double-quote characters (""). 
  16380.  
  16381.     Note:  A string may be defined on more than one line if each line begins 
  16382.            and ends with a double-quote. If newline characters are desired 
  16383.            after each line, there should be a double-quote at the beginning of 
  16384.            the first line and at the end of the last line only. The string may 
  16385.     contain any ASCII characters.  Because (\) is interpreted as an escape 
  16386.     character, use (\\) to generate a (\). 
  16387.  
  16388.     The following escape sequences may be used: 
  16389.  
  16390.     Escape 
  16391.     Sequence           Name 
  16392.     \t                 Horizontal tab 
  16393.     \a                 Bell (alert) 
  16394.     \nnn               ASCII character (octal) 
  16395.     \xdd               ASCII character (hexadecimal). 
  16396.  
  16397.     The sequences \ddd and \xdd allow any character in the ASCII character set 
  16398.     to be inserted in the character string. Thus, the horizontal tab could be 
  16399.     entered as \X09, \011 or \t. 
  16400.  
  16401.  Example 
  16402.  
  16403.   #define IDS_STRING1  1
  16404.   #define IDS_STRING2  2
  16405.   #define IDS_STRING3  3
  16406.  
  16407.   STRINGTABLE
  16408.   BEGIN
  16409.     IDS_STRING1, "The first two strings in this table are identical."
  16410.     IDS_STRING2, "The first two strings "
  16411.                  "in this table are identical."
  16412.     IDS_STRING3, "This string will contain a newline character
  16413.                   before it continues on this line."
  16414.   END
  16415.  
  16416.  
  16417. ΓòÉΓòÉΓòÉ 15.6.3. Templates, Control Data, and Presentation Parameters ΓòÉΓòÉΓòÉ
  16418.  
  16419. This section describes: 
  16420.  
  16421.      Dialog Template 
  16422.      Dialog Coordinates 
  16423.      Dialog Template Format and Contents 
  16424.      Header 
  16425.      Items 
  16426.      Data Area 
  16427.      Control Data Statement 
  16428.      Presentation Parameters Statement 
  16429.      Parent/Child/Owner Relationship 
  16430.      Predefined Window Classes 
  16431.      Predefined Control Statements 
  16432.  
  16433.  
  16434. ΓòÉΓòÉΓòÉ 15.6.3.1. Dialog Template ΓòÉΓòÉΓòÉ
  16435.  
  16436. A dialog template is a data structure used to define a dialog box. Dialog 
  16437. templates can be loaded from resources or created dynamically in memory. Dialog 
  16438. templates define windows of any window class that contain child windows of any 
  16439. class. For standard dialog windows, the dialog window itself is created with 
  16440. the WC_FRAME class, and its children are any of the preregistered control 
  16441. classes. 
  16442.  
  16443. The dialog template specifies all the information required to create a dialog 
  16444. box and its children. 
  16445.  
  16446.  
  16447. ΓòÉΓòÉΓòÉ 15.6.3.2. Dialog Coordinates ΓòÉΓòÉΓòÉ
  16448.  
  16449. Coordinates in a dialog template are specified in dialog coordinates. These are 
  16450. based on the default character cell size; a unit in the horizontal direction is 
  16451. 1/4 the default character-cell width, and a unit in the vertical direction is 
  16452. 1/8 the default character-cell height. The origin is the bottom left-hand 
  16453. corner of the dialog box. 
  16454.  
  16455.  
  16456. ΓòÉΓòÉΓòÉ 15.6.3.3. Dialog Template Format and Contents ΓòÉΓòÉΓòÉ
  16457.  
  16458. A dialog template has these sections: 
  16459.  
  16460.  Header      Defines the type of template format and contains information about 
  16461.              the location of the other sections of the template. It also 
  16462.              contains a summary of the status of the individual controls 
  16463.              contained within the dialog box. 
  16464.  
  16465.  Items       Defines each of the controls that comprise the dialog box. 
  16466.  
  16467.  Data area   Contains the data values associated with each control. Each 
  16468.              control defined in the item section contains pointers to the data 
  16469.              area section. The data area also contains presentation parameter 
  16470.              definitions. The data area is not necessarily a contiguous portion 
  16471.              of the template. User data can be placed anywhere in the template 
  16472.              if it does not interfere with other defined information. 
  16473.  
  16474.  The sections of a dialog template are illustrated in the following figure. 
  16475.  
  16476.  Notes 
  16477.  
  16478.    1. Throughout the dialog template all lengths are in bytes. String lengths 
  16479.       do not include any null terminator that may be present. When strings are 
  16480.       passed to the Presentation Interface, the length specifications are used 
  16481.       and any null terminators are ignored. When strings are returned by the 
  16482.       Presentation Interface, length specifications and null terminators are 
  16483.       both supplied; therefore, space must be allowed for a null terminator. 
  16484.  
  16485.    2. All offsets are in bytes from the start of the dialog template structure. 
  16486.  
  16487.  
  16488. ΓòÉΓòÉΓòÉ 15.6.3.4. Header ΓòÉΓòÉΓòÉ
  16489.  
  16490. The dialog template header consists of: 
  16491.  
  16492.  Template length (USHORT) 
  16493.    The overall length of the dialog template. 
  16494.  
  16495.  Template type (USHORT) 
  16496.    The dialog template format type. The format defined is type 0. 
  16497.  
  16498.  Code page (USHORT) 
  16499.    The code page of the text in the dialog template. 
  16500.  
  16501.  Items offset (USHORT) 
  16502.    The offset of the array of dialog items. 
  16503.  
  16504.  Reserved (USHORT) 
  16505.    Must be 0. 
  16506.  
  16507.  Focus item (USHORT) 
  16508.    The index in the array of dialog items of the control to receive the focus. 
  16509.    If this value is 0, or if the identified control cannot receive the focus, 
  16510.    for example because it is a static control, the focus is passed to the first 
  16511.    item within the template that can receive the focus. 
  16512.  
  16513.  Reserved (USHORT) 
  16514.    Must be 0. 
  16515.  
  16516.  
  16517. ΓòÉΓòÉΓòÉ 15.6.3.5. Items ΓòÉΓòÉΓòÉ
  16518.  
  16519. The dialog template items are specified as elements of an array that also 
  16520. defines the hierarchy of the control windows of the dialog box. Each element of 
  16521. the array is a control window descriptor and defines some control or a child of 
  16522. some control, so that every control within the dialog box is described by this 
  16523. array. The first descriptor is the specification of the dialog box itself. 
  16524.  
  16525. The dialog template items consist of: 
  16526.  
  16527.  Reserved (USHORT) (BOOL16) 
  16528.    Must be 0. 
  16529.  
  16530.  Children (USHORT) 
  16531.    The number of dialog item child windows that are owned by this dialog item. 
  16532.  
  16533.    This is the number of elements following in the array that are created as 
  16534.    child windows of this window. Each window can have any number of child 
  16535.    windows, which allows for a tree-structured arrangement. 
  16536.  
  16537.    For example, in the figure in Dialog Template Format and Contents, assuming 
  16538.    that there are no more dialog items than are shown, the first item, the 
  16539.    dialog box control window descriptor, has three children. The second item 
  16540.    has no children, the third item has two children, and the remaining three 
  16541.    items have no children. 
  16542.  
  16543.  Class name length (USHORT) 
  16544.    The length of the window class name string. 
  16545.  
  16546.  Class name offset (USHORT) 
  16547.    The offset of the window class name string. 
  16548.  
  16549.  Text length (USHORT) 
  16550.    The length of the text string. 
  16551.  
  16552.    For controls that allow input of text, this is the current text length, not 
  16553.    the maximum text length, and so this value changes when text is put into the 
  16554.    control. 
  16555.  
  16556.  Text offset (USHORT) 
  16557.    The offset of the text string. 
  16558.  
  16559.  Style (ULONG) (BOOL32) 
  16560.    The window style of the control. 
  16561.  
  16562.    The standard style bits are 16 bits. The use of the remaining 16 bits 
  16563.    depends on the class of the control. 
  16564.  
  16565.  x (SHORT) 
  16566.  
  16567.  y (SHORT) 
  16568.    The position of the origin of the dialog item. This is specified in dialog 
  16569.    coordinates, with x and y relative to the origin of the parent window. 
  16570.  
  16571.  cx (SHORT) 
  16572.  
  16573.  cy (SHORT) 
  16574.    The size of the dialog item in dialog coordinates; it must be greater than 
  16575.    0. 
  16576.  
  16577.  Identifier (USHORT) 
  16578.    An application-defined identifier for the dialog item. 
  16579.  
  16580.  Reserved (USHORT) 
  16581.    Must be zero. 
  16582.  
  16583.  Control data offset (USHORT) 
  16584.    The offset of the control-specific data for this dialog item. A value of 0 
  16585.    indicates that there is no control data for this dialog item. 
  16586.  
  16587.  
  16588. ΓòÉΓòÉΓòÉ 15.6.3.6. Data Area ΓòÉΓòÉΓòÉ
  16589.  
  16590. The dialog template data area contains the following different types of 
  16591. objects: text, class name, presentation parameters, and control data. These 
  16592. objects can be placed anywhere within the data area. They do not have to be in 
  16593. contiguous storage, and so an application can place data for its own use 
  16594. between these objects. 
  16595.  
  16596. The dialog template data area contains: 
  16597.  
  16598.  Text (PCH) 
  16599.    The textual data associated with a dialog item. 
  16600.  
  16601.  Class name (PCH) 
  16602.    The name of the window class. 
  16603.  
  16604.  Presentation parameters (PRESPARAMS) 
  16605.    Presentation parameters are defined in Presentation Parameters Statement. 
  16606.  
  16607.  Control data (CTLDATA) 
  16608.    For more information, see Control Data Statement. 
  16609.  
  16610.  
  16611. ΓòÉΓòÉΓòÉ 15.6.3.7. Control Data Statement ΓòÉΓòÉΓòÉ
  16612.  
  16613. The optional CTLDATA statement is used to define control data for the control. 
  16614. Hexadecimal or decimal word constants follow the CTLDATA statement, separated 
  16615. with commas. 
  16616.  
  16617.               ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  16618.               Γöé                          Γöé
  16619.                                         Γöé
  16620.  ΓöÇΓöÇCTLDATAΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇdecimalΓöÇvalueΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓö┤ΓöÇ
  16621.                  Γöé                     Γöé
  16622.                  Γö£ΓöÇΓöÇhexadecimalΓöÇvalueΓöÇΓöÇΓöñ
  16623.                  Γöé                     Γöé
  16624.                  ΓööΓöÇΓöÇstringΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  16625.  
  16626. In addition to hexadecimal or decimal data, the CTLDATA statement can be 
  16627. followed by the MENU keyword, followed by a menu template in a BEGIN/END block. 
  16628. This creates a menu template as the control data of the window. 
  16629.  
  16630.  
  16631. ΓòÉΓòÉΓòÉ 15.6.3.8. Presentation Parameters Statement ΓòÉΓòÉΓòÉ
  16632.  
  16633. The optional PRESPARAMS statement is used to define presentation parameters. 
  16634. The syntax of the PRESPARAMS statement is as follows. 
  16635.  
  16636.                                  ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇΓöÉ
  16637.                                  Γöé         Γöé
  16638.                                           Γöé
  16639.  ΓöÇΓöÇΓöÇPRESPARAMSΓöÇΓöÇΓöÇΓöÇtypeΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇvalueΓöÇΓöÇΓö┤ΓöÇ
  16640.  
  16641. A presentation parameter consists of: 
  16642.  
  16643.  type (ULONG) 
  16644.    The presentation parameter attribute type.  See the PARAM data type for a 
  16645.    description of valid types. 
  16646.  
  16647.    A string can be used to specify the type for a user type. If this is done, 
  16648.    the string type is converted into a string atom when the dialog template is 
  16649.    read into memory. Thereafter, this presentation parameter is referred to by 
  16650.    this string atom. The application can use the atom manager API to match the 
  16651.    string and the string atom. 
  16652.  
  16653.  value (LONG or PSZ) 
  16654.    One or more values depending upon the attribute type. 
  16655.  
  16656.    If the value is enclosed in quotes it is a zero-terminated string. 
  16657.    Otherwise, it is converted to a LONG. There may be more than one value, 
  16658.    depending upon the type. See PARAM data type for a description of the values 
  16659.    required for system-defined presentation parameters. 
  16660.  
  16661.  Examples 
  16662.  
  16663.  The following are examples of PRESPARAMS statements: 
  16664.  
  16665.  
  16666.   PRESPARAMS PP_BORDERCOLOR,  0x00ff00ffL
  16667.   PRESPARAMS PP_FONTNAMESIZE, "12.Helv"
  16668.   PRESPARAMS "my color",      0x00ff00ffL
  16669.   PRESPARAMS "my param",      0, 1, 2, 3, "Hi there"
  16670.  
  16671.  
  16672. ΓòÉΓòÉΓòÉ 15.6.3.9. Parent/Child/Owner Relationship ΓòÉΓòÉΓòÉ
  16673.  
  16674. The format of the DLGTEMPLATE and WINDOWTEMPLATE resources is very general to 
  16675. allow tree-structured relationships within the resource format. The general 
  16676. layout of the templates is: 
  16677.  
  16678.  
  16679. WINDOWTEMPLATE id
  16680. BEGIN
  16681.     WINDOW winTop             the top-level window
  16682.     BEGIN
  16683.         WINDOW wind1
  16684.         WINDOW wind2
  16685.         WINDOW wind3
  16686.         BEGIN
  16687.             WINDOW wind4
  16688.         END
  16689.         WINDOW wind5
  16690.     END
  16691. END
  16692.  
  16693. In this example, the top-level window is identified by winTop. It has four 
  16694. child windows: wind1, wind2, wind3, and wind5.  wind3 has one child window, 
  16695. wind4. When each of these windows is created, the parent and the owner are set 
  16696. to be the same. 
  16697.  
  16698. The only time when the parent and owner windows are not the same is when frame 
  16699. controls are automatically created by a frame window. 
  16700.  
  16701. Note that the WINDOW statements in the example above could also have been 
  16702. CONTROL or DIALOG statements. 
  16703.  
  16704.  
  16705. ΓòÉΓòÉΓòÉ 15.6.3.10. Predefined Window Classes ΓòÉΓòÉΓòÉ
  16706.  
  16707. The CONTROL statement can be used to define a window control of any class. 
  16708. Window classes may be user defined of one of a predefined set provided by the 
  16709. operating system. The following classes are provided in the OS/2 operating 
  16710. system. 
  16711.  
  16712.  WC_FRAME                 Application frame control. 
  16713.  WC_STATIC                Text and group boxes. 
  16714.  WC_BUTTON                Push button, check box or radio button. 
  16715.  WC_COMBOBOX              Combination of an entry field and list box. 
  16716.  WC_ENTRYFIELD            Single line entry field. 
  16717.  WC_MLE                   Multiple line entry field. 
  16718.  WC_LISTBOX               List box. 
  16719.  WC_MENU                  Application action bar, menus and popup menus. 
  16720.  WC_SCROLLBAR             Horizontal or vertical scroll bar. 
  16721.  WC_TITLEBAR              Application title bar. 
  16722.  WC_SPINBUTTON            Spin button entry field. 
  16723.  WC_CONTAINER             Container list. 
  16724.  WC_SLIDER                Horizontal or vertical slider control. 
  16725.  WC_VALUESET              Value set control. 
  16726.  WC_NOTEBOOK              Notebook control. 
  16727.  
  16728.  These controls make up the standard user interface components for 
  16729.  applications. The following example shows a simple listbox control. 
  16730.  
  16731.  
  16732.   CONTROL "", 1, 10, 20, 60, 40, WC_LISTBOX, WS_VISIBLE
  16733.  
  16734.  
  16735. ΓòÉΓòÉΓòÉ 15.6.3.11. Predefined Control Statements ΓòÉΓòÉΓòÉ
  16736.  
  16737. In addition to the general form of the CONTROL statement, there are special 
  16738. control statements for commonly used controls. These statements define the 
  16739. attributes of the child control windows that appear in the window. 
  16740.  
  16741. Control statements have this general form: 
  16742.  
  16743.  ΓöÇcontroltypeΓöÇtextΓöÇ,ΓöÇidΓöÇ,ΓöÇxΓöÇ,ΓöÇyΓöÇ,ΓöÇcxΓöÇ,ΓöÇcyΓöÇΓöÇΓöÇ
  16744.  
  16745.  ΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ
  16746.      ΓööΓöÇΓöÇ,ΓöÇΓöÇΓöÇstyleΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  16747.  
  16748.             ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  16749.                                      Γöé
  16750.  ΓöÇΓöÇΓöÇBEGINΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇDIALOG statementΓöÇΓöÇΓöÇΓö¼ΓöÇΓö┤ΓöÇENDΓöÇΓöÇΓöÇ
  16751.               Γö£ΓöÇΓöÇCONTROL statementΓöÇΓöÇΓöñ
  16752.               ΓööΓöÇΓöÇWINDOW statementΓöÇΓöÇΓöÇΓöÿ
  16753.  
  16754. The following six controls are exceptions to this form because they do not take 
  16755. a text field. See the LISTBOX control statement for the form of these six 
  16756. controls. 
  16757.  
  16758.      CONTAINER 
  16759.      LISTBOX 
  16760.      NOTEBOOK 
  16761.      SLIDER 
  16762.      SPINBUTTON 
  16763.      VALUESET 
  16764.  
  16765.  controltype 
  16766.    is one of the keywords described below, defining the type of the control. 
  16767.  
  16768.  text (PCH) 
  16769.    is a string specifying the text to be displayed.  The string must be 
  16770.    enclosed in double quotation marks. The manner in which the text is 
  16771.    displayed depends on the particular control, as detailed below. 
  16772.  
  16773.    To indicate the mnemonic for each item, insert the tilde character (~) in 
  16774.    the string preceding the mnemonic character. 
  16775.  
  16776.    The double quotation marks are required for the COMBOBOX title even if no 
  16777.    title is used. 
  16778.  
  16779.  id (USHORT) 
  16780.    is a unique integer number identifying the control. 
  16781.  
  16782.  x,y (SHORT) 
  16783.    are integer numbers specifying the x- and y-coordinates of the lower left 
  16784.    corner of the control, in dialog coordinates. The coordinates are relative 
  16785.    to the origin of the dialog. 
  16786.  
  16787.  cx,cy (SHORT) 
  16788.    are integer numbers specifying the width and height of the control. 
  16789.  
  16790.  The x, y, cx, and cy fields can use addition and subtraction operators (+ and 
  16791.  -). For example, 15 + 6 can be used for the x-field. 
  16792.  
  16793.  Styles can be combined using the (|) operator. 
  16794.  
  16795.  The control type keywords are shown below, with their classes and default 
  16796.  styles: 
  16797.  
  16798.  AUTOCHECKBOX 
  16799.  
  16800.     Class              WC_BUTTON 
  16801.     Default style      WS_TABSTOP, WS_VISIBLE, BS_AUTOCHECKBOX 
  16802.  
  16803.  AUTORADIOBUTTON 
  16804.  
  16805.     Class              WC_BUTTON 
  16806.     Default style      BS_AUTORADIOBUTTON, WS_TABSTOP, WS_VISIBLE 
  16807.  
  16808.  CHECKBOX 
  16809.  
  16810.     Class              WC_BUTTON 
  16811.     Default style      BS_CHECKBOX, WS_TABSTOP, WS_VISIBLE 
  16812.  
  16813.  COMBOBOX 
  16814.  
  16815.     Format             The form of the COMBOBOX control statement is shown 
  16816.                        below. 
  16817.  
  16818.                        The fields have the same meaning as in the other control 
  16819.                        statements. 
  16820.  
  16821.                                                ΓöÇΓöÇΓöÇCOMBOBOXΓöÇΓöÇ"title"ΓöÇΓöÇ,ΓöÇΓöÇidΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇxΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇyΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇcxΓöÇ
  16822.  
  16823.                                                ΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇcyΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇ
  16824.                                                            ΓööΓöÇΓöÇ,ΓöÇΓöÇΓöÇstyleΓöÇΓöÇΓöÿ
  16825.  
  16826.     Class              WC_COMBOBOX 
  16827.     Default style      CBS_SIMPLE, WS_TABSTOP, WS_VISIBLE 
  16828.  
  16829.  CONTAINER 
  16830.  
  16831.     Format             The CONTAINER control statement does not contain a text 
  16832.                        field, so it has the same format as the LISTBOX 
  16833.                        statement. 
  16834.  
  16835.     Class              WC_CONTAINER 
  16836.     Default style      WS_TABSTOP, WS_VISIBLE, CCS_SINGLESEL 
  16837.  
  16838.  CTEXT 
  16839.  
  16840.     Class              WC_STATIC 
  16841.     Default style      SS_TEXT, DT_CENTER, WS_GROUP, WS_VISIBLE 
  16842.  
  16843.  DEFPUSHBUTTON 
  16844.  
  16845.     Class              WC_BUTTON 
  16846.     Default style      BS_DEFAULT, BS_PUSHBUTTON, WS_TABSTOP, WS_VISIBLE 
  16847.  
  16848.  EDITTEXT 
  16849.  
  16850.     Class              WC_ENTRYFIELD 
  16851.     Default style      WS_TABSTOP, WS_VISIBLE, ES_AUTOSCROLL 
  16852.  
  16853.  ENTRYFIELD 
  16854.  
  16855.     Class              WC_ENTRYFIELD 
  16856.     Default style      WS_TABSTOP, ES_LEFT, WS_VISIBLE 
  16857.  
  16858.  FRAME 
  16859.  
  16860.     Class              WC_FRAME 
  16861.     Default style      WS_VISIBLE 
  16862.  
  16863.  GROUPBOX 
  16864.  
  16865.     Class              WC_STATIC 
  16866.     Default style      SS_GROUPBOX, WS_TABSTOP, WS_VISIBLE 
  16867.  
  16868.  ICON 
  16869.  
  16870.     Class              WC_STATIC 
  16871.     Default style      SS_ICON, WS_VISIBLE 
  16872.  
  16873.  LISTBOX 
  16874.  
  16875.     Format             The form of the LISTBOX control statement is different 
  16876.                        from the general form because it does not take a text 
  16877.                        field, however the fields have the same meaning as in 
  16878.                        the other control statements. The form of the LISTBOX 
  16879.                        control statement is shown below. 
  16880.  
  16881.                                                ΓöÇΓöÇcontroltypeΓöÇΓöÇΓöÇidΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇxΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇyΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇcxΓöÇΓöÇ
  16882.  
  16883.                                                ΓöÇΓöÇΓöÇ,ΓöÇΓöÇΓöÇcyΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇ
  16884.                                                            ΓööΓöÇΓöÇ,ΓöÇΓöÇΓöÇstyleΓöÇΓöÇΓöÿ
  16885.  
  16886.     Class              WC_LISTBOX 
  16887.     Default style      WS_BORDER, WS_VISIBLE 
  16888.  
  16889.  LTEXT 
  16890.  
  16891.     Class              WC_STATIC 
  16892.     Default style      SS_TEXT, DT_LEFT, WS_GROUP, WS_VISIBLE 
  16893.  
  16894.  MLE 
  16895.  
  16896.     Class              WC_MLE 
  16897.     Default style      WS_TABSTOP, WS_VISIBLE, MLS_BORDER 
  16898.  
  16899.  NOTEBOOK 
  16900.  
  16901.     Format             The NOTEBOOK control statement does not contain a text 
  16902.                        field, so it has the same format as the LISTBOX 
  16903.                        statement. 
  16904.  
  16905.     Class              WC_NOTEBOOK 
  16906.     Default style      WS_TABSTOP, WS_VISIBLE 
  16907.  
  16908.  PUSHBUTTON 
  16909.  
  16910.     Class              WC_BUTTON 
  16911.     Default style      BS_PUSHBUTTON, WS_TABSTOP, WS_VISIBLE 
  16912.  
  16913.  RADIOBUTTON 
  16914.  
  16915.     Class              WC_BUTTON 
  16916.     Default style      BS_RADIOBUTTON, WS_TABSTOP, WS_VISIBLE 
  16917.  
  16918.  RTEXT 
  16919.  
  16920.     Class              WC_STATIC 
  16921.     Default style      SS_TEXT, DT_RIGHT, WS_GROUP, WS_VISIBLE 
  16922.  
  16923.  SLIDER 
  16924.  
  16925.     Format             The SLIDER control statement does not contain a text 
  16926.                        field, so it has the same format as the LISTBOX 
  16927.                        statement. 
  16928.  
  16929.     Class              WC_SLIDER 
  16930.     Default style      WS_SLIDER, WS_TABSTOP, WS_VISIBLE 
  16931.  
  16932.  SPINBUTTON 
  16933.  
  16934.     Format             The SPINBUTTON control statement does not contain a text 
  16935.                        field, so it has the same format as the LISTBOX 
  16936.                        statement. 
  16937.  
  16938.     Class              WC_SPINBUTTON 
  16939.     Default style      WS_TABSTOP, WS_VISIBLE, SPBS_MASTER 
  16940.  
  16941.  VALUESET 
  16942.  
  16943.     Format             The VALUESET control statement does not contain a text 
  16944.                        field, so it has the same format as the LISTBOX 
  16945.                        statement. 
  16946.  
  16947.     Class              WC_VALUESET 
  16948.     Default style      WS_TABSTOP, WS_VISIBLE 
  16949.  
  16950.  Examples 
  16951.  
  16952.  The following is a complete example of a DIALOG statement: 
  16953.  
  16954.  
  16955.   DLGTEMPLATE "errmess"
  16956.   BEGIN
  16957.       DIALOG  "Disk Error", 100, 10, 10, 300, 110
  16958.       BEGIN
  16959.           CTEXT "Select One:", 1, 10, 80, 280, 12
  16960.           RADIOBUTTON "Retry", 2, 75, 50, 60, 12
  16961.           RADIOBUTTON "Abort", 3, 75, 30, 60, 12
  16962.           RADIOBUTTON "Ignore", 4, 75, 10, 60, 12
  16963.       END
  16964.   END
  16965.  
  16966.  This is an example of a WINDOWTEMPLATE statement that is used to define a 
  16967.  specific kind of window frame. Calling Load Dialog with this resource 
  16968.  automatically creates the frame window, the frame controls, and the client 
  16969.  window (of class MyClientClass). 
  16970.  
  16971.  
  16972.   WINDOWTEMPLATE "wind1"
  16973.   BEGIN
  16974.    FRAME "My Window", 1, 10, 10, 320, 130, WS_VISIBLE,
  16975.           FCF_STANDARD | FCF_VERTSCROLL
  16976.    BEGIN
  16977.     WINDOW "", FID_CLIENT, 0, 0, 0, 0, "MyClientClass",
  16978.                                                     style
  16979.    END
  16980.   END
  16981.  
  16982.  This example creates a resource template for a parallel dialog identified by 
  16983.  the constant parallel1. It includes a frame with a title bar, a system menu, 
  16984.  and a dialog-style border. The parallel dialog has three auto radio buttons in 
  16985.  it. 
  16986.  
  16987.  
  16988.   DLGTEMPLATE parallel1
  16989.   BEGIN
  16990.       DIALOG "Parallel Dialog", 1, 50, 50, 180, 110
  16991.       CTLDATA FCF_TITLEBAR | FCF_SYSMENU | FCF_DLGBORDER
  16992.       BEGIN
  16993.           AUTORADIOBUTTON "Retry", 2, 75, 80, 60, 12
  16994.           AUTORADIOBUTTON "Abort", 3, 75, 50, 60, 12
  16995.           AUTORADIOBUTTON "Ignore", 4, 75, 30, 60, 12
  16996.       END
  16997.   END
  16998.  
  16999.  
  17000. ΓòÉΓòÉΓòÉ 15.6.4. Resource (.RES) File Specification ΓòÉΓòÉΓòÉ
  17001.  
  17002. The format for the .RES file is: 
  17003.  
  17004.  
  17005. (/TYPE NAME FLAGS SIZE BYTES/)+
  17006.  
  17007. Where: 
  17008.  
  17009.  TYPE      is either a null-terminated string or an ordinal, in which instance 
  17010.            the first byte is 0xFF followed by an INT that is the ordinal. 
  17011.  
  17012.  
  17013.                       /* Predefined resource types */
  17014.                       #define RT_POINTER             1
  17015.                       #define RT_BITMAP              2
  17016.                       #define RT_MENU                3
  17017.                       #define RT_DIALOG              4
  17018.                       #define RT_STRING              5
  17019.                       #define RT_FONTDIR             6
  17020.                       #define RT_FONT                7
  17021.                       #define RT_ACCELTABLE          8
  17022.                       #define RT_RCDATA              9
  17023.                       #define RT_DLGINCLUDE         11
  17024.                       #define RT_FKALONG            17
  17025.                       #define RT_HELPTABLE          18
  17026.                       #define RT_RMID              100
  17027.                       #define RT_RIFF              101
  17028.                       #define RT_WAVE              102
  17029.                       #define RT_AVI               103
  17030.                       #define RT_RESNAMES          255
  17031.  
  17032.  NAME      is the same format as TYPE. There are no predefined names. 
  17033.  
  17034.  FLAGS     is an unsigned value containing the memory manager flags: 
  17035.  
  17036.  
  17037.                       #define NSTYPE      0x0007   /* Segment type mask            */
  17038.                       #define NSCODE      0x0000   /* Code segment                 */
  17039.                       #define NSDATA      0x0001   /* Data segment                 */
  17040.                       #define NSITER      0x0008   /* Iterated segment flag        */
  17041.                       #define NSMOVE      0x0010   /* Moveable segment flag        */
  17042.                       #define NSPURE      0x0020   /* Pure segment flag            */
  17043.                       #define NSPRELOAD   0x0040   /* Preload segment flag         */
  17044.                       #define NSEXRD      0x0080   /* Execute-only (code segment), */
  17045.                                                     /* or read-only (data segment)  */
  17046.                       #define NSRELOC     0x0100   /* Segment has relocations      */
  17047.                       #define NSCONFORM   0x0200   /* Segment has debug info       */
  17048.                       #define NSDPL       0x0C00   /* 286 DPL bits                 */
  17049.                       #define NSDISCARD   0x1000   /* Discard bit for segment      */
  17050.                       #define NS32BIT     0x2000   /* 32-BIT code segment          */
  17051.                       #define NSHUGE      0x4000   /* Huge memory segment          */
  17052.  
  17053.  SIZE      is a LONG value defining how many bytes follow in the resource. 
  17054.  
  17055.  BYTES     is the stream of bytes that makes up the resource. 
  17056.  
  17057.  Any number of resources can appear one after another in the .RES file. 
  17058.  
  17059.  Note:  For descriptions and examples of the multimedia resource types of MIDI, 
  17060.         RIFF, WAVE digital audio, and AVI digital video, see the OS/2 Warp 
  17061.         Multimedia Programming Reference. 
  17062.  
  17063.  
  17064. ΓòÉΓòÉΓòÉ 15.7. Virtual Key Definitions ΓòÉΓòÉΓòÉ
  17065.  
  17066. The PC VKEY set is shown in the following table: 
  17067.  
  17068. ΓöîΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö¼ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÉ
  17069. ΓöéSymbol         ΓöéPersonal Computer AT   ΓöéEnhanced Keyboard        Γöé
  17070. Γöé               ΓöéKeyboard               Γöé                         Γöé
  17071. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17072. ΓöéVK_BUTTON1     ΓöéThese values are only  ΓöéThese values are only    Γöé
  17073. ΓöéVK_BUTTON2     Γöéused to access the     Γöéused to access the       Γöé
  17074. ΓöéVK_BUTTON3     Γöéup/down and toggled    Γöéup/down and toggled      Γöé
  17075. Γöé               Γöéstates of the pointing Γöéstates of the pointing   Γöé
  17076. Γöé               Γöédevice buttons; they   Γöédevice buttons; they     Γöé
  17077. Γöé               Γöénever actually appear  Γöénever actually appear in Γöé
  17078. Γöé               Γöéin a WM_CHAR message.  Γöéa WM_CHAR message.       Γöé
  17079. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17080. ΓöéVK_BREAK       ΓöéCtrl + Scroll Lock     ΓöéCtrl + Pause             Γöé
  17081. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17082. ΓöéVK_BACKSPACE   ΓöéBackspace              ΓöéBackspace                Γöé
  17083. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17084. ΓöéVK_TAB         ΓöéTab                    ΓöéTab                      Γöé
  17085. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17086. ΓöéVK_BACKTAB     ΓöéShift + Tab            ΓöéShift + Tab              Γöé
  17087. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17088. ΓöéVK_NEWLINE     ΓöéEnter                  ΓöéEnter                    Γöé
  17089. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17090. ΓöéVK_SHIFT  *    ΓöéLeft and Right Shift   ΓöéLeft and Right Shift     Γöé
  17091. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17092. ΓöéVK_CTRL  *     ΓöéCtrl                   ΓöéLeft and Right Ctrl      Γöé
  17093. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17094. ΓöéVK_ALT  *      ΓöéAlt                    ΓöéLeft and Right Alt       Γöé
  17095. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17096. ΓöéVK_ALTGRAF  *  ΓöéNone                   ΓöéAlt Graf (if available)  Γöé
  17097. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17098. ΓöéVK_PAUSE       ΓöéCtrl + Num Lock        ΓöéPause                    Γöé
  17099. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17100. ΓöéVK_CAPSLOCK    ΓöéCaps Lock              ΓöéCaps Lock                Γöé
  17101. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17102. ΓöéVK_ESC         ΓöéEsc                    ΓöéEsc                      Γöé
  17103. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17104. ΓöéVK_SPACE  *    ΓöéSpace                  ΓöéSpace                    Γöé
  17105. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17106. ΓöéVK_PAGEUP  *   ΓöéNumpad 9               ΓöéPg Up and Numpad 9       Γöé
  17107. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17108. ΓöéVK_PAGEDOWN  * ΓöéNumpad 3               ΓöéPg Dn and Numpad 3       Γöé
  17109. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17110. ΓöéVK_END  *      ΓöéNumpad 1               ΓöéEnd and Numpad 1         Γöé
  17111. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17112. ΓöéVK_HOME  *     ΓöéNumpad 7               ΓöéHome and Numpad 7        Γöé
  17113. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17114. ΓöéVK_LEFT  *     ΓöéNumpad 4               ΓöéLeft and Numpad 4        Γöé
  17115. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17116. ΓöéVK_UP  *       ΓöéNumpad 8               ΓöéUp and Numpad 8          Γöé
  17117. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17118. ΓöéVK_RIGHT  *    ΓöéNumpad 6               ΓöéRight and Numpad 6       Γöé
  17119. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17120. ΓöéVK_DOWN  *     ΓöéNumpad 2               ΓöéDown and Numpad 2        Γöé
  17121. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17122. ΓöéVK_PRINTSCRN   ΓöéShift + Print Screen   ΓöéPrint Screen             Γöé
  17123. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17124. ΓöéVK_INSERT  *   ΓöéNumpad 0               ΓöéIns and Numpad 0         Γöé
  17125. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17126. ΓöéVK_DELETE  *   ΓöéNumpad                 ΓöéDel and Numpad           Γöé
  17127. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17128. ΓöéVK_SCRLLOCK    ΓöéScroll Lock            ΓöéScroll Lock              Γöé
  17129. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17130. ΓöéVK_NUMLOCK     ΓöéNum Lock               ΓöéNum Lock                 Γöé
  17131. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17132. ΓöéVK_ENTER       ΓöéShift + Enter          ΓöéShift + Enter and Numpad Γöé
  17133. Γöé               Γöé                       ΓöéEnter                    Γöé
  17134. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17135. ΓöéVK_SYSRQ       ΓöéSysRq                  ΓöéAlt + Print Screen       Γöé
  17136. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17137. ΓöéVK_F1  *       ΓöéF1                     ΓöéF1                       Γöé
  17138. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17139. ΓöéVK_F2  *       ΓöéF2                     ΓöéF2                       Γöé
  17140. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17141. ΓöéVK_F3  *       ΓöéF3                     ΓöéF3                       Γöé
  17142. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17143. ΓöéVK_F4  *       ΓöéF4                     ΓöéF4                       Γöé
  17144. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17145. ΓöéVK_F5  *       ΓöéF5                     ΓöéF5                       Γöé
  17146. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17147. ΓöéVK_F6  *       ΓöéF6                     ΓöéF6                       Γöé
  17148. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17149. ΓöéVK_F7  *       ΓöéF7                     ΓöéF7                       Γöé
  17150. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17151. ΓöéVK_F8  *       ΓöéF8                     ΓöéF8                       Γöé
  17152. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17153. ΓöéVK_F9  *       ΓöéF9                     ΓöéF9                       Γöé
  17154. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17155. ΓöéVK_F10  *      ΓöéF10                    ΓöéF10                      Γöé
  17156. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17157. ΓöéVK_F11  *      ΓöéNone                   ΓöéF11                      Γöé
  17158. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17159. ΓöéVK_F12  *      ΓöéNone                   ΓöéF12                      Γöé
  17160. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17161. ΓöéVK_F13         ΓöéNone                   ΓöéNone                     Γöé
  17162. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17163. ΓöéVK_F14         ΓöéNone                   ΓöéNone                     Γöé
  17164. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17165. ΓöéVK_F15         ΓöéNone                   ΓöéNone                     Γöé
  17166. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17167. ΓöéVK_F16         ΓöéNone                   ΓöéNone                     Γöé
  17168. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17169. ΓöéVK_F17         ΓöéNone                   ΓöéNone                     Γöé
  17170. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17171. ΓöéVK_F18         ΓöéNone                   ΓöéNone                     Γöé
  17172. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17173. ΓöéVK_F19         ΓöéNone                   ΓöéNone                     Γöé
  17174. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17175. ΓöéVK_F20         ΓöéNone                   ΓöéNone                     Γöé
  17176. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17177. ΓöéVK_F21         ΓöéNone                   ΓöéNone                     Γöé
  17178. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17179. ΓöéVK_F22         ΓöéNone                   ΓöéNone                     Γöé
  17180. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17181. ΓöéVK_F23         ΓöéNone                   ΓöéNone                     Γöé
  17182. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17183. ΓöéVK_F24         ΓöéNone                   ΓöéNone                     Γöé
  17184. Γö£ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö╝ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöñ
  17185. ΓöéVK_MENU  *     ΓöéF10                    ΓöéF10                      Γöé
  17186. ΓööΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓö┤ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÿ
  17187.  
  17188. Notes 
  17189.  
  17190.    1. VKEYs marked with an asterisk (*) are generated irrespective of other 
  17191.       shift states (Shift, Ctrl, Alt, and Alt Graf). 
  17192.  
  17193.    2. VK_CAPSLOCK is not generated for any of the Ctrl shift states, for PC-DOS 
  17194.       compatibility. 
  17195.  
  17196.    3. Wherever possible, the VK_ name is derived from the legend on the key top 
  17197.       of the 101-key Enhanced PC keyboard. 
  17198.  
  17199.  
  17200. ΓòÉΓòÉΓòÉ 16. Notices ΓòÉΓòÉΓòÉ
  17201.  
  17202. November 1996 
  17203.  
  17204. The following paragraph does not apply to the United Kingdom or any country 
  17205. where such provisions are inconsistent with local law:  INTERNATIONAL BUSINESS 
  17206. MACHINES CORPORATION PROVIDES THIS PUBLICATION "AS IS" WITHOUT WARRANTY OF ANY 
  17207. KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
  17208. WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Some states 
  17209. do not allow disclaimer of express or implied warranties in certain 
  17210. transactions, therefore, this statement may not apply to you. 
  17211.  
  17212. This publication could include technical inaccuracies or typographical errors. 
  17213. Changes are periodically made to the information herein; these changes will be 
  17214. incorporated in new editions of the publication. IBM may make improvements 
  17215. and/or changes in the product(s) and/or the program(s) described in this 
  17216. publication at any time. 
  17217.  
  17218. It is possible that this publication may contain reference to, or information 
  17219. about, IBM products (machines and programs), programming, or services that are 
  17220. not announced in your country.  Such references or information must not be 
  17221. construed to mean that IBM intends to announce such IBM products, programming, 
  17222. or services in your country. 
  17223.  
  17224. Requests for technical information about IBM products should be made to your 
  17225. IBM reseller or IBM marketing representative. 
  17226.  
  17227.  
  17228. ΓòÉΓòÉΓòÉ 16.1. Copyright Notices ΓòÉΓòÉΓòÉ
  17229.  
  17230. COPYRIGHT LICENSE: This publication contains printed sample application 
  17231. programs in source language, which illustrate OS/2 programming techniques. You 
  17232. may copy, modify, and distribute these sample programs in any form without 
  17233. payment to IBM, for the purposes of developing, using, marketing or 
  17234. distributing application programs conforming to the OS/2 application 
  17235. programming interface. 
  17236.  
  17237. Each copy of any portion of these sample programs or any derivative work, which 
  17238. is distributed to others, must include a copyright notice as follows: "(C) 
  17239. (your company name) (year).  All rights reserved." 
  17240.  
  17241. (C) Copyright International Business Machines Corporation 1994, 1996. All 
  17242. rights reserved. 
  17243. Note to U.S. Government Users - Documentation related to restricted rights - 
  17244. Use, duplication or disclosure is subject to restrictions set forth in GSA ADP 
  17245. Schedule Contract with IBM Corp. 
  17246.  
  17247.  
  17248. ΓòÉΓòÉΓòÉ 16.2. Disclaimers ΓòÉΓòÉΓòÉ
  17249.  
  17250. References in this publication to IBM products, programs, or services do not 
  17251. imply that IBM intends to make these available in all countries in which IBM 
  17252. operates. Any reference to an IBM product, program, or service is not intended 
  17253. to state or imply that only that IBM product, program, or service may be used. 
  17254. Subject to IBM's valid intellectual property or other legally protectable 
  17255. rights, any functionally equivalent product, program, or service may be used 
  17256. instead of the IBM product, program, or service. The evaluation and 
  17257. verification of operation in conjunction with other products, except those 
  17258. expressly designated by IBM, are the responsibility of the user. 
  17259.  
  17260. IBM may have patents or pending patent applications covering subject matter in 
  17261. this document. The furnishing of this document does not give you any license to 
  17262. these patents. You can send license inquiries, in writing, to: 
  17263.  
  17264.       IBM Director of Licensing 
  17265.       IBM Corporation 
  17266.       500 Columbus Avenue 
  17267.       Thornwood, NY  10594 
  17268.       U.S.A. 
  17269.  
  17270.  Asia-Pacific users can inquire, in writing, to the IBM Director of 
  17271.  Intellectual Property and Licensing, IBM World Trade Asia Corporation, 2-31 
  17272.  Roppongi 3-chome, Minato-ku, Tokyo 106, Japan. 
  17273.  
  17274.  Licensees of this program who wish to have information about it for the 
  17275.  purpose of enabling: (i) the exchange of information between independently 
  17276.  created programs and other programs (including this one) and (ii) the mutual 
  17277.  use of the information which has been exchanged, should contact IBM 
  17278.  Corporation, Department LZKS, 11400 Burnet Road, Austin, TX 78758 U.S.A.  Such 
  17279.  information may be available, subject to appropriate terms and conditions, 
  17280.  including in some cases, payment of a fee. 
  17281.  
  17282.  
  17283. ΓòÉΓòÉΓòÉ 16.3. Trademarks ΓòÉΓòÉΓòÉ
  17284.  
  17285. The following terms are trademarks of the IBM Corporation in the United States 
  17286. or other countries or both: 
  17287.  
  17288.  Common User Access                 CUA 
  17289.  IBM                                Information Presentation Facility 
  17290.  IPF                                Operating System/2 
  17291.  OS/2                               PM 
  17292.  Presentation Manager               SAA 
  17293.  System Application Architecture    Workplace Shell 
  17294.  
  17295.  The following terms are trademarks of other companies: 
  17296.  
  17297.  Adobe                              Adobe Systems Incorporated 
  17298.  Helvetica                          Linotype 
  17299.  Intel                              Intel Corporation 
  17300.  PostScript                         Adobe Systems Incorporated 
  17301.  Times New Roman                    Monotype 
  17302.  
  17303.  Other company, product, and service names, which may be denoted by a double 
  17304.  asterisk (**), may be trademarks or service marks of others. 
  17305.  
  17306.  
  17307. ΓòÉΓòÉΓòÉ 17. Glossary ΓòÉΓòÉΓòÉ
  17308.  
  17309. This glossary defines many of the terms used in this book. It includes terms 
  17310. and definitions from the IBM Dictionary of Computing, as well as terms specific 
  17311. to the OS/2 operating system and the Presentation Manager. It is not a complete 
  17312. glossary for the entire OS/2 operating system; nor is it a complete dictionary 
  17313. of computer terms. 
  17314.  
  17315. Other primary sources for these definitions are: 
  17316.  
  17317.      The American National Standard Dictionary for Information Systems, ANSI 
  17318.       X3.172-1990, copyrighted 1990 by the American National Standards 
  17319.       Institute, 11 West 42nd Street, New York, New York 10036. These 
  17320.       definitions are identified by the symbol (A) after the definition. 
  17321.  
  17322.      The Information Technology Vocabulary, developed by Subcommittee 1, Joint 
  17323.       Technical Committee 1, of the International Organization for 
  17324.       Standardization and the International Electrotechnical Commission 
  17325.       (ISO/IEC JTC1/SC1). Definitions of published parts of this vocabulary are 
  17326.       identified by the symbol (I) after the definition; definitions taken from 
  17327.       draft international standards, committee drafts, and working papers being 
  17328.       developed by ISO/IEC JTC1/SC1 are identified by the symbol (T) after the 
  17329.       definition, indicating that final agreement has not yet been reached 
  17330.       among the participating National Bodies of SC1. 
  17331.  
  17332.  
  17333. ΓòÉΓòÉΓòÉ 17.1. Glossary Listing ΓòÉΓòÉΓòÉ
  17334.  
  17335. Select a starting letter of glossary terms: 
  17336.  
  17337.  A    N 
  17338.  B    O 
  17339.  C    P 
  17340.  D    Q 
  17341.  E    R 
  17342.  F    S 
  17343.  G    T 
  17344.  H    U 
  17345.  I    V 
  17346.  J    W 
  17347.  K    X 
  17348.  L    Y 
  17349.  M    Z 
  17350.  
  17351.  
  17352. ΓòÉΓòÉΓòÉ <hidden> Glossary - A ΓòÉΓòÉΓòÉ
  17353.  
  17354.  accelerator  - In SAA Common User Access architecture, a key or combination of 
  17355.    keys that invokes an application-defined function. 
  17356.  
  17357.  accelerator table  - A table used to define which key strokes are treated as 
  17358.    accelerators and the commands they are translated into. 
  17359.  
  17360.  access mode  - The manner in which an application gains access to a file it 
  17361.    has opened. Examples of access modes are read-only, write-only, and 
  17362.    read/write. 
  17363.  
  17364.  access permission  - All access rights that a user has regarding an object. (I)
  17365.  
  17366.  action  - One of a set of defined tasks that a computer performs. Users 
  17367.    request the application to perform an action in several ways, such as typing 
  17368.    a command, pressing a function key, or selecting the action name from an 
  17369.    action bar or menu. 
  17370.  
  17371.  action bar  - In SAA Common User Access architecture, the area at the top of a 
  17372.    window that contains choices that give a user access to actions available in 
  17373.    that window. 
  17374.  
  17375.  action point  - The current position on the screen at which the pointer is 
  17376.    pointing. Contrast with hot spot and input focus. 
  17377.  
  17378.  active program  - A program currently running on the computer.  An active 
  17379.    program can be interactive (running and receiving input from the user) or 
  17380.    noninteractive (running but not receiving input from the user). See also 
  17381.    interactive program and noninteractive program. 
  17382.  
  17383.  active window  - The window with which the user is currently interacting. 
  17384.  
  17385.  address space  - (1) The range of addresses available to a program. (A)  (2) 
  17386.    The area of virtual storage available for a particular job. 
  17387.  
  17388.  alphanumeric video output  - Output to the logical video buffer when the video 
  17389.    adapter is in text mode and the logical video buffer is addressed by an 
  17390.    application as a rectangular array of character cells. 
  17391.  
  17392.  American National Standard Code for Information Interchange  - The standard 
  17393.    code, using a coded character set consisting of 7-bit coded characters (8 
  17394.    bits including parity check), that is used for information interchange among 
  17395.    data processing systems, data communication systems, and associated 
  17396.    equipment. The ASCII set consists of control characters and graphic 
  17397.    characters. (A) 
  17398.  
  17399.    Note:  IBM has defined an extension to ASCII code (characters 128-255). 
  17400.  
  17401.  anchor  - A window procedure that handles Presentation Manager message 
  17402.    conversions between an icon procedure and an application. 
  17403.  
  17404.  anchor block  - An area of Presentation-Manager-internal resources to 
  17405.    allocated process or thread that calls WinInitialize. 
  17406.  
  17407.  anchor point  - A point in a window used by a program designer or by a window 
  17408.    manager to position a subsequently appearing window. 
  17409.  
  17410.  ANSI  - American National Standards Institute. 
  17411.  
  17412.  APA  - All points addressable. 
  17413.  
  17414.  API  - Application programming interface. 
  17415.  
  17416.  application  - A collection of software components used to perform specific 
  17417.    types of work on a computer; for example, a payroll application, an airline 
  17418.    reservation application, a network application. 
  17419.  
  17420.  application object  - In SAA Advanced Common User Access architecture, a form 
  17421.    that an application provides for a user; for example, a spreadsheet form. 
  17422.    Contrast with user object. 
  17423.  
  17424.  application programming interface (API)  - A functional interface supplied by 
  17425.    the operating system or by a separately orderable licensed program that 
  17426.    allows an application program written in a high-level language to use 
  17427.    specific data or functions of the operating system or the licensed program. 
  17428.  
  17429.  application-modal  - Pertaining to a message box or dialog box for which 
  17430.    processing must be completed before further interaction with any other 
  17431.    window owned by the same application may take place. 
  17432.  
  17433.  area  - In computer graphics, a filled shape such as a solid rectangle. 
  17434.  
  17435.  ASCII  - American National Standard Code for Information Interchange. 
  17436.  
  17437.  ASCIIZ  - A string of ASCII characters that is terminated with a byte 
  17438.    containing the value 0. 
  17439.  
  17440.  aspect ratio  - In computer graphics, the width-to-height ratio of an area, 
  17441.    symbol, or shape. 
  17442.  
  17443.  asynchronous (ASYNC)  - (1) Pertaining to two or more processes that do not 
  17444.    depend upon the occurrence of specific events such as common timing 
  17445.    signals. (T)  (2) Without regular time relationship;  unexpected or 
  17446.    unpredictable with respect to the execution of program instructions. See 
  17447.    also synchronous. 
  17448.  
  17449.  atom  - A constant that represents a string. As soon as a string has been 
  17450.    defined as an atom, the atom can be used in place of the string to save 
  17451.    space. Strings are associated with their respective atoms in an atom table. 
  17452.    See also integer atom. 
  17453.  
  17454.  atom table  - A table used to relate atoms with the strings that they 
  17455.    represent. Also in the table is the mechanism by which the presence of a 
  17456.    string can be checked. 
  17457.  
  17458.  atomic operation  - An operation that completes its work on an object before 
  17459.    another operation can be performed on the same object. 
  17460.  
  17461.  attribute  - A characteristic or property that can be controlled, usually to 
  17462.    obtain a required appearance;  for example, the color of a line. See also 
  17463.    graphics attributes and segment attributes. 
  17464.  
  17465.  automatic link  - In Information Presentation Facility (IPF), a link that 
  17466.    begins a chain reaction at the primary window. When the user selects the 
  17467.    primary window, an automatic link is activated to display secondary windows. 
  17468.  
  17469.  AVIO  - Advanced Video Input/Output. 
  17470.  
  17471.  
  17472. ΓòÉΓòÉΓòÉ <hidden> Glossary - B ΓòÉΓòÉΓòÉ
  17473.  
  17474.  B╨Æzier curve  - (1) A mathematical technique of specifying smooth continuous 
  17475.    lines and surfaces, which require a starting point and a finishing point 
  17476.    with several intermediate points that influence or control the path of the 
  17477.    linking curve. Named after Dr. P. B╨Æzier. (2) (D of C) In the AIX Graphics 
  17478.    Library, a cubic spline approximation to a set of four control points that 
  17479.    passes through the first and fourth control points and that has a continuous 
  17480.    slope where two spline segments meet. Named after Dr. P. B╨Æzier. 
  17481.  
  17482.  background  - (1) In multiprogramming, the conditions under which low-priority 
  17483.    programs are executed. Contrast with foreground. (2) An active session that 
  17484.    is not currently displayed on the screen. 
  17485.  
  17486.  background color  - The color in which the background of a graphic primitive 
  17487.    is drawn. 
  17488.  
  17489.  background mix  - An attribute that determines how the background of a graphic 
  17490.    primitive is combined with the existing color of the graphics presentation 
  17491.    space. Contrast with mix. 
  17492.  
  17493.  background program  - In multiprogramming, a program that executes with a low 
  17494.    priority. Contrast with foreground program. 
  17495.  
  17496.  bit map  - A representation in memory of the data displayed on an APA device, 
  17497.    usually the screen. 
  17498.  
  17499.  block  - (1) A string of data elements recorded or transmitted as a unit. The 
  17500.    elements may be characters, words, or logical records. (T)  (2) To record 
  17501.    data in a block. (3) A collection of contiguous records recorded as a unit. 
  17502.    Blocks are separated by interblock gaps and each block may contain one or 
  17503.    more records. (A)
  17504.  
  17505.  block device  - A storage device that performs I/O operations on blocks of 
  17506.    data called sectors. Data on block devices can be randomly accessed. Block 
  17507.    devices are designated by a drive letter (for example, C:). 
  17508.  
  17509.  blocking mode  - A condition set by an application that determines when its 
  17510.    threads might block. For example, an application might set the Pipemode 
  17511.    parameter for the DosCreateNPipe function so that its threads perform I/O 
  17512.    operations to the named pipe block when no data is available. 
  17513.  
  17514.  border  - A visual indication (for example, a separator line or a background 
  17515.    color) of the boundaries of a window. 
  17516.  
  17517.  boundary determination  - An operation used to compute the size of the 
  17518.    smallest rectangle that encloses a graphics object on the screen. 
  17519.  
  17520.  breakpoint  - (1) A point in a computer program where execution may be halted. 
  17521.    A breakpoint is usually at the beginning of an instruction where halts, 
  17522.    caused by external intervention, are convenient for resuming 
  17523.    execution. (T)  (2) A place in a program, specified by a command or a 
  17524.    condition, where the system halts execution and gives control to the 
  17525.    workstation user or to a specified program. 
  17526.  
  17527.  broken pipe  - When all of the handles that access one end of a pipe have been 
  17528.    closed. 
  17529.  
  17530.  bucket  - One or more fields in which the result of an operation is kept. 
  17531.  
  17532.  buffer  - (1) A portion of storage used to hold input or output data 
  17533.    temporarily. (2) To allocate and schedule the use of buffers. (A)
  17534.  
  17535.  button  - A mechanism used to request or initiate an action. See also barrel 
  17536.    buttons, bezel buttons, mouse button, push button, and radio button. 
  17537.  
  17538.  byte pipe  - Pipes that handle data as byte streams. All unnamed pipes are 
  17539.    byte pipes. Named pipes can be byte pipes or message pipes. See byte stream. 
  17540.  
  17541.  byte stream  - Data that consists of an unbroken stream of bytes. 
  17542.  
  17543.  
  17544. ΓòÉΓòÉΓòÉ <hidden> Glossary - C ΓòÉΓòÉΓòÉ
  17545.  
  17546.  cache  - A high-speed buffer storage that contains frequently accessed 
  17547.    instructions and data; it is used to reduce access time. 
  17548.  
  17549.  cached micro presentation space  - A presentation space from a 
  17550.    Presentation-Manager-owned store of micro presentation spaces. It can be 
  17551.    used for drawing to a window only, and must be returned to the store when 
  17552.    the task is complete. 
  17553.  
  17554.  CAD  - Computer-Aided Design. 
  17555.  
  17556.  call  - (1) The action of bringing a computer program, a routine, or a 
  17557.    subroutine into effect, usually by specifying the entry conditions and 
  17558.    jumping to an entry point. (I)  (A)  (2) To transfer control to a procedure, 
  17559.    program, routine, or subroutine. 
  17560.  
  17561.  calling sequence  - A sequence of instructions together with any associated 
  17562.    data necessary to execute a call. (T)
  17563.  
  17564.  Cancel  - An action that removes the current window or menu without processing 
  17565.    it, and returns the previous window. 
  17566.  
  17567.  cascaded menu  - In the OS/2 operating system, a menu that appears when the 
  17568.    arrow to the right of a cascading choice is selected. It contains a set of 
  17569.    choices that are related to the cascading choice. Cascaded menus are used to 
  17570.    reduce the length of a menu. See also cascading choice. 
  17571.  
  17572.  cascading choice  - In SAA Common User Access architecture, a choice in a menu 
  17573.    that, when selected, produces a cascaded menu containing other choices.  An 
  17574.    arrow () appears to the right of the cascading choice. 
  17575.  
  17576.  CASE statement  - In PM programming, provides the body of a window procedure. 
  17577.    There is usually one CASE statement for each message type supported by an 
  17578.    application. 
  17579.  
  17580.  CGA  - Color graphics adapter. 
  17581.  
  17582.  chained list  - A list in which the data elements may be dispersed but in 
  17583.    which each data element contains information for locating the 
  17584.    next. (T)Synonymous with linked list. 
  17585.  
  17586.  character  - A letter, digit, or other symbol. 
  17587.  
  17588.  character box  - In computer graphics, the boundary that defines, in world 
  17589.    coordinates, the horizontal and vertical space occupied by a single 
  17590.    character from a character set. See also character mode. Contrast with 
  17591.    character cell. 
  17592.  
  17593.  character cell  - The physical, rectangular space in which any single 
  17594.    character is displayed on a screen or printer device. Position is addressed 
  17595.    by row and column coordinates. Contrast with character box. 
  17596.  
  17597.  character code  - The means of addressing a character in a character set, 
  17598.    sometimes called code point. 
  17599.  
  17600.  character device  - A device that performs I/O operations on one character at 
  17601.    a time. Because character devices view data as a stream of bytes, 
  17602.    character-device data cannot be randomly accessed. Character devices include 
  17603.    the keyboard, mouse, and printer, and are referred to by name. 
  17604.  
  17605.  character mode  - A mode that, in conjunction with the font type, determines 
  17606.    the extent to which graphics characters are affected by the character box, 
  17607.    shear, and angle attributes. 
  17608.  
  17609.  character set  - (1) An ordered set of unique representations called 
  17610.    characters; for example, the 26 letters of English alphabet, Boolean 0 and 
  17611.    1, the set of symbols in the Morse code, and the 128 ASCII 
  17612.    characters. (A)  (2) All the valid characters for a programming language or 
  17613.    for a computer system. (3) A group of characters used for a specific reason; 
  17614.    for example, the set of characters a printer can print. 
  17615.  
  17616.  check box  - In SAA Advanced Common User Access architecture, a square box 
  17617.    with associated text that represents a choice. When a user selects a choice, 
  17618.    an X appears in the check box to indicate that the choice is in effect. The 
  17619.    user can clear the check box by selecting the choice again. Contrast with 
  17620.    radio button. 
  17621.  
  17622.  check mark  -  (1) (D of C) In SAA Advanced Common User Access architecture, a 
  17623.    symbol that shows that a choice is currently in effect. (2) The symbol that 
  17624.    is used to indicate a selected item on a pull-down menu. 
  17625.  
  17626.  child process  - In the OS/2 operating system, a process started by another 
  17627.    process, which is called the parent process. Contrast with parent process. 
  17628.  
  17629.  child window  - A window that appears within the border of its parent window 
  17630.    (either a primary window or another child window). When the parent window is 
  17631.    resized, moved, or destroyed, the child window also is resized, moved, or 
  17632.    destroyed; however, the child window can be moved or resized independently 
  17633.    from the parent window, within the boundaries of the parent window. Contrast 
  17634.    with parent window. 
  17635.  
  17636.  choice  - (1) An option that can be selected. The choice can be presented as 
  17637.    text, as a symbol (number or letter), or as an icon (a pictorial symbol). 
  17638.    (2) (D of C) In SAA Common User Access architecture, an item that a user can 
  17639.    select. 
  17640.  
  17641.  chord  - (1) To press more than one button on a pointing device while the 
  17642.    pointer is within the limits that the user has specified for the operating 
  17643.    environment. (2) (D of C) In graphics, a short line segment whose end points 
  17644.    lie on a circle. Chords are a means for producing a circular image from 
  17645.    straight lines. The higher the number of chords per circle, the smoother the 
  17646.    circular image. 
  17647.  
  17648.  class  - A way of categorizing objects based on their behavior and shape. A 
  17649.    class is, in effect, a definition of a generic object. In SOM, a class is a 
  17650.    special kind of object that can manufacture other objects that all have a 
  17651.    common shape and exhibit similar behavior (more precisely, all of the 
  17652.    objects manufactured by a class have the same memory layout and share a 
  17653.    common set of methods). New classes can be defined in terms of existing 
  17654.    classes through a technique known as inheritance. 
  17655.  
  17656.  class method  - A class method of class <X> is a method provided by the 
  17657.    metaclass of class <X>. Class methods are executed without requiring any 
  17658.    instances of class <X> to exist, and are frequently used to create 
  17659.    instances. In System Object Model, an action that can be performed on a 
  17660.    class object. 
  17661.  
  17662.  class object  - In System Object Model, the run-time implementation of a 
  17663.    class. 
  17664.  
  17665.  class style  - The set of properties that apply to every window in a window 
  17666.    class. 
  17667.  
  17668.  client  - (1) A functional unit that receives shared services from a 
  17669.    server. (T)  (2) A user, as in a client process that uses a named pipe or 
  17670.    queue that is created and owned by a server process. 
  17671.  
  17672.  client area  - The part of the window, inside the border, that is below the 
  17673.    menu bar. It is the user's work space, where a user types information and 
  17674.    selects choices from selection fields.  In primary windows, it is where an 
  17675.    application programmer presents the objects that a user works on. 
  17676.  
  17677.  client program  - An application that creates and manipulates instances of 
  17678.    classes. 
  17679.  
  17680.  client window  - The window in which the application displays output and 
  17681.    receives input. This window is located inside the frame window, under the 
  17682.    window title bar and any menu bar, and within any scroll bars. 
  17683.  
  17684.  clip limits  - The area of the paper that can be reached by a printer or 
  17685.    plotter. 
  17686.  
  17687.  clipboard  - In SAA Common User Access architecture, an area of computer 
  17688.    memory, or storage, that temporarily holds data. Data in the clipboard is 
  17689.    available to other applications. 
  17690.  
  17691.  clipping  - In computer graphics, removing those parts of a display image that 
  17692.    lie outside a given boundary. (I)  (A)
  17693.  
  17694.  clipping area  - The area in which the window can paint. 
  17695.  
  17696.  clipping path  - A clipping boundary in world-coordinate space. 
  17697.  
  17698.  clock tick  - The minimum unit of time that the system tracks. If the system 
  17699.    timer currently counts at a rate of X Hz, the system tracks the time every 
  17700.    1/X of a second. Also known as time tick. 
  17701.  
  17702.  CLOCK$  - Character-device name reserved for the system clock. 
  17703.  
  17704.  code page  - An assignment of graphic characters and control-function meanings 
  17705.    to all code points. 
  17706.  
  17707.  code point  - (1) Synonym for character code. (2) (D of C) A 1-byte code 
  17708.    representing one of 256 potential characters. 
  17709.  
  17710.  code segment  - An executable section of programming code within a load 
  17711.    module. 
  17712.  
  17713.  color dithering  - See dithering. 
  17714.  
  17715.  color graphics adapter (CGA)  - An adapter that simultaneously provides four 
  17716.    colors and is supported by all IBM Personal Computer and Personal System/2 
  17717.    models. 
  17718.  
  17719.  command  - The name and parameters associated with an action that a program 
  17720.    can perform. 
  17721.  
  17722.  command area  - An area composed of a command field prompt and a command entry 
  17723.    field. 
  17724.  
  17725.  command entry field  - An entry field in which users type commands. 
  17726.  
  17727.  command line  - On a display screen, a display line, sometimes at the bottom 
  17728.    of the screen, in which only commands can be entered. 
  17729.  
  17730.  command mode  - A state of a system or device in which the user can enter 
  17731.    commands. 
  17732.  
  17733.  command prompt  - A field prompt showing the location of the command entry 
  17734.    field in a panel. 
  17735.  
  17736.  Common Programming Interface (CPI)  - Definitions of those application 
  17737.    development languages and services that have, or are intended to have, 
  17738.    implementations on and a high degree of commonality across the SAA 
  17739.    environments. One of the three SAA architectural areas. See also Common User 
  17740.    Access architecture. 
  17741.  
  17742.  Common User Access (CUA) architecture  -  Guidelines for the dialog between a 
  17743.    human and a workstation or terminal. One of the three SAA architectural 
  17744.    areas. See also Common Programming Interface. 
  17745.  
  17746.  compile  - To translate a program written in a higher-level programming 
  17747.    language into a machine language program. 
  17748.  
  17749.  composite window  - A window composed of other windows (such as a frame 
  17750.    window, frame-control windows, and a client window) that are kept together 
  17751.    as a unit and that interact with each other. 
  17752.  
  17753.  computer-aided design (CAD)  - The use of a computer to design or change a 
  17754.    product, tool, or machine, such as using a computer for drafting or 
  17755.    illustrating. 
  17756.  
  17757.  COM1, COM2, COM3  - Character-device names reserved for serial ports 1 through 
  17758.    3. 
  17759.  
  17760.  CON  - Character-device name reserved for the console keyboard and screen. 
  17761.  
  17762.  conditional cascaded menu  - A pull-down menu associated with a menu item that 
  17763.    has a cascade mini-push button beside it in an object's pop-up menu. The 
  17764.    conditional cascaded menu is displayed when the user selects the mini-push 
  17765.    button. 
  17766.  
  17767.  container  - In SAA Common User Access architecture, an object that holds 
  17768.    other objects. A folder is an example of a container object. See also folder 
  17769.    and object. 
  17770.  
  17771.  contextual help  - In SAA Common User Access Architecture, help that gives 
  17772.    specific information about the item the cursor is on. The help is contextual 
  17773.    because it provides information about a specific item as it is currently 
  17774.    being used. Contrast with extended help. 
  17775.  
  17776.  contiguous  - Touching or joining at a common edge or boundary, for example, 
  17777.    an unbroken consecutive series of storage locations. 
  17778.  
  17779.  control  - In SAA Advanced Common User Access architecture, a component of the 
  17780.    user interface that allows a user to select choices or type information; for 
  17781.    example, a check box, an entry field, a radio button. 
  17782.  
  17783.  control area  - A storage area used by a computer program to hold control information. (I)  (A)
  17784.  
  17785.  Control Panel  - In the Presentation Manager, a program used to set up user 
  17786.    preferences that act globally across the system. 
  17787.  
  17788.  Control Program  - (1) The basic functions of the operating system, including 
  17789.    DOS emulation and the support for keyboard, mouse, and video input/output. 
  17790.    (2) A computer program designed to schedule and to supervise the execution 
  17791.    of programs of a computer system. (I)  (A)
  17792.  
  17793.  control window  - A window that is used as part of a composite window to 
  17794.    perform simple input and output tasks. Radio buttons and check boxes are 
  17795.    examples. 
  17796.  
  17797.  control word  - An instruction within a document that identifies its parts or 
  17798.    indicates how to format the document. 
  17799.  
  17800.  coordinate space  - A two-dimensional set of points used to generate output on 
  17801.    a video display of printer. 
  17802.  
  17803.  Copy  - A choice that places onto the clipboard, a copy of what the user has 
  17804.    selected. See also Cut and Paste. 
  17805.  
  17806.  correlation  - The action of determining which element or object within a 
  17807.    picture is at a given position on the display. This follows a pick 
  17808.    operation. 
  17809.  
  17810.  coverpage window  - A window in which the application's help information is 
  17811.    displayed. 
  17812.  
  17813.  CPI  - Common Programming Interface. 
  17814.  
  17815.  critical extended attribute  - An extended attribute that is necessary for the 
  17816.    correct operation of the system or a particular application. 
  17817.  
  17818.  critical section  - (1) In programming languages, a part of an asynchronous 
  17819.    procedure that cannot be executed simultaneously with a certain part of 
  17820.    another asynchronous procedure. (I)
  17821.  
  17822.    Note:  Part of the other asynchronous procedure also is a critical section. 
  17823.    (2) A section of code that is not reentrant; that is, code that can be 
  17824.    executed by only one thread at a time. 
  17825.  
  17826.  CUA architecture  - Common User Access architecture. 
  17827.  
  17828.  current position  - In computer graphics, the position, in user coordinates, 
  17829.    that becomes the starting point for the next graphics routine, if that 
  17830.    routine does not explicitly specify a starting point. 
  17831.  
  17832.  cursor  - A symbol displayed on the screen and associated with an input 
  17833.    device. The cursor indicates where input from the device will be placed. 
  17834.    Types of cursors include text cursors, graphics cursors, and selection 
  17835.    cursors. Contrast with pointer and input focus. 
  17836.  
  17837.  Cut  - In SAA Common User Access architecture, a choice that removes a 
  17838.    selected object, or a part of an object, to the clipboard, usually 
  17839.    compressing the space it occupied in a window. See also Copy and Paste. 
  17840.  
  17841.  
  17842. ΓòÉΓòÉΓòÉ <hidden> Glossary - D ΓòÉΓòÉΓòÉ
  17843.  
  17844.  daisy chain  - A method of device interconnection for determining interrupt 
  17845.    priority by connecting the interrupt sources serially. 
  17846.  
  17847.  data segment  - A nonexecutable section of a program module; that is, a 
  17848.    section of a program that contains data definitions. 
  17849.  
  17850.  data structure  - The syntactic structure of symbolic expressions and their 
  17851.    storage-allocation characteristics. (T)
  17852.  
  17853.  data transfer  - The movement of data from one object to another by way of the 
  17854.    clipboard or by direct manipulation. 
  17855.  
  17856.  DBCS  - Double-byte character set. 
  17857.  
  17858.  DDE  - Dynamic data exchange. 
  17859.  
  17860.  deadlock  - (1) Unresolved contention for the use of a resource. (2) An error 
  17861.    condition in which processing cannot continue because each of two elements 
  17862.    of the process is waiting for an action by, or a response from, the other. 
  17863.    (3) An impasse that occurs when multiple processes are waiting for the 
  17864.    availability of a resource that will not become available because it is 
  17865.    being held by another process that is in a similar wait state. 
  17866.  
  17867.  debug  - To detect, diagnose, and eliminate errors in programs. (T)
  17868.  
  17869.  decipoint  - In printing, one tenth of a point.  There are 72 points in an 
  17870.    inch. 
  17871.  
  17872.  default procedure  - A function provided by the Presentation Manager Interface 
  17873.    that may be used to process standard messages from dialogs or windows. 
  17874.  
  17875.  default value  - A value assumed when no value has been specified. Synonymous 
  17876.    with assumed value. For example, in the graphics programming interface, the 
  17877.    default line-type is 'solid'. 
  17878.  
  17879.  definition list  - A type of list that pairs a term and its description. 
  17880.  
  17881.  delta  - An application-defined threshold, or number of container items, from 
  17882.    either end of the list. 
  17883.  
  17884.  descendant  - See child process. 
  17885.  
  17886.  descriptive text  - Text used in addition to a field prompt to give more 
  17887.    information about a field. 
  17888.  
  17889.  Deselect all  - A choice that cancels the selection of all of the objects that 
  17890.    have been selected in that window. 
  17891.  
  17892.  Desktop Manager  - In the Presentation Manager, a window that displays a list 
  17893.    of groups of programs, each of which can be started or stopped. 
  17894.  
  17895.  desktop window  - The window, corresponding to the physical device, against 
  17896.    which all other types of windows are established. 
  17897.  
  17898.  detached process  - A background process that runs independent of the parent 
  17899.    process. 
  17900.  
  17901.  detent  - A point on a slider that represents an exact value to which a user 
  17902.    can move the slider arm. 
  17903.  
  17904.  device context  - A logical description of a data destination such as memory, 
  17905.    metafile, display, printer, or plotter. See also direct device context, 
  17906.    information device context, memory device context, metafile device context, 
  17907.    queued device context, and screen device context. 
  17908.  
  17909.  device driver  - A file that contains the code needed to attach and use a 
  17910.    device such as a display, printer, or plotter. 
  17911.  
  17912.  device space  - (1) Coordinate space in which graphics are assembled after all 
  17913.    GPI transformations have been applied. Device space is defined in 
  17914.    device-specific units. (2) ( D of C) In computer graphics, a space defined 
  17915.    by the complete set of addressable points of a display device. (A)
  17916.  
  17917.  dialog  - The interchange of information between a computer and its user 
  17918.    through a sequence of requests by the user and the presentation of responses 
  17919.    by the computer. 
  17920.  
  17921.  dialog box  - In SAA Advanced Common User Access architecture, a movable 
  17922.    window, fixed in size, containing controls that a user uses to provide 
  17923.    information required by an application so that it can continue to process a 
  17924.    user request. See also message box, primary window, secondary window. Also 
  17925.    known as a pop-up window. 
  17926.  
  17927.  Dialog Box Editor  - A WYSIWYG editor that creates dialog boxes for 
  17928.    communicating with the application user. 
  17929.  
  17930.  dialog item  - A component (for example, a menu or a button) of a dialog box. 
  17931.    Dialog items are also used when creating dialog templates. 
  17932.  
  17933.  dialog procedure  - A dialog window that is controlled by a window procedure. 
  17934.    It is responsible for responding to all messages sent to the dialog window. 
  17935.  
  17936.  dialog tag language  - A markup language used by the DTL compiler to create 
  17937.    dialog objects. 
  17938.  
  17939.  dialog template  - The definition of a dialog box, which contains details of 
  17940.    its position, appearance, and window ID, and the window ID of each of its 
  17941.    child windows. 
  17942.  
  17943.  direct device context  - A logical description of a data destination that is a 
  17944.    device other than the screen (for example, a printer or plotter), and where 
  17945.    the output is not to go through the spooler. Its purpose is to satisfy 
  17946.    queries. See also device context. 
  17947.  
  17948.  direct manipulation  - The user's ability to interact with an object by using 
  17949.    the mouse, typically by dragging an object around on the Desktop and 
  17950.    dropping it on other objects. 
  17951.  
  17952.  direct memory access (DMA)  - A technique for moving data directly between 
  17953.    main storage and peripheral equipment without requiring processing of the 
  17954.    data by the processing unit.(T)
  17955.  
  17956.  directory  - A type of file containing the names and controlling information 
  17957.    for other files or other directories. 
  17958.  
  17959.  display point  - Synonym for pel. 
  17960.  
  17961.  dithering  - (1) The process used in color displays whereby every other pel is 
  17962.    set to one color, and the intermediate pels are set to another. Together 
  17963.    they produce the effect of a third color at normal viewing distances. This 
  17964.    process can only be used on solid areas of color; it does not work, for 
  17965.    example, on narrow lines. (2) (D of C ) In computer graphics, a technique of 
  17966.    interleaving dark and light pixels so that the resulting image looks 
  17967.    smoothly shaded when viewed from a distance. 
  17968.  
  17969.  DMA  - Direct memory access. 
  17970.  
  17971.  DOS Protect Mode Interface (DPMI)  - An interface between protect mode and 
  17972.    real mode programs. 
  17973.  
  17974.  double-byte character set (DBCS)  - A set of characters in which each 
  17975.    character is represented by two bytes.  Languages such as Japanese, Chinese, 
  17976.    and Korean, which contain more characters than can be represented by 256 
  17977.    code points, require double-byte character sets. Since each character 
  17978.    requires two bytes, the entering, displaying, and printing of DBCS 
  17979.    characters requires hardware and software that can support DBCS. 
  17980.  
  17981.  doubleword  - A contiguous sequence of bits or characters that comprises two 
  17982.    computer words and is capable of being addressed as a unit. (A)
  17983.  
  17984.  DPMI  - DOS Protect Mode Interface. 
  17985.  
  17986.  drag  - In SAA Common User Access, to use a pointing device to move an object; 
  17987.    for example, clicking on a window border, and dragging it to make the window 
  17988.    larger. 
  17989.  
  17990.  dragging  - (1) In computer graphics, moving an object on the display screen 
  17991.    as if it were attached to the pointer. (2) (D of C) In computer graphics, 
  17992.    moving one or more segments on a display surface by translating. (I)  (A)
  17993.  
  17994.  drawing chain  - See segment chain. 
  17995.  
  17996.  drop  - To fix the position of an object that is being dragged, by releasing 
  17997.    the select button of the pointing device. See also drag. 
  17998.  
  17999.  DTL  - Dialog tag language. 
  18000.  
  18001.  dual-boot function  - A feature of the OS/2 operating system that allows the 
  18002.    user to start DOS from within the operating system, or an OS/2 session from 
  18003.    within DOS. 
  18004.  
  18005.  duplex  - Pertaining to communication in which data can be sent and received 
  18006.    at the same time. Synonymous with full duplex. 
  18007.  
  18008.  dynamic data exchange (DDE)  - A message protocol used to communicate between 
  18009.    applications that share data. The protocol uses shared memory as the means 
  18010.    of exchanging data between applications. 
  18011.  
  18012.  dynamic data formatting  - A formatting procedure that enables you to 
  18013.    incorporate text, bit maps or metafiles in an IPF window at execution time. 
  18014.  
  18015.  dynamic link library  - A collection of executable programming code and data 
  18016.    that is bound to an application at load time or run time, rather than during 
  18017.    linking. The programming code and data in a dynamic link library can be 
  18018.    shared by several applications simultaneously. 
  18019.  
  18020.  dynamic linking  - The process of resolving external references in a program 
  18021.    module at load time or run time rather than during linking. 
  18022.  
  18023.  dynamic segments  - Graphics segments drawn in exclusive-OR mix mode so that 
  18024.    they can be moved from one screen position to another without affecting the 
  18025.    rest of the displayed picture. 
  18026.  
  18027.  dynamic storage  - (1) A device that stores data in a manner that permits the 
  18028.    data to move or vary with time such that the specified data is not always 
  18029.    available for recovery. (A)  (2) A storage in which the cells require 
  18030.    repetitive application of control signals in order to retain stored data. 
  18031.    Such repetitive application of the control signals is called a refresh 
  18032.    operation. A dynamic storage may use static addressing or sensing 
  18033.    circuits. (A)  (3) See also static storage. 
  18034.  
  18035.  dynamic time slicing  - Varies the size of the time slice depending on system 
  18036.    load and paging activity. 
  18037.  
  18038.  dynamic-link module  - A module that is linked at load time or run time. 
  18039.  
  18040.  
  18041. ΓòÉΓòÉΓòÉ <hidden> Glossary - E ΓòÉΓòÉΓòÉ
  18042.  
  18043.  EBCDIC  - Extended binary-coded decimal interchange code. A coded character 
  18044.    set consisting of 8-bit coded characters (9 bits including parity check), 
  18045.    used for information interchange among data processing systems, data 
  18046.    communications systems, and associated equipment. 
  18047.  
  18048.  edge-triggered  - Pertaining to an event semaphore that is posted then reset 
  18049.    before a waiting thread gets a chance to run. The semaphore is considered to 
  18050.    be posted for the rest of that thread's waiting period; the thread does not 
  18051.    have to wait for the semaphore to be posted again. 
  18052.  
  18053.  EGA  - Extended graphics adapter. 
  18054.  
  18055.  element  - An entry in a graphics segment that comprises one or more graphics 
  18056.    orders and that is addressed by the element pointer. 
  18057.  
  18058.  EMS  - Expanded Memory Specification. 
  18059.  
  18060.  encapsulation  - Hiding an object's implementation, that is, its private, 
  18061.    internal data and methods. Private variables and methods are accessible only 
  18062.    to the object that contains them. 
  18063.  
  18064.  entry field  - In SAA Common User Access architecture, an area where a user 
  18065.    types information. Its boundaries are usually indicated. See also selection 
  18066.    field. 
  18067.  
  18068.  entry panel  - A defined panel type containing one or more entry fields and 
  18069.    protected information such as headings, prompts, and explanatory text. 
  18070.  
  18071.  entry-field control  - The component of a user interface that provides the 
  18072.    means by which the application receives data entered by the user in an entry 
  18073.    field. When it has the input focus, the entry field displays a flashing 
  18074.    pointer at the position where the next typed character will go. 
  18075.  
  18076.  environment segment  - The list of environment variables and their values for 
  18077.    a process. 
  18078.  
  18079.  environment strings  - ASCII text strings that define the value of environment 
  18080.    variables. 
  18081.  
  18082.  environment variables  - Variables that describe the execution environment of 
  18083.    a process. These variables are named by the operating system or by the 
  18084.    application. Environment variables named by the operating system are PATH, 
  18085.    DPATH, INCLUDE, INIT, LIB, PROMPT, and TEMP. The values of environment 
  18086.    variables are defined by the user in the CONFIG.SYS file, or by using the 
  18087.    SET command at the OS/2 command prompt. 
  18088.  
  18089.  error message  - An indication that an error has been detected. (A)
  18090.  
  18091.  event semaphore  - A semaphore that enables a thread to signal a waiting 
  18092.    thread or threads that an event has occurred or that a task has been 
  18093.    completed. The waiting threads can then perform an action that is dependent 
  18094.    on the completion of the signaled event. 
  18095.  
  18096.  exception  - An abnormal condition such as an I/O error encountered in 
  18097.    processing a data set or a file. 
  18098.  
  18099.  exclusive system semaphore  - A system semaphore that can be modified only by 
  18100.    threads within the same process. 
  18101.  
  18102.  executable file  - (1) A file that contains programs or commands that perform 
  18103.    operations or actions to be taken. (2) A collection of related data records 
  18104.    that execute programs. 
  18105.  
  18106.  exit  - To execute an instruction within a portion of a computer program in 
  18107.    order to terminate the execution of that portion. Such portions of computer 
  18108.    programs include loops, subroutines, modules, and so on. (T)  Repeated exit 
  18109.    requests return the user to the point from which all functions provided to 
  18110.    the system are accessible. Contrast with cancel. 
  18111.  
  18112.  expanded memory specification (EMS)  - Enables DOS applications to access 
  18113.    memory above the 1MB real mode addressing limit. 
  18114.  
  18115.  extended attribute  - An additional piece of information about a file object, 
  18116.    such as its data format or category. It consists of a name and a value. A 
  18117.    file object may have more than one extended attribute associated with it. 
  18118.  
  18119.  extended help  - In SAA Common User Access architecture, a help action that 
  18120.    provides information about the contents of the application window from which 
  18121.    a user requested help. Contrast with contextual help. 
  18122.  
  18123.  extended-choice selection  - A mode that allows the user to select more than 
  18124.    one item from a window. Not all windows allow extended choice selection. 
  18125.    Contrast with multiple-choice selection. 
  18126.  
  18127.  extent  - Continuous space on a disk or diskette that is occupied by or 
  18128.    reserved for a particular data set, data space, or file. 
  18129.  
  18130.  external link  - In Information Presentation Facility, a link that connects 
  18131.    external online document files. 
  18132.  
  18133.  
  18134. ΓòÉΓòÉΓòÉ <hidden> Glossary - F ΓòÉΓòÉΓòÉ
  18135.  
  18136.  family-mode application  - An application program that can run in the OS/2 
  18137.    environment and in the DOS environment; however, it cannot take advantage of 
  18138.    many of the OS/2-mode facilities, such as multitasking, interprocess 
  18139.    communication, and dynamic linking. 
  18140.  
  18141.  FAT  - File allocation table. 
  18142.  
  18143.  FEA  - Full extended attribute. 
  18144.  
  18145.  field-level help  - Information specific to the field on which the cursor is 
  18146.    positioned. This help function is "contextual" because it provides 
  18147.    information about a specific item as it is currently used; the information 
  18148.    is dependent upon the context within the work session. 
  18149.  
  18150.  FIFO  - First-in-first-out. (A)
  18151.  
  18152.  file  - A named set of records stored or processed as a unit. (T)
  18153.  
  18154.  file allocation table (FAT)  - In IBM personal computers, a table used by the 
  18155.    operating system to allocate space on a disk for a file, and to locate and 
  18156.    chain together parts of the file that may be scattered on different sectors 
  18157.    so that the file can be used in a random or sequential manner. 
  18158.  
  18159.  file attribute  - Any of the attributes that describe the characteristics of a 
  18160.    file. 
  18161.  
  18162.  File Manager  - In the Presentation Manager, a program that displays 
  18163.    directories and files, and allows various actions on them. 
  18164.  
  18165.  file specification  - The full identifier for a file, which includes its drive 
  18166.    designation, path, file name, and extension. 
  18167.  
  18168.  file system  - The combination of software and hardware that supports storing 
  18169.    information on a storage device. 
  18170.  
  18171.  file system driver (FSD)  - A program that manages file I\O and controls the 
  18172.    format of information on the storage media. 
  18173.  
  18174.  fillet  - A curve that is tangential to the end points of two adjoining lines. 
  18175.    See also polyfillet. 
  18176.  
  18177.  filtering  - An application process that changes the order of data in a queue. 
  18178.  
  18179.  first-in-first-out (FIFO)  - A queuing technique in which the next item to be 
  18180.    retrieved is the item that has been in the queue for the longest time. (A)
  18181.  
  18182.  flag  - (1) An indicator or parameter that shows the setting of a switch. (2) 
  18183.    A character that signals the occurrence of some condition, such as the end 
  18184.    of a word. (A)  (3) (D of C) A characteristic of a file or directory that 
  18185.    enables it to be used in certain ways. See also archive flag, hidden flag, 
  18186.    and read-only flag. 
  18187.  
  18188.  focus  - See input focus. 
  18189.  
  18190.  folder  - A container used to organize objects. 
  18191.  
  18192.  font  - A particular size and style of typeface that contains definitions of 
  18193.    character sets, marker sets, and pattern sets. 
  18194.  
  18195.  Font Editor  - A utility program provided with the IBM Developers Toolkit that 
  18196.    enables the design and creation of new fonts. 
  18197.  
  18198.  foreground program  - (1) The program with which the user is currently 
  18199.    interacting. Also known as interactive program. Contrast with background 
  18200.    program. (2) (D of C) In multiprogramming,  a high-priority program. 
  18201.  
  18202.  frame  - The part of a window that can contain several different visual 
  18203.    elements specified by the application, but drawn and controlled by the 
  18204.    Presentation Manager. The frame encloses the client area. 
  18205.  
  18206.  frame styles  - Standard window layouts provided by the Presentation Manager. 
  18207.  
  18208.  FSD  - File system driver. 
  18209.  
  18210.  full-duplex  - Synonym for duplex. 
  18211.  
  18212.  full-screen application  - An application that has complete control of the 
  18213.    screen. 
  18214.  
  18215.  function  - (1) In a programming language, a block, with or without formal 
  18216.    parameters, whose execution is invoked by means of a call. (2) A set of 
  18217.    related control statements that cause one or more programs to be performed. 
  18218.  
  18219.  function key  - A key that causes a specified sequence of operations to be 
  18220.    performed when it is pressed, for example, F1 and Alt-K. 
  18221.  
  18222.  function key area  - The area at the bottom of a window that contains function 
  18223.    key assignments such as F1=Help. 
  18224.  
  18225.  
  18226. ΓòÉΓòÉΓòÉ <hidden> Glossary - G ΓòÉΓòÉΓòÉ
  18227.  
  18228.  GDT  - Global Descriptor Table. 
  18229.  
  18230.  general protection fault  - An exception condition that occurs when a process 
  18231.    attempts to use storage or a module that has some level of protection 
  18232.    assigned to it, such as I/O privilege level. See also IOPL code segment. 
  18233.  
  18234.  Global Descriptor Table (GDT)  - A table that defines code and data segments 
  18235.    available to all tasks in an application. 
  18236.  
  18237.  global dynamic-link module  - A dynamic-link module that can be shared by all 
  18238.    processes in the system that refer to the module name. 
  18239.  
  18240.  global file-name character  - Either a question mark (?) or an asterisk (*) 
  18241.    used as a variable in a file name or file name extension when referring to a 
  18242.    particular file or group of files. 
  18243.  
  18244.  glyph  - A graphic symbol whose appearance conveys information. 
  18245.  
  18246.  GPI  - Graphics programming interface. 
  18247.  
  18248.  graphic primitive  - In computer graphics, a basic element, such as an arc or 
  18249.    a line, that is not made up of smaller parts and that is used to create 
  18250.    diagrams and pictures. See also graphics segment. 
  18251.  
  18252.  graphics  - (1) A picture defined in terms of graphic primitives and graphics 
  18253.    attributes. (2) (D of C) The making of charts and pictures. (3) Pertaining 
  18254.    to charts, tables, and their creation. (4) See computer graphics, coordinate 
  18255.    graphics, fixed-image graphics, interactive graphics, passive graphics, 
  18256.    raster graphics. 
  18257.  
  18258.  graphics attributes  - Attributes that apply to graphic primitives. Examples 
  18259.    are color, line type, and shading-pattern definition. See also segment 
  18260.    attributes. 
  18261.  
  18262.  graphics field  - The clipping boundary that defines the visible part of the 
  18263.    presentation-page contents. 
  18264.  
  18265.  graphics mode  - One of several states of a display. The mode determines the 
  18266.    resolution and color content of the screen. 
  18267.  
  18268.  graphics model space  - The conceptual coordinate space in which a picture is 
  18269.    constructed after any model transforms have been applied. Also known as 
  18270.    model space. 
  18271.  
  18272.  Graphics programming interface  - The formally defined programming language 
  18273.    that is between an IBM graphics program and the user of the program. 
  18274.  
  18275.  graphics segment  - A sequence of related graphic primitives and graphics 
  18276.    attributes. See also graphic primitive. 
  18277.  
  18278.  graying  - The indication that a choice on a pull-down is unavailable. 
  18279.  
  18280.  group  - A collection of logically connected controls. For example, the 
  18281.    buttons controlling paper size for a printer could be called a group. See 
  18282.    also program group. 
  18283.  
  18284.  
  18285. ΓòÉΓòÉΓòÉ <hidden> Glossary - H ΓòÉΓòÉΓòÉ
  18286.  
  18287.  handle  - (1) An identifier that represents an object, such as a device or 
  18288.    window, to the Presentation Interface. (2) (D of C) In the Advanced DOS and 
  18289.    OS/2 operating systems, a binary value created by the system that identifies 
  18290.    a drive, directory, and file so that the file can be found and opened. 
  18291.  
  18292.  hard error  - An error condition on a network that requires either that the 
  18293.    system be reconfigured or that the source of the error be removed before the 
  18294.    system can resume reliable operation. 
  18295.  
  18296.  header  - (1) System-defined control information that precedes user data. (2) 
  18297.    The portion of a message that contains control information for the message, 
  18298.    such as one or more destination fields, name of the originating station, 
  18299.    input sequence number, character string indicating the type of message, and 
  18300.    priority level for the message. 
  18301.  
  18302.  heading tags  - A document element that enables information to be displayed in 
  18303.    windows, and that controls entries in the contents window controls placement 
  18304.    of push buttons in a window, and defines the shape and size of windows. 
  18305.  
  18306.  heap  - An area of free storage available for dynamic allocation by an 
  18307.    application. Its size varies according to the storage requirements of the 
  18308.    application. 
  18309.  
  18310.  help function  - (1) A function that provides information about a specific 
  18311.    field, an application panel, or information about the help facility. (2) (D 
  18312.    of C) One or more display images that describe how to use application 
  18313.    software or how to do a system operation. 
  18314.  
  18315.  Help index  - In SAA Common User Access architecture, a help action that 
  18316.    provides an index of the help information available for an application. 
  18317.  
  18318.  help panel  - A panel with information to assist users that is displayed in 
  18319.    response to a help request from the user. 
  18320.  
  18321.  help window  - A Common-User-Access-defined secondary window that displays 
  18322.    information when the user requests help. 
  18323.  
  18324.  hidden file  - An operating system file that is not displayed by a directory 
  18325.    listing. 
  18326.  
  18327.  hide button  - In the OS/2 operating system, a small, square button located in 
  18328.    the right-hand corner of the title bar of a window that, when selected, 
  18329.    removes from the screen all the windows associated with that window. 
  18330.    Contrast with maximize button. See also restore button. 
  18331.  
  18332.  hierarchical inheritance  - The relationship between parent and child classes. 
  18333.    An object that is lower in the inheritance hierarchy than another object, 
  18334.    inherits all the characteristics and behaviors of the objects above it in 
  18335.    the hierarchy. 
  18336.  
  18337.  hierarchy  - A tree of segments beginning with the root segment and proceeding 
  18338.    downward to dependent segment types. 
  18339.  
  18340.  high-performance file system (HPFS)  - In the OS/2 operating system, an 
  18341.    installable file system that uses high-speed buffer storage, known as a 
  18342.    cache, to provide fast access to large disk volumes. The file system also 
  18343.    supports the coexistence of multiple, active file systems on a single 
  18344.    personal computer, with the capability of multiple and different storage 
  18345.    devices. File names used with the HPFS can have as many as 254 characters. 
  18346.  
  18347.  hit testing  - The means of identifying which window is associated with which 
  18348.    input device event. 
  18349.  
  18350.  hook  - A point in a system-defined function where an application can supply 
  18351.    additional code that the system processes as though it were part of the 
  18352.    function. 
  18353.  
  18354.  hook chain  - A sequence of hook procedures that are "chained" together so 
  18355.    that each event is passed, in turn, to each procedure in the chain. 
  18356.  
  18357.  hot spot  - The part of the pointer that must touch an object before it can be 
  18358.    selected. This is usually the tip of the pointer. Contrast with action 
  18359.    point. 
  18360.  
  18361.  HPFS  - high-performance file system. 
  18362.  
  18363.  hypergraphic link  - A connection between one piece of information and another 
  18364.    through the use of graphics. 
  18365.  
  18366.  hypertext  - A way of presenting information online with connections between 
  18367.    one piece of information and another, called hypertext links. See also 
  18368.    hypertext link. 
  18369.  
  18370.  hypertext link  - A connection between one piece of information and another. 
  18371.  
  18372.  
  18373. ΓòÉΓòÉΓòÉ <hidden> Glossary - I ΓòÉΓòÉΓòÉ
  18374.  
  18375.  I/O operation  - An input operation to, or output operation from a device 
  18376.    attached to a computer. 
  18377.  
  18378.  I-beam pointer  - A pointer that indicates an area, such as an entry field in 
  18379.    which text can be edited. 
  18380.  
  18381.  icon  - In SAA Advanced Common User Access architecture, a graphical 
  18382.    representation of an object, consisting of an image, image background, and a 
  18383.    label. Icons can represent items (such as a document file) that the user 
  18384.    wants to work on, and actions that the user wants to perform. In the 
  18385.    Presentation Manager, icons are used for data objects, system actions, and 
  18386.    minimized programs. 
  18387.  
  18388.  icon area  - In the Presentation Manager, the area at the bottom of the screen 
  18389.    that is normally used to display the icons for minimized programs. 
  18390.  
  18391.  Icon Editor  - The Presentation Manager-provided tool for creating icons. 
  18392.  
  18393.  IDL  - Interface Definition Language. 
  18394.  
  18395.  image font  - A set of symbols, each of which is described in a rectangular 
  18396.    array of pels. Some of the pels in the array are set to produce the image of 
  18397.    one of the symbols. Contrast with outline font. 
  18398.  
  18399.  implied metaclass  - Subclassing the metaclass of a parent class without a 
  18400.    separate CSC for the resultant metaclass. 
  18401.  
  18402.  indirect manipulation  - Interaction with an object through choices and 
  18403.    controls. 
  18404.  
  18405.  information device context  - A logical description of a data destination 
  18406.    other than the screen (for example, a printer or plotter), but where no 
  18407.    output will occur. Its purpose is to satisfy queries. See also device 
  18408.    context. 
  18409.  
  18410.  information panel  - A defined panel type characterized by a body containing 
  18411.    only protected information. 
  18412.  
  18413.  Information Presentation Facility (IPF)  - A facility provided by the OS/2 
  18414.    operating system, by which application developers can produce online 
  18415.    documentation and context-sensitive online help panels for their 
  18416.    applications. 
  18417.  
  18418.  inheritance  - The technique of specifying the shape and behavior of one class 
  18419.    (called a subclass) as incremental differences from another class (called 
  18420.    the parent class or superclass). The subclass inherits the superclass' state 
  18421.    representation and methods, and can provide additional data elements and 
  18422.    methods. The subclass also can provide new functions with the same method 
  18423.    names used by the superclass. Such a subclass method is said to override the 
  18424.    superclass method, and will be selected automatically by method resolution 
  18425.    on subclass instances. An overriding method can elect to call upon the 
  18426.    superclass' method as part of its own implementation. 
  18427.  
  18428.  input focus  - (1) The area of a window where user interaction is possible 
  18429.    using an input device, such as a mouse or the keyboard. (2) The position in 
  18430.    the active window where a user's normal interaction with the keyboard will 
  18431.    appear. 
  18432.  
  18433.  input router  - An internal OS/2 process that removes messages from the system 
  18434.    queue. 
  18435.  
  18436.  input/output control  - A device-specific command that requests a function of 
  18437.    a device driver. 
  18438.  
  18439.  installable file system (IFS)  - A file system in which software is installed 
  18440.    when the operating system is started. 
  18441.  
  18442.  instance  - (Or object instance). A specific object, as distinguished from the 
  18443.    abstract definition of an object referred to as its class. 
  18444.  
  18445.  instance method  - A method valid for a particular object. 
  18446.  
  18447.  instruction pointer  - In System/38, a pointer that provides addressability 
  18448.    for a machine interface instruction in a program. 
  18449.  
  18450.  integer atom  - An atom that represents a predefined system constant and 
  18451.    carries no storage overhead. For example, names of window classes provided 
  18452.    by Presentation Manager are expressed as integer atoms. 
  18453.  
  18454.  interactive graphics  - Graphics that can be moved or manipulated by a user at 
  18455.    a terminal. 
  18456.  
  18457.  interactive program  - (1) A program that is running (active) and is ready to 
  18458.    receive (or is receiving) input from a user. (2) A running program that can 
  18459.    receive input from the keyboard or another input device. Compare with active 
  18460.    program and contrast with noninteractive program. 
  18461.  
  18462.    Also known as a foreground program. 
  18463.  
  18464.  interchange file  - A file containing data that can be sent from one 
  18465.    Presentation Manager interface application to another. 
  18466.  
  18467.  Interface Definition Language (IDL)  - Language-neutral interface 
  18468.    specification for a SOM class. 
  18469.  
  18470.  interpreter  - A program that translates and executes each instruction of a 
  18471.    high-level programming language before it translates and executes. 
  18472.  
  18473.  interprocess communication (IPC)  - In the OS/2 operating system, the exchange 
  18474.    of information between processes or threads through semaphores, pipes, 
  18475.    queues, and shared memory. 
  18476.  
  18477.  interval timer  - (1) A timer that provides program interruptions on a 
  18478.    program-controlled basis. (2) An electronic counter that counts intervals of 
  18479.    time under program control. 
  18480.  
  18481.  IOCtl  - Input/output control. 
  18482.  
  18483.  IOPL  - Input/output privilege level. 
  18484.  
  18485.  IOPL code segment  - An IOPL executable section of programming code that 
  18486.    enables an application to directly manipulate hardware interrupts and ports 
  18487.    without replacing the device driver. See also privilege level. 
  18488.  
  18489.  IPC  - Interprocess communication. 
  18490.  
  18491.  IPF  - Information Presentation Facility. 
  18492.  
  18493.  IPF compiler  - A text compiler that interpret tags in a source file and 
  18494.    converts the information into the specified format. 
  18495.  
  18496.  IPF tag language  - A markup language that provides the instructions for 
  18497.    displaying online information. 
  18498.  
  18499.  item  - A data object that can be passed in a DDE transaction. 
  18500.  
  18501.  
  18502. ΓòÉΓòÉΓòÉ <hidden> Glossary - J ΓòÉΓòÉΓòÉ
  18503.  
  18504.  journal  - A special-purpose file that is used to record changes made in the 
  18505.    system. 
  18506.  
  18507.  
  18508. ΓòÉΓòÉΓòÉ <hidden> Glossary - K ΓòÉΓòÉΓòÉ
  18509.  
  18510.  Kanji  - A graphic character set used in Japanese ideographic alphabets. 
  18511.  
  18512.  KBD$  - Character-device name reserved for the keyboard. 
  18513.  
  18514.  kernel  - The part of an operating system that performs basic functions, such 
  18515.    as allocating hardware resources. 
  18516.  
  18517.  kerning  - The design of graphics characters so that their character boxes 
  18518.    overlap. Used to space text proportionally. 
  18519.  
  18520.  keyboard accelerator  - A keystroke that generates a command message for an 
  18521.    application. 
  18522.  
  18523.  keyboard augmentation  - A function that enables a user to press a keyboard 
  18524.    key while pressing a mouse button. 
  18525.  
  18526.  keyboard focus  - A temporary attribute of a window. The window that has a 
  18527.    keyboard focus receives all keyboard input until the focus changes to a 
  18528.    different window. 
  18529.  
  18530.  Keys help  - In SAA Common User Access architecture, a help action that 
  18531.    provides a listing of the application keys and their assigned functions. 
  18532.  
  18533.  
  18534. ΓòÉΓòÉΓòÉ <hidden> Glossary - L ΓòÉΓòÉΓòÉ
  18535.  
  18536.  label  - In a graphics segment, an identifier of one or more elements that is 
  18537.    used when editing the segment. 
  18538.  
  18539.  LAN  - Local area network. 
  18540.  
  18541.  language support procedure  - A function provided by the Presentation Manager 
  18542.    Interface for applications that do not, or cannot (as in the case of COBOL 
  18543.    and FORTRAN programs), provide their own dialog or window procedures. 
  18544.  
  18545.  lazy drag  - See pickup and drop. 
  18546.  
  18547.  lazy drag set  - See pickup set. 
  18548.  
  18549.  LDT  - In the OS/2 operating system, Local Descriptor Table. 
  18550.  
  18551.  LIFO stack  - A stack from which data is retrieved in last-in, first-out 
  18552.    order. 
  18553.  
  18554.  linear address  - A unique value that identifies the memory object. 
  18555.  
  18556.  linked list  - Synonym for chained list. 
  18557.  
  18558.  list box  - In SAA Advanced Common User Access architecture, a control that 
  18559.    contains scrollable choices from which a user can select one choice. 
  18560.  
  18561.    Note:  In CUA architecture, this is a programmer term. The end user term is 
  18562.    selection list. 
  18563.  
  18564.  list button  - A button labeled with an underlined down-arrow that presents a 
  18565.    list of valid objects or choices that can be selected for that field. 
  18566.  
  18567.  list panel  - A defined panel type that displays a list of items from which 
  18568.    users can select one or more choices and then specify one or more actions to 
  18569.    work on those choices. 
  18570.  
  18571.  load time  - The point in time at which a program module is loaded into main 
  18572.    storage for execution. 
  18573.  
  18574.  load-on-call  - A function of a linkage editor that allows selected segments 
  18575.    of the module to be disk resident while other segments are executing. Disk 
  18576.    resident segments are loaded for execution and given control when any entry 
  18577.    point that they contain is called. 
  18578.  
  18579.  local area network (LAN)  - (1) A computer network located on a user's 
  18580.    premises within a limited geographical area. Communication within a local 
  18581.    area network is not subject to external regulations;  however, communication 
  18582.    across the LAN boundary may be subject to some form of regulation. (T)
  18583.  
  18584.    Note:  A LAN does not use store and forward techniques. (2) A network in 
  18585.    which a set of devices are connected to one another for communication and 
  18586.    that can be connected to a larger network. 
  18587.  
  18588.  Local Descriptor Table (LDT)  - Defines code and data segments specific to a 
  18589.    single task. 
  18590.  
  18591.  lock  - A serialization mechanism by means of which a resource is restricted 
  18592.    for use by the holder of the lock. 
  18593.  
  18594.  logical storage device  - A device that the user can map to a physical 
  18595.    (actual) device. 
  18596.  
  18597.  LPT1, LPT2, LPT3  - Character-device names reserved for parallel printers 1 
  18598.    through 3. 
  18599.  
  18600.  
  18601. ΓòÉΓòÉΓòÉ <hidden> Glossary - M ΓòÉΓòÉΓòÉ
  18602.  
  18603.  main window  - The window that is positioned relative to the desktop window. 
  18604.  
  18605.  manipulation button  - The button on a pointing device a user presses to 
  18606.    directly manipulate an object. 
  18607.  
  18608.  map  - (1) A set of values having a defined correspondence with the quantities 
  18609.    or values of another set. (I)  (A)  (2) To establish a set of values having 
  18610.    a defined correspondence with the quantities or values of another set. (I)
  18611.  
  18612.  marker box  - In computer graphics, the boundary that defines, in world 
  18613.    coordinates, the horizontal and vertical space occupied by a single marker 
  18614.    from a marker set. 
  18615.  
  18616.  marker symbol  - A symbol centered on a point. Graphs and charts can use 
  18617.    marker symbols to indicate the plotted points. 
  18618.  
  18619.  marquee box  - The rectangle that appears during a selection technique in 
  18620.    which a user selects objects by drawing a box around them with a pointing 
  18621.    device. 
  18622.  
  18623.  Master Help Index  - In the OS/2 operating system, an alphabetic list of help 
  18624.    topics related to using the operating system. 
  18625.  
  18626.  maximize  - To enlarge a window to its largest possible size. 
  18627.  
  18628.  media window  - The part of the physical device (display, printer, or plotter) 
  18629.    on which a picture is presented. 
  18630.  
  18631.  memory block  - Part memory within a heap. 
  18632.  
  18633.  memory device context  - A logical description of a data destination that is a 
  18634.    memory bit map. See also device context. 
  18635.  
  18636.  memory management  - A feature of the operating system for allocating, 
  18637.    sharing, and freeing main storage. 
  18638.  
  18639.  memory object  - Logical unit of memory requested by an application, which 
  18640.    forms the granular unit of memory manipulation from the application 
  18641.    viewpoint. 
  18642.  
  18643.  menu  - In SAA Advanced Common User Access architecture, an extension of the 
  18644.    menu bar that displays a list of choices available for a selected choice in 
  18645.    the menu bar. After a user selects a choice in menu bar, the corresponding 
  18646.    menu appears. Additional pop-up windows can appear from menu choices. 
  18647.  
  18648.  menu bar  - In SAA Advanced Common User Access architecture, the area near the 
  18649.    top of a window, below the title bar and above the rest of the window, that 
  18650.    contains choices that provide access to other menus. 
  18651.  
  18652.  menu button  - The button on a pointing device that a user presses to view a 
  18653.    pop-up menu associated with an object. 
  18654.  
  18655.  message  - (1) In the Presentation Manager, a packet of data used for 
  18656.    communication between the Presentation Manager interface and Presentation 
  18657.    Manager applications (2) In a user interface, information not requested by 
  18658.    users but presented to users by the computer in response to a user action or 
  18659.    internal process. 
  18660.  
  18661.  message box  - (1) A dialog window predefined by the system and used as a 
  18662.    simple interface for applications, without the necessity of creating 
  18663.    dialog-template resources or dialog procedures. (2) (D of C) In SAA Advanced 
  18664.    Common User Access architecture, a type of window that shows messages to 
  18665.    users. See also dialog box, primary window, secondary window. 
  18666.  
  18667.  message filter  - The means of selecting which messages from a specific window 
  18668.    will be handled by the application. 
  18669.  
  18670.  message queue  - A sequenced collection of messages to be read by the 
  18671.    application. 
  18672.  
  18673.  message stream mode  - A method of operation in which data is treated as a 
  18674.    stream of messages.  Contrast with  byte stream. 
  18675.  
  18676.  metacharacter  - See global file-name character. 
  18677.  
  18678.  metaclass  - A class whose instances are all classes. In SOM, any class 
  18679.    descended from SOMClass is a metaclass. The methods of a metaclass are 
  18680.    sometimes called "class" methods. 
  18681.  
  18682.  metafile  - A file containing a series of attributes that set color, shape and 
  18683.    size, usually of a picture or a drawing. Using a program that can interpret 
  18684.    these attributes, a user can view the assembled image. 
  18685.  
  18686.  metafile device context  - A logical description of a data destination that is 
  18687.    a metafile, which is used for graphics interchange. See also device context. 
  18688.  
  18689.  metalanguage  - A language used to specify another language. For example, data 
  18690.    types can be described using a metalanguage so as to make the descriptions 
  18691.    independent of any one computer language. 
  18692.  
  18693.  method  - One of the units that makes up the behavior of an object. A method 
  18694.    is a combination of a function and a name, such that many different 
  18695.    functions can have the same name. Which function the name refers to at any 
  18696.    point in time depends on the object that is to execute the method and is the 
  18697.    subject of method resolution. 
  18698.  
  18699.  method override  - The replacement, by a child class, of the implementation of 
  18700.    a method inherited from a parent and an ancestor class. 
  18701.  
  18702.  mickey  - A unit of measurement for physical mouse motion whose value depends 
  18703.    on the mouse device driver currently loaded. 
  18704.  
  18705.  micro presentation space  - A graphics presentation space in which a 
  18706.    restricted set of the GPI function calls is available. 
  18707.  
  18708.  minimize  - To remove from the screen all windows associated with an 
  18709.    application and replace them with an icon that represents the application. 
  18710.  
  18711.  mix  - An attribute that determines how the foreground of a graphic primitive 
  18712.    is combined with the existing color of graphics output. Also known as 
  18713.    foreground mix. Contrast with background mix. 
  18714.  
  18715.  mixed character string  - A string containing a mixture of one-byte and Kanji 
  18716.    or Hangeul (two-byte) characters. 
  18717.  
  18718.  mnemonic  - (1) A method of selecting an item on a pull-down by means of 
  18719.    typing the highlighted letter in the menu item. (2) (D of C) In SAA Advanced 
  18720.    Common User Access architecture, usually a single character, within the text 
  18721.    of a choice, identified by an underscore beneath the character. If all 
  18722.    characters in a choice already serve as mnemonics for other choices, another 
  18723.    character, placed in parentheses immediately following the choice, can be 
  18724.    used. When a user types the mnemonic for a choice, the choice is either 
  18725.    selected or the cursor is moved to that choice. 
  18726.  
  18727.  modal dialog box  - In SAA Advanced Common User Access architecture, a type of 
  18728.    movable window, fixed in size, that requires a user to enter information 
  18729.    before continuing to work in the application window from which it was 
  18730.    displayed. Contrast with modeless dialog box. Also known as a serial dialog 
  18731.    box. Contrast with parallel dialog box. 
  18732.  
  18733.    Note:  In CUA architecture, this is a programmer term. The end user term is 
  18734.    pop-up window. 
  18735.  
  18736.  model space  - See graphics model space. 
  18737.  
  18738.  modeless dialog box  - In SAA Advanced Common User Access architecture, a type 
  18739.    of movable window, fixed in size, that allows users to continue their dialog 
  18740.    with the application without entering information in the dialog box. Also 
  18741.    known as a parallel dialog box. Contrast with modal dialog box. 
  18742.  
  18743.    Note:  In CUA architecture, this is a programmer term. The end user term is 
  18744.    pop-up window. 
  18745.  
  18746.  module definition file  - A file that describes the code segments within a 
  18747.    load module. For example, it indicates whether a code segment is loadable 
  18748.    before module execution begins (preload), or loadable only when referred to 
  18749.    at run time (load-on-call). 
  18750.  
  18751.  mouse  - In SAA usage, a device that a user moves on a flat surface to 
  18752.    position a pointer on the screen. It allows a user to select a choice o 
  18753.    function to be performed or to perform operations on the screen, such as 
  18754.    dragging or drawing lines from one position to another. 
  18755.  
  18756.  MOUSE$  - Character-device name reserved for a mouse. 
  18757.  
  18758.  multiple-choice selection  - In SAA Basic Common User Access architecture, a 
  18759.    type of field from which a user can select one or more choices or select 
  18760.    none. See also check box. Contrast with extended-choice selection. 
  18761.  
  18762.  multiple-line entry field  - In SAA Advanced Common User Access architecture, 
  18763.    a control into which a user types more than one line of information. See 
  18764.    also single-line entry field. 
  18765.  
  18766.  multitasking  - The concurrent processing of applications or parts of 
  18767.    applications. A running application and its data are protected from other 
  18768.    concurrently running applications. 
  18769.  
  18770.  mutex semaphore  - (Mutual exclusion semaphore). A semaphore that enables 
  18771.    threads to serialize their access to resources. Only the thread that 
  18772.    currently owns the mutex semaphore can gain access to the resource, thus 
  18773.    preventing one thread from interrupting operations being performed by 
  18774.    another. 
  18775.  
  18776.  muxwait semaphore  - (Multiple wait semaphore). A semaphore that enables a 
  18777.    thread to wait either for multiple event semaphores to be posted or for 
  18778.    multiple mutex semaphores to be released. Alternatively, a muxwait semaphore 
  18779.    can be set to enable a thread to wait for any ONE of the event or mutex 
  18780.    semaphores in the muxwait semaphore's list to be posted or released. 
  18781.  
  18782.  
  18783. ΓòÉΓòÉΓòÉ <hidden> Glossary - N ΓòÉΓòÉΓòÉ
  18784.  
  18785.  named pipe  - A named buffer that provides client-to-server, server-to-client, 
  18786.    or full duplex communication between unrelated processes. Contrast with 
  18787.    unnamed pipe. 
  18788.  
  18789.  national language support (NLS)  - The modification or conversion of a United 
  18790.    States English product to conform to the requirements of another language or 
  18791.    country. This can include the enabling or retrofitting of a product and the 
  18792.    translation of nomenclature, MRI, or documentation of a product. 
  18793.  
  18794.  nested list  - A list that is contained within another list. 
  18795.  
  18796.  NLS  - national language support. 
  18797.  
  18798.  non-8.3 file-name format  - A file-naming convention in which file names can 
  18799.    consist of up to 255 characters. See also 8.3 file-name format. 
  18800.  
  18801.  noncritical extended attribute  - An extended attribute that is not necessary 
  18802.    for the function of an application. 
  18803.  
  18804.  nondestructive read  - Reading that does not erase the data in the source 
  18805.    location. (T)
  18806.  
  18807.  noninteractive program  - A running program that cannot receive input from the 
  18808.    keyboard or other input device. Compare with active program, and contrast 
  18809.    with interactive program. 
  18810.  
  18811.  nonretained graphics  - Graphic primitives that are not remembered by the 
  18812.    Presentation Manager interface when they have been drawn. Contrast with 
  18813.    retained graphics. 
  18814.  
  18815.  null character (NUL)  - (1) Character-device name reserved for a nonexistent 
  18816.    (dummy) device. (2) (D of C) A control character that is used to accomplish 
  18817.    media-fill or time-fill and that may be inserted into or removed from a 
  18818.    sequence of characters without affecting the meaning of the sequence; 
  18819.    however, the control of equipment or the format may be affected by this 
  18820.    character. (I)  (A)
  18821.  
  18822.  null-terminated string  - A string of (n+1) characters where the (n+1)th 
  18823.    character is the 'null' character (0x00) Also known as 'zero-terminated' 
  18824.    string and 'ASCIIZ' string. 
  18825.  
  18826.  
  18827. ΓòÉΓòÉΓòÉ <hidden> Glossary - O ΓòÉΓòÉΓòÉ
  18828.  
  18829.  object  - The elements of data and function that programs create, manipulate, 
  18830.    pass as arguments, and so forth. An object is a way of associating specific 
  18831.    data values with a specific set of named functions (called methods) for a 
  18832.    period of time (referred to as the lifetime of the object). The data values 
  18833.    of an object are referred to as its state. In SOM, objects are created by 
  18834.    other objects called classes. The specification of what comprises the set of 
  18835.    functions and data elements that make up an object is referred to as the 
  18836.    definition of a class. 
  18837.  
  18838.    SOM objects offer a high degree of encapsulation. This property permits many 
  18839.    aspects of the implementation of an object to change without affecting 
  18840.    client programs that depend on the object's behavior. 
  18841.  
  18842.  object definition  - See class. 
  18843.  
  18844.  object instance  - See instance. 
  18845.  
  18846.  Object Interface Definition Language (OIDL)  - Specification language used in 
  18847.    SOM Version 1 for defining classes. Replaced by Interface Definition 
  18848.    Language (IDL). 
  18849.  
  18850.  object window  - A window that does not have a parent but which might have 
  18851.    child windows. An object window cannot be presented on a device. 
  18852.  
  18853.  OIDL  - Object Interface Definition Language. 
  18854.  
  18855.  open  - To start working with a file, directory, or other object. 
  18856.  
  18857.  ordered list  - Vertical arrangements of items, with each item in the list 
  18858.    preceded by a number or letter. 
  18859.  
  18860.  outline font  - A set of symbols, each of which is created as a series of 
  18861.    lines and curves.  Synonymous with vector font. Contrast with image font. 
  18862.  
  18863.  output area  - An area of storage reserved for output. (A)
  18864.  
  18865.  owner window  - A window into which specific events that occur in another 
  18866.    (owned) window are reported. 
  18867.  
  18868.  ownership  - The determination of how windows communicate using messages. 
  18869.  
  18870.  owning process  - The process that owns the resources that might be shared 
  18871.    with other processes. 
  18872.  
  18873.  
  18874. ΓòÉΓòÉΓòÉ <hidden> Glossary - P ΓòÉΓòÉΓòÉ
  18875.  
  18876.  page  - (1) A 4KB segment of contiguous physical memory. (2) (D of C) A 
  18877.    defined unit of space on a storage medium. 
  18878.  
  18879.  page viewport  - A boundary in device coordinates that defines the area of the 
  18880.    output device in which graphics are to be displayed. The presentation-page 
  18881.    contents are transformed automatically to the page viewport in device space. 
  18882.  
  18883.  paint  - (1) The action of drawing or redrawing the contents of a window. (2) 
  18884.    In computer graphics, to shade an area of a display image;  for example, 
  18885.    with crosshatching or color. 
  18886.  
  18887.  panel  - In SAA Basic Common User Access architecture, a particular 
  18888.    arrangement of information that is presented in a window or pop-up. If some 
  18889.    of the information is not visible, a user can scroll through the 
  18890.    information. 
  18891.  
  18892.  panel area  - An area within a panel that contains related information. The 
  18893.    three major Common User Access-defined panel areas are the action bar, the 
  18894.    function key area, and the panel body. 
  18895.  
  18896.  panel area separator  - In SAA Basic Common User Access architecture, a solid, 
  18897.    dashed, or blank line that provides a visual distinction between two 
  18898.    adjacent areas of a panel. 
  18899.  
  18900.  panel body  - The portion of a panel not occupied by the action bar, function 
  18901.    key area, title or scroll bars. The panel body can contain protected 
  18902.    information, selection fields, and entry fields. The layout and content of 
  18903.    the panel body determine the panel type. 
  18904.  
  18905.  panel body area  - See client area. 
  18906.  
  18907.  panel definition  - A description of the contents and characteristics of a 
  18908.    panel. A panel definition is the application developer's mechanism for 
  18909.    predefining the format to be presented to users in a window. 
  18910.  
  18911.  panel ID  - In SAA Basic Common User Access architecture, a panel identifier, 
  18912.    located in the upper-left corner of a panel.  A user can choose whether to 
  18913.    display the panel ID. 
  18914.  
  18915.  panel title  - In SAA Basic Common User Access architecture, a particular 
  18916.    arrangement of information that is presented in a window or pop-up. If some 
  18917.    of the information is not visible, a user can scroll through the 
  18918.    information. 
  18919.  
  18920.  paper size  - The size of paper, defined in either standard U.S. or European 
  18921.    names (for example, A, B, A4), and measured in inches or millimeters 
  18922.    respectively. 
  18923.  
  18924.  parallel dialog box  - See modeless dialog box. 
  18925.  
  18926.  parameter list  - A list of values that provides a means of associating 
  18927.    addressability of data defined in a called program with data in the calling 
  18928.    program. It contains parameter names and the order in which they are to be 
  18929.    associated in the calling and called program. 
  18930.  
  18931.  parent class  - See inheritance. 
  18932.  
  18933.  parent process  - In the OS/2 operating system, a process that creates other 
  18934.    processes. Contrast with child process. 
  18935.  
  18936.  parent window  - In the OS/2 operating system, a window that creates a child 
  18937.    window. The child window is drawn within the parent window. If the parent 
  18938.    window is moved, resized, or destroyed, the child window also will be moved, 
  18939.    resized, or destroyed. However, the child window can be moved and resized 
  18940.    independently from the parent window, within the boundaries of the parent 
  18941.    window. Contrast with child window. 
  18942.  
  18943.  partition  - (1) A fixed-size division of storage. (2) On an IBM personal 
  18944.    computer fixed disk, one of four possible storage areas of variable size; 
  18945.    one may be accessed by DOS, and each of the others may be assigned to 
  18946.    another operating system. 
  18947.  
  18948.  Paste  - A choice in the Edit pull-down that a user selects to move the 
  18949.    contents of the clipboard into a preselected location. See also Copy and 
  18950.    Cut. 
  18951.  
  18952.  path  - The route used to locate files; the storage location of a file. A 
  18953.    fully qualified path lists the drive identifier, directory name, 
  18954.    subdirectory name (if any), and file name with the associated extension. 
  18955.  
  18956.  PDD  - Physical device driver. 
  18957.  
  18958.  peeking  - An action taken by any thread in the process that owns the queue to 
  18959.    examine queue elements without removing them. 
  18960.  
  18961.  pel  - (1) The smallest area of a display screen capable of being addressed 
  18962.    and switched between visible and invisible states. Synonym for display 
  18963.    point, pixel, and picture element. (2) (D of C) Picture element. 
  18964.  
  18965.  persistent object  - An object whose instance data and state are preserved 
  18966.    between system shutdown and system startup. 
  18967.  
  18968.  physical device driver (PDD)  - A system interface that handles hardware 
  18969.    interrupts and supports a set of input and output functions. 
  18970.  
  18971.  pick  - To select part of a displayed object using the pointer. 
  18972.  
  18973.  pickup  - To add an object or set of objects to the pickup set. 
  18974.  
  18975.  pickup and drop  - A drag operation that does not require the direct 
  18976.    manipulation button to be pressed for the duration of the drag. 
  18977.  
  18978.  pickup set  - The set of objects that have been picked up as part of a pickup 
  18979.    and drop operation. 
  18980.  
  18981.  picture chain  - See segment chain. 
  18982.  
  18983.  picture element  - (1) Synonym for pel. (2) (D of C) In computer graphics, the 
  18984.    smallest element of a display surface that can be independently assigned 
  18985.    color and intensity. (T)  . (3) The area of the finest detail that can be 
  18986.    reproduced effectively on the recording medium. 
  18987.  
  18988.  PID  - Process identification. 
  18989.  
  18990.  pipe  - (1) A named or unnamed buffer used to pass data between processes. A 
  18991.    process reads from or writes to a pipe as if the pipe were a standard-input 
  18992.    or standard-output file. See also named pipe and unnamed pipe. (2) (D of C) 
  18993.    To direct data so that the output from one process becomes the input to 
  18994.    another process. The standard output of one command can be connected to the 
  18995.    standard input of another with the pipe operator (|). 
  18996.  
  18997.  pixel  - (1) Synonym for pel. (2) (D of C) Picture element. 
  18998.  
  18999.  plotter  - An output unit that directly produces a hardcopy record of data on 
  19000.    a removable medium, in the form of a two-dimensional graphic representation. (T)
  19001.  
  19002.  PM  - Presentation Manager. 
  19003.  
  19004.  pointer  - (1) The symbol displayed on the screen that is moved by a pointing 
  19005.    device, such as a mouse. The pointer is used to point at items that users 
  19006.    can select. Contrast with cursor. (2) A data element that indicates the 
  19007.    location of another data element. (T)
  19008.  
  19009.  POINTER$  - Character-device name reserved for a pointer device (mouse screen 
  19010.    support). 
  19011.  
  19012.  pointing device  - In SAA Advanced Common User Access architecture, an 
  19013.    instrument, such as a mouse, trackball, or joystick, used to move a pointer 
  19014.    on the screen. 
  19015.  
  19016.  pointings  - Pairs of x-y coordinates produced by an operator defining 
  19017.    positions on a screen with a pointing device, such as a mouse. 
  19018.  
  19019.  polyfillet  - A curve based on a sequence of lines. The curve is tangential to 
  19020.    the end points of the first and last lines, and tangential also to the 
  19021.    midpoints of all other lines. See also fillet. 
  19022.  
  19023.  polygon  - One or more closed figures that can be drawn filled, outlined, or 
  19024.    filled and outlined. 
  19025.  
  19026.  polyline  - A sequence of adjoining lines. 
  19027.  
  19028.  polymorphism  - The ability to have different implementations of the same 
  19029.    method for two or more classes of objects. 
  19030.  
  19031.  pop  - To retrieve an item from a last-in-first-out stack of items. Contrast 
  19032.    with push. 
  19033.  
  19034.  pop-up menu  - A menu that lists the actions that a user can perform on an 
  19035.    object. The contents of the pop-up menu can vary depending on the context, 
  19036.    or state, of the object. 
  19037.  
  19038.  pop-up window  - (1) A window that appears on top of another window in a 
  19039.    dialog. Each pop-up window must be completed before returning to the 
  19040.    underlying window. (2) (D of C) In SAA Advanced Common User Access 
  19041.    architecture, a movable window, fixed in size, in which a user provides 
  19042.    information required by an application so that it can continue to process a 
  19043.    user request. 
  19044.  
  19045.  presentation drivers  - Special purpose I/O routines that handle field 
  19046.    device-independent I/O requests from the PM and its applications. 
  19047.  
  19048.  Presentation Manager (PM)  - The interface of the OS/2 operating system that 
  19049.    presents, in windows a graphics-based interface to applications and files 
  19050.    installed and running under the OS/2 operating system. 
  19051.  
  19052.  presentation page  - The coordinate space in which a picture is assembled for 
  19053.    display. 
  19054.  
  19055.  presentation space (PS)  - (1) Contains the device-independent definition of a 
  19056.    picture. (2) (D of C) The display space on a display device. 
  19057.  
  19058.  primary window  - In SAA Common User Access architecture, the window in which 
  19059.    the main interaction between the user and the application takes place. In a 
  19060.    multiprogramming environment, each application starts in its own primary 
  19061.    window. The primary window remains for the duration of the application, 
  19062.    although the panel displayed will change as the user's dialog moves forward. 
  19063.    See also secondary window. 
  19064.  
  19065.  primitive  - In computer graphics, one of several simple functions for drawing 
  19066.    on the screen, including, for example, the rectangle, line, ellipse, 
  19067.    polygon, and so on. 
  19068.  
  19069.  primitive attribute  - A specifiable characteristic of a graphic primitive. 
  19070.    See graphics attributes. 
  19071.  
  19072.  print job  - The result of sending a document or picture to be printed. 
  19073.  
  19074.  Print Manager  - In the Presentation Manager, the part of the spooler that 
  19075.    manages the spooling process. It also allows users to view print queues and 
  19076.    to manipulate print jobs. 
  19077.  
  19078.  privilege level  - A protection level imposed by the hardware architecture of 
  19079.    the IBM personal computer.  There are four privilege levels (number 0 
  19080.    through 3).  Only certain types of programs are allowed to execute at each 
  19081.    privilege level.  See also IOPL code segment. 
  19082.  
  19083.  procedure call  - In programming languages, a language construct for invoking 
  19084.    execution of a procedure. 
  19085.  
  19086.  process  - An instance of an executing application and the resources it is 
  19087.    using. 
  19088.  
  19089.  program  - A sequence of instructions that a computer can interpret and 
  19090.    execute. 
  19091.  
  19092.  program details  - Information about a program that is specified in the 
  19093.    Program Manager window and is used when the program is started. 
  19094.  
  19095.  program group  - In the Presentation Manager, several programs that can be 
  19096.    acted upon as a single entity. 
  19097.  
  19098.  program name  - The full file specification of a program. Contrast with 
  19099.    program title. 
  19100.  
  19101.  program title  - The name of a program as it is listed in the Program Manager 
  19102.    window. Contrast with program name. 
  19103.  
  19104.  prompt  - A displayed symbol or message that requests input from the user or 
  19105.    gives operational information; for example, on the display screen of an IBM 
  19106.    personal computer, the DOS A> prompt. The user must respond to the prompt in 
  19107.    order to proceed. 
  19108.  
  19109.  protect mode  - A method of program operation that limits or prevents access 
  19110.    to certain instructions or areas of storage. Contrast with real mode. 
  19111.  
  19112.  protocol  - A set of semantic and syntactic rules that determines the behavior 
  19113.    of functional units in achieving communication. (I)
  19114.  
  19115.  pseudocode  - An artificial language used to describe computer program 
  19116.    algorithms without using the syntax of any particular programming language. (A)
  19117.  
  19118.  pull-down  - (1) An action bar extension that displays a list of choices 
  19119.    available for a selected action bar choice. After users select an action bar 
  19120.    choice, the pull-down appears with the list of choices. Additional pop-up 
  19121.    windows may appear from pull-down choices to further extend the actions 
  19122.    available to users. (2) (D of C) In SAA Common User Access architecture, 
  19123.    pertaining to a choice in an action bar pull-down. 
  19124.  
  19125.  push  - To add an item to a last-in-first-out stack of items. Contrast with 
  19126.    pop. 
  19127.  
  19128.  push button  - In SAA Advanced Common User Access architecture, a rectangle 
  19129.    with text inside. Push buttons are used in windows for actions that occur 
  19130.    immediately when the push button is selected. 
  19131.  
  19132.  putback  - To remove an object or set of objects from the lazy drag set. This 
  19133.    has the effect of undoing the pickup operation for those objects 
  19134.  
  19135.  putdown  - To drop the objects in the lazy drag set on the target object. 
  19136.  
  19137.  
  19138. ΓòÉΓòÉΓòÉ <hidden> Glossary - Q ΓòÉΓòÉΓòÉ
  19139.  
  19140.  queue  - (1) A linked list of elements waiting to be processed in FIFO order. 
  19141.    For example, a queue may be a list of print jobs waiting to be printed. (2) 
  19142.    (D of C) A line or list of items waiting to be processed; for example, work 
  19143.    to be performed or messages to be displayed. 
  19144.  
  19145.  queued device context  - A logical description of a data destination (for 
  19146.    example, a printer or plotter) where the output is to go through the 
  19147.    spooler. See also device context. 
  19148.  
  19149.  
  19150. ΓòÉΓòÉΓòÉ <hidden> Glossary - R ΓòÉΓòÉΓòÉ
  19151.  
  19152.  radio button  - (1) A control window, shaped like a round button on the 
  19153.    screen, that can be in a checked or unchecked state. It is used to select a 
  19154.    single item from a list. Contrast with check box. (2) In SAA Advanced Common 
  19155.    User Access architecture, a circle with text beside it. Radio buttons are 
  19156.    combined to show a user a fixed set of choices from which only one can be 
  19157.    selected. The circle is partially filled when a choice is selected. 
  19158.  
  19159.  RAS  - Reliability, availability, and serviceability. 
  19160.  
  19161.  raster  - (1) In computer graphics, a predetermined pattern of lines that 
  19162.    provides uniform coverage of a display space. (T)  (2) The coordinate grid 
  19163.    that divides the display area of a display device.  (A)
  19164.  
  19165.  read-only file  - A file that can be read from but not written to. 
  19166.  
  19167.  real mode  - A method of program operation that does not limit or prevent 
  19168.    access to any instructions or areas of storage.  The operating system loads 
  19169.    the entire program into storage and gives the program access to all system 
  19170.    resources. Contrast with protect mode. 
  19171.  
  19172.  realize  - To cause the system to ensure, wherever possible, that the physical 
  19173.    color table of a device is set to the closest possible match in the logical 
  19174.    color table. 
  19175.  
  19176.  recursive routine  - A routine that can call itself, or be called by another 
  19177.    routine that was called by the recursive routine. 
  19178.  
  19179.  reentrant  - The attribute of a program or routine that allows the same copy 
  19180.    of the program or routine to be used concurrently by two or more tasks. 
  19181.  
  19182.  reference phrase  - (1) A word or phrase that is emphasized in a 
  19183.    device-dependent manner to inform the user that additional information for 
  19184.    the word or phrase is available. (2) (D of C) In hypertext, text that is 
  19185.    highlighted and preceded by a single-character input field used to signify 
  19186.    the existence of a hypertext link. 
  19187.  
  19188.  reference phrase help  - In SAA Common User Access architecture, highlighted 
  19189.    words or phrases within help information that a user selects to get 
  19190.    additional information. 
  19191.  
  19192.  refresh  - To update a window, with changed information, to its current 
  19193.    status. 
  19194.  
  19195.  region  - A clipping boundary in device space. 
  19196.  
  19197.  register  - A part of internal storage having a specified storage capacity and 
  19198.    usually intended for a specific purpose. (T)
  19199.  
  19200.  remote file system  - A file-system driver that gains access to a remote 
  19201.    system without a block device driver. 
  19202.  
  19203.  resource  - The means of providing extra information used in the definition of 
  19204.    a window. A resource can contain definitions of fonts, templates, 
  19205.    accelerators, and mnemonics; the definitions are held in a resource file. 
  19206.  
  19207.  resource file  - A file containing information used in the definition of a 
  19208.    window. Definitions can be of fonts, templates, accelerators, and mnemonics. 
  19209.  
  19210.  restore  - To return a window to its original size or position following a 
  19211.    sizing or moving action. 
  19212.  
  19213.  retained graphics  - Graphic primitives that are remembered by the 
  19214.    Presentation Manager interface after they have been drawn. Contrast with 
  19215.    nonretained graphics. 
  19216.  
  19217.  return code  - (1) A value returned to a program to indicate the results of an 
  19218.    operation requested by that program. (2) A code used to influence the 
  19219.    execution of succeeding instructions.(A) 
  19220.  
  19221.  reverse video  - (1) A form of highlighting a character, field, or cursor by 
  19222.    reversing the color of the character, field, or cursor with its background; 
  19223.    for example, changing a red character on a black background to a black 
  19224.    character on a red background. (2) In SAA Basic Common User Access 
  19225.    architecture, a screen emphasis feature that interchanges the foreground and 
  19226.    background colors of an item. 
  19227.  
  19228.  REXX Language  - Restructured Extended Executor. A procedural language that 
  19229.    provides batch language functions along with structured programming 
  19230.    constructs such as loops; conditional testing and subroutines. 
  19231.  
  19232.  RGB  - (1) Color coding in which the brightness of the additive primary colors 
  19233.    of light, red, green, and blue, are specified as three distinct values of 
  19234.    white light. (2) Pertaining to a color display that accepts signals 
  19235.    representing red, green, and blue. 
  19236.  
  19237.  roman  - Relating to a type style with upright characters. 
  19238.  
  19239.  root segment  - In a hierarchical database, the highest segment in the tree 
  19240.    structure. 
  19241.  
  19242.  round-robin scheduling  - A process that allows each thread to run for a 
  19243.    specified amount of time. 
  19244.  
  19245.  run time  - (1) Any instant at which the execution of a particular computer 
  19246.    program takes place. (T)  (2) The amount of time needed for the execution of 
  19247.    a particular computer program. (T)  (3) The time during which an instruction 
  19248.    in an instruction register is decoded and performed. Synonym for execution 
  19249.    time. 
  19250.  
  19251.  
  19252. ΓòÉΓòÉΓòÉ <hidden> Glossary - S ΓòÉΓòÉΓòÉ
  19253.  
  19254.  SAA  - Systems Application Architecture. 
  19255.  
  19256.  SBCS  - Single-byte character set. 
  19257.  
  19258.  scheduler  - A computer program designed to perform functions such as 
  19259.    scheduling, initiation, and termination of jobs. 
  19260.  
  19261.  screen  - In SAA Basic Common User Access architecture, the physical surface 
  19262.    of a display device upon which information is shown to a user. 
  19263.  
  19264.  screen device context  - A logical description of a data destination that is a 
  19265.    particular window on the screen. See also device context. 
  19266.  
  19267.  SCREEN$  - Character-device name reserved for the display screen. 
  19268.  
  19269.  scroll bar  - In SAA Advanced Common User Access architecture, a part of a 
  19270.    window, associated with a scrollable area, that a user interacts with to see 
  19271.    information that is not currently allows visible. 
  19272.  
  19273.  scrollable entry field  - An entry field larger than the visible field. 
  19274.  
  19275.  scrollable selection field  - A selection field that contains more choices 
  19276.    than are visible. 
  19277.  
  19278.  scrolling  - Moving a display image vertically or horizontally in a manner 
  19279.    such that new data appears at one edge, as existing data disappears at the 
  19280.    opposite edge. 
  19281.  
  19282.  secondary window  - A window that contains information that is dependent on 
  19283.    information in a primary window and is used to supplement the interaction in 
  19284.    the primary window. 
  19285.  
  19286.  sector  - On disk or diskette storage, an addressable subdivision of a track 
  19287.    used to record one block of a program or data. 
  19288.  
  19289.  segment  - See graphics segment. 
  19290.  
  19291.  segment attributes  - Attributes that apply to the segment as an entity, as 
  19292.    opposed to the individual primitives within the segment. For example, the 
  19293.    visibility or detectability of a segment. 
  19294.  
  19295.  segment chain  - All segments in a graphics presentation space that are 
  19296.    defined with the 'chained' attribute. Synonym for picture chain. 
  19297.  
  19298.  segment priority  - The order in which segments are drawn. 
  19299.  
  19300.  segment store  - An area in a normal graphics presentation space where 
  19301.    retained graphics segments are stored. 
  19302.  
  19303.  select  - To mark or choose an item. Note that select means to mark or type in 
  19304.    a choice on the screen; enter means to send all selected choices to the 
  19305.    computer for processing. 
  19306.  
  19307.  select button  - The button on a pointing device, such as a mouse, that is 
  19308.    pressed to select a menu choice.  Also known as button 1. 
  19309.  
  19310.  selection cursor  - In SAA Advanced Common User Access architecture, a visual 
  19311.    indication that a user has selected a choice. It is represented by outlining 
  19312.    the choice with a dotted box. See also text cursor. 
  19313.  
  19314.  selection field  - (1) In SAA Advanced Common User Access architecture, a set 
  19315.    of related choices. See also entry field. (2) In SAA Basic Common User 
  19316.    Access architecture, an area of a panel that cannot be scrolled and contains 
  19317.    a fixed number of choices. 
  19318.  
  19319.  semantics  - The relationships between symbols and their meanings. 
  19320.  
  19321.  semaphore  - An object used by applications for signalling purposes and for 
  19322.    controlling access to serially reusable resources. 
  19323.  
  19324.  separator  - In SAA Advanced Common User Access architecture, a line or color 
  19325.    boundary that provides a visual distinction between two adjacent areas. 
  19326.  
  19327.  serial dialog box  - See modal dialog box. 
  19328.  
  19329.  serialization  - The consecutive ordering of items. 
  19330.  
  19331.  serialize  - To ensure that one or more events occur in a specified sequence. 
  19332.  
  19333.  serially reusable resource (SRR)  - A logical resource or object that can be 
  19334.    accessed by only one task at a time. 
  19335.  
  19336.  session  - (1) A routing mechanism for user interaction via the console; a 
  19337.    complete environment that determines how an application runs and how users 
  19338.    interact with the application. OS/2 can manage more than one session at a 
  19339.    time, and more than one process can run in a session. Each session has its 
  19340.    own set of environment variables that determine where OS/2 looks for 
  19341.    dynamic-link libraries and other important files. (2) (D of C) In the OS/2 
  19342.    operating system, one instance of a started program or command prompt. Each 
  19343.    session is separate from all other sessions that might be running on the 
  19344.    computer. The operating system is responsible for coordinating the resources 
  19345.    that each session uses, such as computer memory, allocation of processor 
  19346.    time, and windows on the screen. 
  19347.  
  19348.  Settings Notebook  - A control window that is used to display the settings for 
  19349.    an object and to enable the user to change them. 
  19350.  
  19351.  shadow  - An object that refers to another object. A shadow is not a copy of 
  19352.    another object, but is another representation of the object. 
  19353.  
  19354.  shadow box  - The area on the screen that follows mouse movements and shows 
  19355.    what shape the window will take if the mouse button is released. 
  19356.  
  19357.  shared data  - Data that is used by two or more programs. 
  19358.  
  19359.  shared memory  - In the OS/2 operating system, a segment that can be used by 
  19360.    more than one program. 
  19361.  
  19362.  shear  - In computer graphics, the forward or backward slant of a graphics 
  19363.    symbol or string of such symbols relative to a line perpendicular to the 
  19364.    baseline of the symbol. 
  19365.  
  19366.  shell  - (1) A software interface between a user and the operating system of a 
  19367.    computer. Shell programs interpret commands and user interactions on devices 
  19368.    such as keyboards, pointing devices, and touch-sensitive screens, and 
  19369.    communicate them to the operating system. (2) Software that allows a kernel 
  19370.    program to run under different operating-system environments. 
  19371.  
  19372.  shutdown  - The process of ending operation of a system or a subsystem, 
  19373.    following a defined procedure. 
  19374.  
  19375.  sibling processes  - Child processes that have the same parent process. 
  19376.  
  19377.  sibling windows  - Child windows that have the same parent window. 
  19378.  
  19379.  simple list  - A list of like values; for example, a list of user names. 
  19380.    Contrast with mixed list. 
  19381.  
  19382.  single-byte character set (SBCS)  - A character set in which each character is 
  19383.    represented by a one-byte code.  Contrast with double-byte character set. 
  19384.  
  19385.  slider box  - In SAA Advanced Common User Access architecture: a part of the 
  19386.    scroll bar that shows the position and size of the visible information in a 
  19387.    window relative to the total amount of information available. Also known as 
  19388.    thumb mark. 
  19389.  
  19390.  SOM  - System Object Model. 
  19391.  
  19392.  source file  - A file that contains source statements for items such as 
  19393.    high-level language programs and data description specifications. 
  19394.  
  19395.  source statement  - A statement written in a programming language. 
  19396.  
  19397.  specific dynamic-link module  - A dynamic-link module created for the 
  19398.    exclusive use of an application. 
  19399.  
  19400.  spin button  - In SAA Advanced Common User Access architecture, a type of 
  19401.    entry field that shows a scrollable ring of choices from which a user can 
  19402.    select a choice. After the last choice is displayed, the first choice is 
  19403.    displayed again.  A user can also type a choice from the scrollable ring 
  19404.    into the entry field without interacting with the spin button. 
  19405.  
  19406.  spline  - A sequence of one or more B╨Æzier curves. 
  19407.  
  19408.  spooler  - A program that intercepts the data going to printer devices and 
  19409.    writes it to disk. The data is printed or plotted when it is complete and 
  19410.    the required device is available.  The spooler prevents output from 
  19411.    different sources from being intermixed. 
  19412.  
  19413.  stack  - A list constructed and maintained so that the next data element to be 
  19414.    retrieved is the most recently stored. This method is characterized as 
  19415.    last-in-first-out (LIFO). 
  19416.  
  19417.  standard window  - A collection of window elements that form a panel. The 
  19418.    standard window can include one or more of the following window elements: 
  19419.    sizing borders, system menu icon, title bar, maximize/minimize/restore 
  19420.    icons, action bar and pull-downs, scroll bars, and client area. 
  19421.  
  19422.  static control  - The means by which the application presents descriptive 
  19423.    information (for example, headings and descriptors) to the user. The user 
  19424.    cannot change this information. 
  19425.  
  19426.  static storage  - (1) A read/write storage unit in which data is retained in 
  19427.    the absence of control signals. (A)  Static storage may use dynamic 
  19428.    addressing or sensing circuits. (2) Storage other than dynamic storage. (A)
  19429.  
  19430.  style  - See window style. 
  19431.  
  19432.  subclass  - A class that inherits from another class. See also Inheritance. 
  19433.  
  19434.  subdirectory  - In an IBM personal computer, a file referred to in a root 
  19435.    directory that contains the names of other files stored on the diskette or 
  19436.    fixed disk. 
  19437.  
  19438.  superclass  - A class from which another class inherits. See also inheritance. 
  19439.  
  19440.  swapping  - (1) A process that interchanges the contents of an area of real 
  19441.    storage with the contents of an area in auxiliary storage. (I)  (A)  (2) In 
  19442.    a system with virtual storage, a paging technique that writes the active 
  19443.    pages of a job to auxiliary storage and reads pages of another job from 
  19444.    auxiliary storage into real storage. (3) The process of temporarily removing 
  19445.    an active job from main storage, saving it on disk, and processing another 
  19446.    job in the area of main storage formerly occupied by the first job. 
  19447.  
  19448.  switch  - (1) In SAA usage, to move the cursor from one point of interest to 
  19449.    another;  for example, to move from one screen or window to another or from 
  19450.    a place within a displayed image to another place on the same displayed 
  19451.    image. (2) In a computer program, a conditional instruction and an indicator 
  19452.    to be interrogated by that instruction. (3) A device or programming 
  19453.    technique for making a selection, for example, a toggle, a conditional jump. 
  19454.  
  19455.  switch list  - See Task List. 
  19456.  
  19457.  symbolic identifier  - A text string that equates to an integer value in an 
  19458.    include file, which is used to identify a programming object. 
  19459.  
  19460.  symbols  - In Information Presentation Facility, a document element used to 
  19461.    produce characters that cannot be entered from the keyboard. 
  19462.  
  19463.  synchronous  - Pertaining to two or more processes that depend upon the 
  19464.    occurrence of specific events such as common timing signals. (T)  See also 
  19465.    asynchronous. 
  19466.  
  19467.  System Menu  - In the Presentation Manager, the pull-down in the top left 
  19468.    corner of a window that allows it to be moved and sized with the keyboard. 
  19469.  
  19470.  System Object Model (SOM)  - A mechanism for language-neutral, object-oriented 
  19471.    programming in the OS/2 environment. 
  19472.  
  19473.  system queue  - The master queue for all pointer device or keyboard events. 
  19474.  
  19475.  system-defined messages  - Messages that control the operations of 
  19476.    applications and provides input an other information for applications to 
  19477.    process. 
  19478.  
  19479.  Systems Application Architecture (SAA)  - A set of IBM software interfaces, 
  19480.    conventions, and protocols that provide a framework for designing and 
  19481.    developing applications that are consistent across systems. 
  19482.  
  19483.  
  19484. ΓòÉΓòÉΓòÉ <hidden> Glossary - T ΓòÉΓòÉΓòÉ
  19485.  
  19486.  table tags  - In Information Presentation Facility, a document element that 
  19487.    formats text in an arrangement of rows and columns. 
  19488.  
  19489.  tag  - (1) One or more characters attached to a set of data that contain 
  19490.    information about the set, including its identification. (I)  (A)  (2) In 
  19491.    Generalized Markup Language markup, a name for a type of document or 
  19492.    document element that is entered in the source document to identify it. 
  19493.  
  19494.  target object  - An object to which the user is transferring information. 
  19495.  
  19496.  Task List  - In the Presentation Manager, the list of programs that are 
  19497.    active. The list can be used to switch to a program and to stop programs. 
  19498.  
  19499.  terminate-and-stay-resident (TSR)  - Pertaining to an application that 
  19500.    modifies an operating system interrupt vector to point to its own location 
  19501.    (known as hooking an interrupt). 
  19502.  
  19503.  text  - Characters or symbols. 
  19504.  
  19505.  text cursor  - A symbol displayed in an entry field that indicates where typed 
  19506.    input will appear. 
  19507.  
  19508.  text window  - Also known as the VIO window. 
  19509.  
  19510.  text-windowed application  - The environment in which the operating system 
  19511.    performs advanced-video input and output operations. 
  19512.  
  19513.  thread  - A unit of execution within a process. It uses the resources of the 
  19514.    process. 
  19515.  
  19516.  thumb mark  - The portion of the scroll bar that describes the range and 
  19517.    properties of the data that is currently visible in a window. Also known as 
  19518.    a slider box. 
  19519.  
  19520.  thunk  - Term used to describe the process of address conversion, stack and 
  19521.    structure realignment, etc., necessary when passing control between 16-bit 
  19522.    and 32-bit modules. 
  19523.  
  19524.  tilde  - A mark used to denote the character that is to be used as a mnemonic 
  19525.    when selecting text items within a menu. 
  19526.  
  19527.  time slice  - (1) An interval of time on the processing unit allocated for use 
  19528.    in performing a task. After the interval has expired, processing-unit time 
  19529.    is allocated to another task, so a task cannot monopolize processing-unit 
  19530.    time beyond a fixed limit. (2) In systems with time sharing, a segment of 
  19531.    time allocated to a terminal job. 
  19532.  
  19533.  time-critical process  - A process that must be performed within a specified 
  19534.    time after an event has occurred. 
  19535.  
  19536.  timer  - A facility provided under the Presentation Manager, whereby 
  19537.    Presentation Manager will dispatch a message of class WM_TIMER to a 
  19538.    particular window at specified intervals. This capability may be used by an 
  19539.    application to perform a specific processing task at predetermined 
  19540.    intervals, without the necessity for the application to explicitly keep 
  19541.    track of the passage of time. 
  19542.  
  19543.  timer tick  - See clock tick. 
  19544.  
  19545.  title bar  - In SAA Advanced Common User Access architecture, the area at the 
  19546.    top of each window that contains the window title and system menu icon. When 
  19547.    appropriate, it also contains the minimize, maximize, and restore icons. 
  19548.    Contrast with panel title. 
  19549.  
  19550.  TLB  - Translation lookaside buffer. 
  19551.  
  19552.  transaction  - An exchange between a workstation and another device that 
  19553.    accomplishes a particular action or result. 
  19554.  
  19555.  transform  - (1) The action of modifying a picture by scaling, shearing, 
  19556.    reflecting, rotating, or translating. (2) The object that performs or 
  19557.    defines such a modification; also referred to as a transformation. 
  19558.  
  19559.  Translation lookaside buffer (TLB)  - A hardware-based address caching 
  19560.    mechanism for paging information. 
  19561.  
  19562.  Tree  - In the Presentation Manager, the window in the File Manager that shows 
  19563.    the organization of drives and directories. 
  19564.  
  19565.  truncate  - (1) To terminate a computational process in accordance with some 
  19566.    rule (A)  (2) To remove the beginning or ending elements of a string. (3) To 
  19567.    drop data that cannot be printed or displayed in the line width specified or 
  19568.    available. (4) To shorten a field or statement to a specified length. 
  19569.  
  19570.  TSR  - Terminate-and-stay-resident. 
  19571.  
  19572.  
  19573. ΓòÉΓòÉΓòÉ <hidden> Glossary - U ΓòÉΓòÉΓòÉ
  19574.  
  19575.  unnamed pipe  - A circular buffer, created in memory, used by related 
  19576.    processes to communicate with one another. Contrast with named pipe. 
  19577.  
  19578.  unordered list  - In Information Presentation Facility, a vertical arrangement 
  19579.    of items in a list, with each item in the list preceded by a special 
  19580.    character or bullet. 
  19581.  
  19582.  update region  - A system-provided area of dynamic storage containing one or 
  19583.    more (not necessarily contiguous) rectangular areas of a window that are 
  19584.    visually invalid or incorrect, and therefore are in need of repainting. 
  19585.  
  19586.  user interface  - Hardware, software, or both that allows a user to interact 
  19587.    with and perform operations on a system, program, or device. 
  19588.  
  19589.  User Shell  - A component of OS/2 that uses a graphics-based, windowed 
  19590.    interface to allow the user to manage applications and files installed and 
  19591.    running under OS/2. 
  19592.  
  19593.  utility program  - (1) A computer program in general support of computer 
  19594.    processes; for example, a diagnostic program, a trace program, a sort 
  19595.    program. (T)  (2) A program designed to perform an everyday task such as 
  19596.    copying data from one storage device to another. (A)
  19597.  
  19598.  
  19599. ΓòÉΓòÉΓòÉ <hidden> Glossary - V ΓòÉΓòÉΓòÉ
  19600.  
  19601.  value set control  - A visual component that enables a user to select one 
  19602.    choice from a group of mutually exclusive choices. 
  19603.  
  19604.  vector font  - A set of symbols, each of which is created as a series of lines 
  19605.    and curves. Synonymous with outline font. Contrast with image font. 
  19606.  
  19607.  VGA  - Video graphics array. 
  19608.  
  19609.  view  - A way of looking at an object's information. 
  19610.  
  19611.  viewing pipeline  - The series of transformations applied to a graphic object 
  19612.    to map the object to the device on which it is to be presented. 
  19613.  
  19614.  viewing window  - A clipping boundary that defines the visible part of model 
  19615.    space. 
  19616.  
  19617.  VIO  - Video Input/Output. 
  19618.  
  19619.  virtual memory (VM)  - Synonymous with virtual storage. 
  19620.  
  19621.  virtual storage  - (1) The storage space that may be regarded as addressable 
  19622.    main storage by the user of a computer system in which virtual addresses are 
  19623.    mapped into real addresses. The size of virtual storage is limited by the 
  19624.    addressing scheme of the computer system and by the amount of auxiliary 
  19625.    storage available, not by the actual number of main storage 
  19626.    locations. (I)  (A)  (2) Addressable space that is apparent to the user as 
  19627.    the processor storage space, from which the instructions and the data are 
  19628.    mapped into the processor storage locations. (3) Synonymous with virtual 
  19629.    memory. 
  19630.  
  19631.  visible region  - A window's presentation space, clipped to the boundary of 
  19632.    the window and the boundaries of any overlying window. 
  19633.  
  19634.  volume  - (1) A file-system driver that uses a block device driver for input 
  19635.    and output operations to a local or remote device. (I)  (2) A portion of 
  19636.    data, together with its data carrier, that can be handled conveniently as a 
  19637.    unit. 
  19638.  
  19639.  
  19640. ΓòÉΓòÉΓòÉ <hidden> Glossary - W ΓòÉΓòÉΓòÉ
  19641.  
  19642.  wildcard character  - Synonymous with global file-name character. 
  19643.  
  19644.  window  - (1) A portion of a display surface in which display images 
  19645.    pertaining to a particular application can be presented. Different 
  19646.    applications can be displayed simultaneously in different windows. (A)  (2) 
  19647.    An area of the screen with visible boundaries within which information is 
  19648.    displayed. A window can be smaller than or the same size as the screen. 
  19649.    Windows can appear to overlap on the screen. 
  19650.  
  19651.  window class  - The grouping of windows whose processing needs conform to the 
  19652.    services provided by one window procedure. 
  19653.  
  19654.  window coordinates  - A set of coordinates by which a window position or size 
  19655.    is defined; measured in device units, or pels. 
  19656.  
  19657.  window handle  - Unique identifier of a window, generated by Presentation 
  19658.    Manager when the window is created, and used by applications to direct 
  19659.    messages to the window. 
  19660.  
  19661.  window procedure  - Code that is activated in response to a message. The 
  19662.    procedure controls the appearance and behavior of its associated windows. 
  19663.  
  19664.  window rectangle  - The means by which the size and position of a window is 
  19665.    described in relation to the desktop window. 
  19666.  
  19667.  window resource  - A read-only data segment stored in the .EXE file of an 
  19668.    application o the .DLL file of a dynamic link library. 
  19669.  
  19670.  window style  - The set of properties that influence how events related to a 
  19671.    particular window will be processed. 
  19672.  
  19673.  window title  - In SAA Advanced Common User Access architecture, the area in 
  19674.    the title bar that contains the name of the application and the OS/2 
  19675.    operating system file name, if applicable. 
  19676.  
  19677.  Workplace Shell  - The OS/2 object-oriented, graphical user interface. 
  19678.  
  19679.  workstation  - (1) A display screen together with attachments such as a 
  19680.    keyboard, a local copy device, or a tablet. (2) (D of C) One or more 
  19681.    programmable or nonprogrammable devices that allow a user to do work. 
  19682.  
  19683.  world coordinates  - A device-independent Cartesian coordinate system used by 
  19684.    the application program for specifying graphical input and output. (I)  (A)
  19685.  
  19686.  world-coordinate space  - Coordinate space in which graphics are defined 
  19687.    before transformations are applied. 
  19688.  
  19689.  WYSIWYG  - What-You-See-Is-What-You-Get. A capability of a text editor to 
  19690.    continually display pages exactly as they will be printed. 
  19691.  
  19692.  
  19693. ΓòÉΓòÉΓòÉ <hidden> Glossary - X ΓòÉΓòÉΓòÉ
  19694.  
  19695. There are no glossary terms for this starting letter. 
  19696.  
  19697.  
  19698. ΓòÉΓòÉΓòÉ <hidden> Glossary - Y ΓòÉΓòÉΓòÉ
  19699.  
  19700. There are no glossary terms for this starting letter. 
  19701.  
  19702.  
  19703. ΓòÉΓòÉΓòÉ <hidden> Glossary - Z ΓòÉΓòÉΓòÉ
  19704.  
  19705.  z-order  - The order in which sibling windows are presented. The topmost 
  19706.    sibling window obscures any portion of the siblings that it overlaps; the 
  19707.    same effect occurs down through the order of lower sibling windows. 
  19708.  
  19709.  zooming  - The progressive scaling of an entire display image in order to give 
  19710.    the visual impression of movement of all or part of a display group toward 
  19711.    or away from an observer. (I)  (A)
  19712.  
  19713.  8.3 file-name format  - A file-naming convention in which file names are 
  19714.    limited to eight characters before and three characters after a single dot. 
  19715.    Usually pronounced "eight-dot-three." See also non-8.3 file-name format. 
  19716.