I'm drawing polygons on a window with (vsolid is an array with the coördinates)
- Code: Select all Expand view
local hBrush1 := CreateSolidBrush( nRGB( 255, 0, 0) )
hOldBrush := SelectObject( sWnd:hDC, hBrush1 )
polypolygon( sWnd:hDC, vsolid )
The polygon is drawn in red, but there is a black line around it, how can I change this color?
Thanks,
MArc