treeview的中文文件夹显示的时候为什么是乱码?英文就可以?
我在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