S
Sony
These are the directions I recieved to generate a check mark, "+" or "-" in a
report, based upon conditions:
You won't be able to do this using one text control.
A text control can only be in one fontstyle.
So, add an unbound control to your report.
Set it's control source to:
=IIf([FormControl]<56,"-",IIf([SomeControl]>76,"+","")
Name this control "PlusMinus".
Add another unbound control to the report.
Set it's Font to Wingdings.
Set it's control source to
=Chr(253)
Make it Not Visible
Name this control "MyCheck"
Place it directly over the other control so it will print in the
correct position.
Size both control's to whatever size you want.
Code the Detail Format event:
MyCheck.Visible = [SomeControl]>56 and [SomeControl]<76
Only a -, +, or Check mark will print.
report, based upon conditions:
You won't be able to do this using one text control.
A text control can only be in one fontstyle.
So, add an unbound control to your report.
Set it's control source to:
=IIf([FormControl]<56,"-",IIf([SomeControl]>76,"+","")
Name this control "PlusMinus".
Add another unbound control to the report.
Set it's Font to Wingdings.
Set it's control source to
=Chr(253)
Make it Not Visible
Name this control "MyCheck"
Place it directly over the other control so it will print in the
correct position.
Size both control's to whatever size you want.
Code the Detail Format event:
MyCheck.Visible = [SomeControl]>56 and [SomeControl]<76
Only a -, +, or Check mark will print.