Its the point ! Remember I try to add this character : ?
HTML Unicode Value : "& # 30003;"
HEX Unicode Value : "7533"
With this :
Set cRow = cTable.AddRow2( DPDF_Font_SinoTypeSongLight, 12, "48626F", "FFFFFF" )
I tried :
Set cCell = cRow.AddCell2( "\u7533", , , , , 2 )
Or Set cCell = cRow.AddCell2( Unescape('\u7533'), , , , , 2 )
> display '\u7533'
Or, trying through HTML engine :
Call cCell.SetFormattedTextArea( "& # 30003;", 0, 0, 536, 50, DPDF_Font_SinoTypeSongLight, 12, False )
> error message : error '80131500' : FontFamily specified not available.Please add FontFamily to the document
> logical if its not a family
So trying creating a family with the simsun font :
> display : "& # 30003;" with a first little square (character not found, I guess).
I cannot write in my ASP code :
Set cCell = cRow.AddCell2( "?", , , , , 2 )
Because my source files encoding does not allow it. So I have to write "something" that can be understood as a special character, just like the browser display "?" when I write "response.Write("& # 30003;")"
Best Regards,