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
@ ... DCSAY ... SAYCOLOR ... SAYSIZE
Re: @ ... DCSAY ... SAYCOLOR ... SAYSIZE
Try COLOR GRA_CLR_DARKGREEN, XBPSYSCLR_TRANSPARENT
The eXpress train is coming - and it has more cars.
Re: @ ... DCSAY ... SAYCOLOR ... SAYSIZE
Perfect.
Thanks Roger
Thanks Roger