Hi,
I need to change the color of a rectangular window fragment. How can this be done ?
Hi,
I need to change the color of a rectangular window fragment. How can this be done ?
Please post a screenshot of what you need
#include "FiveWin.ch"
function Main()
聽 聽 local oWnd, oBrush
聽 聽 DEFINE BRUSH oBrush COLOR 0x00A5FF
聽 聽 DEFINE WINDOW oWnd
聽 聽 ACTIVATE WINDOW oWnd ;
聽 聽 聽 聽 ON PAINT FillRect( hDC, { 80, 80, 200, 200 }, oBrush:hBrush )
聽 聽 RELEASE BRUSH oBrush
return nilThank you, this is what you need