changing textbox color

  • Thread starter Thread starter Guest
  • Start date Start date
Hi,

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

dn
 
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
 
Back
Top