"PAID" background on paid invoice>? (1 Viewer)

Durien512

Registered User.
Local time
Today, 03:28
Joined
Dec 14, 2005
Messages
61
how can i have the letters PAID in red running accross a form if the balance is '0'?????

i been thinking about it and cant even come up with any logic other than

having a invisible "PAID" that if the balance >0 then make visible?
does that make any sense?

and how would i code it?

Thanks!
 

Banana

split with a cherry atop.
Local time
Today, 03:28
Joined
Sep 1, 2005
Messages
6,318
In the "On Format" event of whatever section you want PAID to appear on-

Code:
If me.txtBalance=0 Then me.Paid.Visible=True

and have your Paid object properties Visible=False.
 

Users who are viewing this thread

Top Bottom