delphi 7 里如何显示处理这个 实心圆点特殊字符 •

delphi 7 里怎么显示处理这个 实心圆点特殊字符 •
d7 都显示 ? 

再d2010 里一切正常 

问题是不能升级到d2010呢 




------解决方案--------------------
你怎么写的代码,2010都是unicode编码了,和D7不一样,D7可以使用宽字节 WideChar
------解决方案--------------------
可以定义为AnsiString
------解决方案--------------------
实心圆点是2個字符,D7改用widestring
var
s1:string;
s2:widestring;
begin
s1:='‧';
s2:='‧';
showmessage(inttostr(length(s1))); //結果是2
showmessage(inttostr(length(s2))); //結果是1
end;
------解决方案--------------------
在D7中使用全角符号正常喔