I have this btnbmp

As you can see the image is not showed good, png image is shown with black outlines why?
I use png and GDI command but I not see the right image
how I can resolve?

As you can see the image is not showed good, png image is shown with black outlines why?
I use png and GDI command but I not see the right image
how I can resolve?
#include "fivewin.ch"
Function test()
Local oDlg
Local oBtn
Local cImage:="image.png"
Local Cdesc:="Articolo 1"
Local nPrezzo:= 30
local nrow:= 10
local ncol:= 10
DEFINE DIALOG oDlg Size 450,350
 @ nRow,ncol BTNBMP oBtn ;
    FILENAME cImage ;
    SIZE 195, 50 PIXEL;
     FLAT  RIGHT;
    PROMPT "" + alltrim(cDesc) + CRLF + transform( nPrezzo,'@ €99,999.99') + " " ;
    OF oDlg ;
    TOOLTIP "fai click per aggiungere un servizio" ;
    COLOR CLR_RED,CLR_WHITE GDI
ACTIVATE DIALOG oDLg
REturn nilSince from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
