Sorry.
It is simply a title (label) that once the field [balance] is < 0.
This is not all the code..... but gives a good idea....
if me.balance <0 then
me.title.visible = true
me.title.fontcolor = vbred
me.title.fontunderline = true
me.title.fontbold = true
me.title.fontitalic = true
----MISSING ---- FONT SIZE ------
elseif me.balance between 0 and 100 then
me.title.visible = true
me.title.fontcolor = vbblack
me.title.fontunderline = false
me.title.fontbold = true
me.title.fontitalic = false
else
me.title.visible = false
end if
I guess the color, underline, bold and italic is just not enough. I was hoping to go from a 12 to 18 or so. At first I was thinking of just setting it up and going from visible to not, but it was requested that different formatting for different conditions. Therefore, I need to write the if statements and only the <0 MUST be set up to catch the users eye and that is where the font size comes in.