Jump to content

CBM HILITE: Difference between revisions

From EDM2
Created page with "This message sets the highlighting state of the entry field control. ==Syntax== <PRE> param1 USHORT usHilite; Highlighting indicator.: param2 ULONG ulReserved; Reserved value, should be 0.: </PRE> ==Parameters== ;usHilite (USHORT) - Input : Highlighting indicator. ::TRUE: Highlight the entry field control. ::FALSE: Do not highlight the entry field control. ;ulReserved (ULONG) - Input : Reserved value, should be 0. ==Returns== ;rc (BOOL) - r..."
 
(No difference)

Latest revision as of 22:30, 20 April 2025

This message sets the highlighting state of the entry field control.

Syntax

param1
USHORT usHilite;    /* Highlighting indicator. */

param2
ULONG ulReserved;    /* Reserved value, should be 0. */

Parameters

usHilite (USHORT) - Input
Highlighting indicator.
TRUE: Highlight the entry field control.
FALSE: Do not highlight the entry field control.
ulReserved (ULONG) - Input
Reserved value, should be 0.

Returns

rc (BOOL) - returns
Changed indicator.
TRUE: The highlighting state of the entry field has been changed.
FALSE: The highlighting state of the entry field has not been changed.

Remarks

The combo box control window procedure responds to this message by setting the highlighting state of the entry field control.

Default Processing

WinDefWindowProc does not expect to receive this message and therefore takes no action on it other than to set rc to the default value of FALSE.