Page 1 of 1

@ ... DCSAY ... SAYCOLOR ... SAYSIZE

Posted: Sat Jan 07, 2017 1:00 pm
by unixkd
Hi Roger,

How can I remove the Gray Background of the SAY "prompt" with SIZE Clause so that the SAY prompt can appear on the bitmap background directly. Same with GROUP prompt

Code:

*
Function Test_Test()
LOCAL GetList[0], GetOptions, xGroup, oBitmap
@ 1,3 DCSAY "Select Entity in the Panel below:" SAYCOLOR GRA_CLR_DARKGREEN,nil SAYFONT '15.Arial Bold' SAYLEFT //SAYSIZE 32,1.2
@ 3,3 DCSAY "No Code Selected" SAYCOLOR GRA_CLR_BLUE,nil SAYFONT '15.Arial Bold' SAYCENTER //SAYSIZE 80,1.2
@ 5,3 DCGROUP xGroup CAPTION "Group Details" SIZE 84,10

oBitmap := DC_GetBitmap(DC_Path(AppName(.t.))+"MetaLink-BG2.Jpg")
*
DCGETOPTIONS TOOLTIPCOLOR GRA_CLR_BLACK, GRA_CLR_YELLOW ;
AUTORESIZE;
BITMAP oBitmap

DCREAD GUI ;
FIT ;
OPTIONS GetOptions ;
TITLE 'Test Test Test' ;
SETAPPWINDOW ADDBUTTONS
Return
TestTest.png
TestTest.png (385.13 KiB) Viewed 6085 times

Re: @ ... DCSAY ... SAYCOLOR ... SAYSIZE

Posted: Sat Jan 07, 2017 1:46 pm
by rdonnay
Try COLOR GRA_CLR_DARKGREEN, XBPSYSCLR_TRANSPARENT

Re: @ ... DCSAY ... SAYCOLOR ... SAYSIZE

Posted: Sun Jan 08, 2017 3:09 am
by unixkd
Perfect.

Thanks Roger