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

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
unixkd
Posts: 579
Joined: Thu Feb 11, 2010 1:39 pm

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

#1 Post 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 6079 times

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

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

#2 Post by rdonnay »

Try COLOR GRA_CLR_DARKGREEN, XBPSYSCLR_TRANSPARENT
The eXpress train is coming - and it has more cars.

User avatar
unixkd
Posts: 579
Joined: Thu Feb 11, 2010 1:39 pm

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

#3 Post by unixkd »

Perfect.

Thanks Roger

Post Reply