FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for CA-Clipper alert custumization
Posts: 100
Joined: Wed Oct 04, 2006 04:50 PM
alert custumization
Posted: Mon Oct 09, 2006 11:55 PM

Hi,

Client request to customize the color of the alert dialog. I am trying to edit the alert.prg with the following code.

setTextColor(hDC,CLR_YELLOW) but the color doesn't change.

Is this the correct approach ?

How can I get the hDC of a oDlg?

TIA,

XHBCoder

STATIC FUNCTION DlgInit(oDlg, oFont, cMsg, aOptions, cTitle, nDefault, xIcon)

Local oGet, oBtn, oIcon
Local cSay, cLine
Local nMaxWidth, nMaxHeight, nWidth, nHeight, nLines, nFor
Local nBtnWidth, nBtnOffset, nBtnHeight, nBtnLength
Local lHScroll, lVScroll
// jdd
local hDC
hDC := oDlg:GetDC()
setTextColor(hDC, CLR_YELLOW)
//

:roll:

Posts: 44162
Joined: Thu Oct 06, 2005 05:47 PM
alert custumization
Posted: Tue Oct 10, 2006 09:08 AM

You may modify source\function\alert.prg this way:

DEFINE DIALOG oDlg TITLE cTitle FONT oFont COLOR "N/GR*"

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 100
Joined: Wed Oct 04, 2006 04:50 PM
alert custumization
Posted: Fri Oct 13, 2006 10:22 PM

FW,

Thanks. Works fine.

Continue the discussion