@ ... DCSAY ... SAYCOLOR ... SAYSIZE
Posted: Sat Jan 07, 2017 1:00 pm
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
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