On Main program I insert these lines
- Code: Select all Expand view
DEFINE BRUSH oPenL COLOR CLR_HBLUE
DEFINE BRUSH oPenR COLOR CLR_HRED
and then
- Code: Select all Expand view
disegna( nLinea+nVertic+4, nColumnaInicio+nHoriz2, nLinea+nVertic+14, nColumnaFinal+nHoriz2, oPenR )
the func disegna is this
- Code: Select all Expand view
Func disegna ( nTop, nLeft, nBottom, nRight, nColor )
LOCAL oBrush, hBru, hOld
hBru := CreateSolidBrush( nColor )
hPen := CreatePen( nColor )
hOld := SelectObject( hDC, hBru )
Rectangle( hDC, nTop, nLeft, nBottom, nRight, hPen )
* MoveTo( hDC, nLeft, nTop )
* LineTo( hDC, nRight, nBottom, hPen )
FillRect( hDC, { nTop + 2, nLeft + 2, nBottom, nRight }, hBru )
SelectObject( hDC, hOld )
DeleteObject( hBru )
RETURN (Nil)
but the procedure draw black rectangules ...why ?
I want blu or red rectang
Best Regards