On Thu, 12 Mar 2009, Barry Jackson wrote:

Hi,

> What character encoding settings in Linux will display this correctly using 
> the Clipper graphics characters?
> It did work but now it uses the wrong character set.

Nothing has changed here in Harbour code.
Check your terminal settings (used font, iso/utf mode).

> Same problem with any non-GUI app that uses graphic chars.
> #include "box.ch"
> procedure main()
> local c:=2,i:=0,r:=2
> scroll()
> @1,1,18,97 BOX B_DOUBLE
> do while i<255
>   for c = 2 to 96
>     @  r,c SAY STR(i,3,0)+" "+CHR(i)
>     i=i+1
>     c=c+5
>   next
>   r=r+1
> enddo
> ?
> wait SPACE(37)+"Press any key to exit"
> return

Look at tests/gtchars.prg.

best regards,
Przemek
_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to