I have noticed using SetDlgGradient() that my text fields are not always transparent .. here is the code that supports the picture .. specifically notice the 'active' text not transparent and hints throughout all the text that they are not transparent.
Rick Lipkin
- Code: Select all Expand view RUN
DarkGreyGrad()
...
...
REDEFINE GROUP oGrp1 ID 200 OF oGrps
oGrp1:SetFont( oFontB )
oGrp1:nClrText := nRgb( 7,7,224 ) // blue
REDEFINE SAY oSay1 PROMPT "Company" ID 110 OF oGrps UPDATE
oSay1:SetFont( oFontB )
REDEFINE SAY oSay2 PROMPT "Customer Id" ID 111 OF oGrps UPDATE
oSay2:SetFont( oFontB )
REDEFINE GROUP oGrp2 ID 201 OF oGrps
oGrp2:SetFont( oFontB )
oGrp2:nClrText := nRgb( 7,7,224 ) // blue
REDEFINE SAY oSay3 PROMPT "Customer Id" ID 112 OF oGrps UPDATE
oSay3:SetFont( oFontB )
REDEFINE SAY oSay4 PROMPT "Company Name" ID 113 OF oGrps UPDATE
oSay4:SetFont( oFontB )
REDEFINE SAY oSay5 PROMPT "Address" ID 114 OF oGrps UPDATE
oSay5:SetFont( oFontB )
REDEFINE SAY oSay6 PROMPT "City\St\Zip" ID 115 OF oGrps UPDATE
oSay6:SetFont( oFontB )
REDEFINE GROUP oGrp3 ID 202 OF oGrps
oGrp3:SetFont( oFontB )
oGrp3:nClrText := nRgb( 7,7,224 ) // blue
REDEFINE SAY oSay7 PROMPT "Bill to This Address" ID 116 OF oGrps UPDATE
oSay7:SetFont( oFontB )
REDEFINE SAY oSay8 PROMPT "Company Name" ID 117 OF oGrps UPDATE
oSay8:SetFont( oFontB )
REDEFINE SAY oSay9 PROMPT "Address" ID 118 OF oGrps UPDATE
oSay9:SetFont( oFontB )
REDEFINE SAY oSay10 PROMPT "City\St\Zip" ID 119 OF oGrps UPDATE
oSay10:SetFont( oFontB )
REDEFINE SAY oSay11 PROMPT "Phone\Fax" ID 120 OF oGrps UPDATE
oSay11:SetFont( oFontB )
REDEFINE SAY oSay12 PROMPT "Contact" ID 121 of oGrps UPDATE
oSay12:SetFont( oFontB )
REDEFINE SAY oSay13 PROMPT "E-Mail" ID 122 OF oGrps UPDATE
oSay13:SetFont( oFontB )
REDEFINE SAY oSay14 PROMPT "Account Executive" ID 123 of oGrps UPDATE
oSay14:SetFont( oFontB )
REDEFINE SAY oSay15 PROMPT "Active" ID 124 of oGrps UPDATE
oSay15:SetFont( oFontB )
//--------------------
Func DarkGreyGrad()
SetDlgGradient({{ 0.80, 14671839, 4144959 },{ 0.1, 4144959, 14671839 }})
Return(nil)