mattloflin
MIS
I created a form and when I try to conditional format it it doesn't work...
here is what i have
strDestination = me.destination
select case
case "Print Not Available"
me.destination.backcolor = vbblack
end select
that doesn't work HOWEVER this does
select case
case "Print Not Available"
me.destination = "Works"
end select
so it will allow me to change value but not backcolor or anything like that
here is what i have
strDestination = me.destination
select case
case "Print Not Available"
me.destination.backcolor = vbblack
end select
that doesn't work HOWEVER this does
select case
case "Print Not Available"
me.destination = "Works"
end select
so it will allow me to change value but not backcolor or anything like that