changing textbox color

D

dn

Hi,

thanks,..
but can I change the appearence of one textbox according to value change of
another textbox.

dn
 
R

Ron2006

Yes you can.

in the afterupdate event of the changing txtbox

if (condition) then
me.txtboxtobechangedname.forecolor = (a number for color
etc. you can get to forecolor backcolor, bolding, font etc
essential anything that is in the format tab of the txtbox
you want to change.
endif
 
Top