devxlogo

Translate Ole_Color to Actual RGB Value

Translate Ole_Color to Actual RGB Value

Have you ever tried to pass a VB system color constant-such as vbButtonFace-to an API call that asks for a color? I frequently need to use system colors for GDI calls, and prefer to use the VB system color constants. The problem is that GDI doesn’t know what to do with them and the resultant color is always black. The solution is simple: Use the OleTranslateColor API, which takes any of these constants and converts them to literal RGB colors GDI can understand. I usually package the API in a simple wrapper as well:

 Private Declare Function OleTranslateColor _	Lib "oleaut32.dll" (ByVal lOleColor As Long, _	ByVal lHPalette As Long, lColorRef As Long) _	As LongPublic Function TranslateColor(inCol _	As OLE_COLOR) As Long	Dim retCol As Long	OleTranslateColor inCol, 0&, retCol	TranslateColor = retColEnd Function

From that point on, simply call TranslateColor() with a system color constant to get the color you need. Furthermore, if a standard RGB value is passed to TranslateColor, it returns unaltered, so you don’t have to worry about whether a color value you’re storing is a system constant or an actual color value.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist