Dec 27, 2000 #1 JMANER IS-IT--Management Dec 15, 2000 31 US I have a “no phone” column in my table. If it is marked (it is yes/no) yes then I would like to make the label turn red when the record is viewed.
I have a “no phone” column in my table. If it is marked (it is yes/no) yes then I would like to make the label turn red when the record is viewed.
Dec 27, 2000 1 #2 DougP MIS Dec 13, 1999 5,985 US put this in the forms On_Current event If me![no phone] = 0 then me!Label.backcolor = vbred else me!Label.backcolor = vbwhite end if DougP, MCP dposton@universal1.com Ask me how Bar-codes can help you be more productive. Upvote 0 Downvote
put this in the forms On_Current event If me![no phone] = 0 then me!Label.backcolor = vbred else me!Label.backcolor = vbwhite end if DougP, MCP dposton@universal1.com Ask me how Bar-codes can help you be more productive.