注册 登录
编程论坛 PowerBuilder

treeview的中文文件夹显示的时候为什么是乱码?英文就可以?

coglasslin 发布于 2007-09-09 10:02, 2729 次点击

我在C:\Documents and Settings\hl\桌面\目录\ 下面设立了5个文件夹,例如办公室、市场部、public、财务部、物业部。可只有public才能正常显示,剩下四个文件夹都是乱码 请问怎么让中文文件夹正常显示?

首先在窗口建立两个控键tv_dir 类型treeview 为了显示树型目录 lb_file 类型listbox 为了显示相应目录中的文件
代码如下:


treeviewitem ltvi_new
int li_count, i
long ll_drive
String ls_DriverType

lb_dir.DirList("C:\Documents and Settings\hl\桌面\目录\",16)
li_count = lb_dir.totalitems()

//messagebox('',li_count)
//
IF li_count > 0 then
for i = 1 to li_count

//if i=2 then messagebox('', ltvi_New.Label)
ltvi_New.Label = lb_dir.Text(i)
if i=2 then messagebox('', ltvi_New.Label)
// ltvi_New.Data = i -1

This.InsertItemlast(0, ltvi_New)
next
This.selectitem(1)
End if

4 回复
#2
w4liyu2007-09-10 13:23
我这边怎么不会显示乱码?
#3
jianjunlena2007-09-10 13:23

树型窗口的字体用宋体就好了

#4
西风独自凉2007-09-10 17:01
看一下你的系統語言,如果是中文(台灣)
把系統的語言改為 中文(中國)

[此贴子已经被作者于2007-9-10 17:03:12编辑过]

#5
mingwangxing2007-09-26 01:49
如果你用ODBC数据源配置了数据库,可以试一下在其中选择advanced选项卡下在character中输入ISO_1,它用来指定数据显示格式.
1