Display special character??

  • Thread starter Thread starter SF
  • Start date Start date
S

SF

Hi,

I want to display a Check/Uncheck box based on a True/False field value. I
put an unbound text, at the control source =IIf([Pi_DeductedFrom]=0,"Display
Uncheck","Display Check"). I did not receivce result that I want.

I know that the character of the Uncheck box is 254 (Wingdings font) but I
don't know how to replace the charater in the IIF function.

Could someone advice.

SF
 
Hi there

Try this line of code in your text box:

=IIf([Pi_DeductedFrom]=0,ChrW(253),Chr(254))

Then change the formatting of that text box to the Wingdings Font.

Cheers
 
Back
Top