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?
Code: Select all
#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 nil