> > I've been trying to make this "less than or equal to" symbol to show on a foxpro textbox and then insert into the table. Is it possible to do that because Foxpro is not supported the unicode (hex) symbols. Here is my code below. Do you know how to insert the "less than or equal to" symbol to the cursor below?
> >
> > CREATE cursor Chars (NumberVal I, CharVal C(1))
> > FOR x = 33 TO 255
> > INSERT INTO Chars (NumberVal, CharVal) ;
> > VALUES (x, CHR(x))
> > ENDFOR
> >
> > INSERT INTO Chars (NumberVal, CharVal) VALUES (2264,"Your code"))
> >
> > thanks for the help.
> >
> > Tai Nguyen.
>
>
> you can use this
>
> ? CHR(243) FONT [Foxfont]
>
>
> with your code you can easily reproduce that but with foxfont fontname
>
> 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 "foxfont"
>
> see at 243....you see your sign.
>
> you can also see this code in
Message ID: 215938>
> Dont rate please.its only for the pleasure to help.Give me only a feed back.
> Yousfi Benameur
**************************************************
**************************************************
If I added these lines of code at the bottom
SELECT Chars
thisform.text1.Value = Chars.CharVal
If populated the original symbol (not the foxfont's one). I need to make it displayed on the textbox and the user can words into the textbox also. After he or she gets done, the user can click the "Add" button to add into the table. This is the whole process I've been trying to do. Thanks.
Tai Nguyen.