![]() |
![]() |
![]() |
Get an RGB Colour from an OLE_COLOR |
|||
|
Steve McMahon(steve@vbaccelerator.com) |
![]() |
||
|
![]() |
|||
|
09/08/98 |
![]() |
||
Other Tips |
Sometimes you need to know the Red, Green and Blue values of a Visual Basic OLE Colour,
particularly if you are going to use the colour in an API function. This tip shows
you how to correctly convert an OLE_COLOR type to a RGB value using the OleTranslateColor
API call exposed by OLEPRO32.DLL. It works for all colours, whether they are RGB colours,
system colours of the type &H80000000F (vbButtonFace) or palette-matching colours such as &H2EECC99.
Private Declare Function OleTranslateColor Lib "OLEPRO32.DLL" (ByVal OLE_COLOR As Long, ByVal HPALETTE As Long, pccolorref As Long) As Long To test out the function, add a Combo box, a Label and a Text Box to the project's form. Set the style of the Combo box to 2 (Drop Down List) and then add the following code:
Private Sub Combo1_Click() When you change the selected item in the combo box , the text box will be set to the R,G,B components of the colour. |
|||
  |
Related Tips and Articles: |
|
![]() |
  |
![]() |
|
About Contribute Send Feedback Privacy
|