> > 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.
>
> Yes, it is. But you can use a font that have it:
>
> ? CHR(0xA3) FONT [Symbol]
>
> -----------------
> Borislav Borissov
>
>
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller>
The only thing normal about database guys is their tables.---------------------------------------------------------------------
---------------------------------------------------------------------
I got a syntax error if I ran the code like this. It printed out ok though but not what I've been trying to accomplish. I'm not quite sure of knowing how to use the font that has it.
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,CHR(0xA3) FONT [Symbol]))
Tai Nguyen.