When I show dots for a get or say class I wish show circles dots and not windows black dots
Someone Know How change showdots method from control.prg ?
Best Regards, Saludos
Falconi Silvio
Falconi Silvio
When I show dots for a get or say class I wish show circles dots and not windows black dots
Someone Know How change showdots method from control.prg ?
Try: Chr(144) I hope it can help you ![]()
sorry but perhaps YOU not Understand what I am talking
Show Us! put an image sample.


METHOD CheckDots() CLASS TControl
...
DEFINE CURSOR oSizeNWSE SIZENWSE
DEFINE CURSOR oSizeNESW SIZENESW
DEFINE CURSOR oSizeNS SIZENS
DEFINE CURSOR oSizeWE SIZEWE
DEFINE BRUSH oDotBrush FILENAME "dot.bmp"
DEFINE WINDOW oDot1 OF oWndParent;
STYLE nOr( WS_CHILD, WS_CLIPSIBLINGS );
FROM 0, 0 TO 2, 2 PIXEL ;
COLOR "N/N" ;
CURSOR oSizeNWSE BRUSH oDotBrush
DEFINE WINDOW oDot2 OF oWndParent;
STYLE nOr( WS_CHILD, WS_CLIPSIBLINGS ) ;
FROM 0, 0 TO 2, 2 PIXEL ;
COLOR "N/N" ;
CURSOR oSizeNS BRUSH oDotBrush
...you have try it ?