DynaPDF saving text files with tables

Hi
I just started learning to use DynaPDF I’m tryint to save a simple text PDF that contains a text table, but I get this warning:

300:writeftext: font: “CourierNewPSMT” 11 glyphs not found!

And then table is drawn with question marks instead of lines. wich looks horrible and you barely see that it’s a table

The only thing it comes to my mind is that maybe I’m not setting the UTF8 encoding that allows unicode characters ?
How do I do this ?

thanks

Please use unicode encoding and a font supporting characters.

e.g.

call tbl.SetFont -1, -1, "Arial Unicode MS", 0, true, pdf.kcpUnicode call tbl.SetFontSize -1, -1, 12 call tbl.SetCellText rowNum, 0, pdf.ktaLeft, tbl.kcoTop, text

So tbl.SetFont with -1/-1 sets font for all cells to use Arial Unicode MS with unicode encoding.
Using cp1252 like some examples will now allow all characters.