-- 作者:zpx_2012
-- 发布时间:2012/12/27 9:06:00
-- 目录树的fullpath改成fullname后此功能如何实现?
各位老师,
如题,在目录树的删除按钮上用fullpath没有问题,若用fullname则会报错:
Dim pth() As String = nd.FullPath.Split("\\")
\'Dim pth() As String = nd.FullName.Split("\\")
Select Case nd.Level Case 0 DataTables("单据流程").DeleteFor("表名= \'" & pth(0) & "\'") Case 1 DataTables("单据流程").DeleteFor("表名 = \'" & pth(0) & "\' And 流程 = \'" & pth(1) & "\'") End Select nd.Delete()
此主题相关图片如下:360截图20121227090440361.jpg
如果要用fullname如何修改才可以?
谢谢!
|