How to put a horizontal text scrolling on the form (a news line, marquee)
How to put a vertical text scrolling on the form (a movie cast)
Subclassing CommandButton control to create BackColor property
Vertical Label control
How to make a VFP form fading out when released (GDI version)
Displaying dimmed window behind VFP top-level form
HBRUSH CreateSolidBrush(
COLORREF crColor // brush color value
); DECLARE INTEGER CreateSolidBrush IN gdi32;
LONG crColor crColor [in] Specifies the color of the brush. To create a COLORREF color value, use the RGB macro.
If the function succeeds, the return value identifies a logical brush.
A solid brush is a bitmap that the system uses to paint the interiors of filled shapes.
After an application creates a brush by calling CreateSolidBrush, it can select that brush into any device context by calling the SelectObject function.
Home