On the form there is a calculation that is performed as the user enters data. For some reason, users are not noticing when "Over Budget" becomes visible, red, underlined, italic and bold.
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.