> >
> > *********************************************************************************************
> > *********************************************************************************************
> >
> > Hello again,
> >
> > Well, I got the symbol displayed on the text box ok. The only two issues that I'm facing right now are to store this "Less than or Equal to" symbol in the table and to show this symbol on the report. I have tried to open the report designer to change the font to FoxFont but from the list for me to select, there was no FoxFont at all. I even tried this again after I received your message. Here are the steps that I took
> >
> > 1/ Opened the report designer
> > 2/ Right-clicked on it to go to Properies
> > 3/ Clicked on the "Page Layout" tab, then selected a font from a list to insert into the Default font text box.
> >
> > I couldn't find FoxFont for some reason. And I think the value on the text box was being inserted into the table as the ascii code instead and there is a way if possible to convert that as it is being inserted into so that it will insert the correct symbol. Have a nice day to you.
> >
> > Tai Nguyen.
>
>
> Yes you are right, foxfont is not in the fontname list in report designer.
> then use the font symbol it exists.
>
>
> CREATE cursor Chars (NumberVal I, CharVal C(1))
> FOR x = 33 TO 255
> INSERT INTO Chars (NumberVal, CharVal) ;
> VALUES (x, CHR(x))
> ENDFOR
> brow font "symbol"
>
> your values are in 163 &179 as confirmed by Koen.
>

>
> Dont rate please.its only for the pleasure to help.Give me only a feed back.
> Yousfi Benameur
*******************************************************************************************
*******************************************************************************************
I built a test case and presented that to them and they all seemed to be happy. But after I built with the live one, the table itself had a problem storing the "Greater than or Equal to" symbol which was a "superscript 3" character. Instead of storing a "superscript 3" character, the table stored a "3" character. This was why I couldn't get the "Greater than and Equal to" symbol to work. This doesn't make sense at all because this is the table I'm having a problem with and others seem to be working fine. I'm thinking like "could this table in the database causing this problem?" Please help me to fix this if you know. Thanks.
Tai Nguyen.