Search found 1 match: nclr

Searched query: nclr

by Silvio.Falconi
Fri Oct 11, 2024 9:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: drawing a circle with FW_Box
Replies: 6
Views: 711

Re: drawing a circle with FW_Box

If a color or pen is specified as 3rd parameter, only that color/pen is used and it never uses black color.
As a test you may check
local nClr := RGB(243, 101, 108)

DEFINE WINDOW oWnd SIZE 200,200 PIXEL

oWnd:bPainted := { |hDC| FW_Box( hDC, { 20,20,120,120 }, { nClr, 3 }, nil, , 2 ) }


The ...