以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 请问:如何得到内置筛选树的FullName? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=143961) |
-- 作者:y2287958 -- 发布时间:2019/12/7 12:10:00 -- 请问:如何得到内置筛选树的FullName? 如题。 用以下代码提示错误 For Each a As OBJECT In Tables("表B").grid.Parent.controls For Each b As OBJECT In a.controls If B.text = "筛选树" Then trv = b.controls(0).controls(0) Output.Show(trv.SelectedNode.FullName) End If Next Next 提示如下: --------------------------- 版本:2019.12.3.1 --------------------------- 代码执行出错,错误信息: System.MissingMemberException: 未找到类型"OOoo0O_0"的公共成员"FullName". 在 Microsoft.VisualBasic.CompilerServices.Symbols.Container.GetMembers(String& MemberName, Boolean ReportErrors) 在 Microsoft.VisualBasic.CompilerServices.NewLateBinding.ObjectLateGet(Object Instance, Type Type, String MemberName, Object[] Arguments, String[] ArgumentNames, Type[] TypeArguments, Boolean[] CopyBack) 在 Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateGet(Object Instance, Type Type, String MemberName, Object[] Arguments, String[] ArgumentNames, Type[] TypeArguments, Boolean[] CopyBack) 在 UserCode.Test() --------------------------- 确定 --------------------------- [此贴子已经被作者于2019/12/7 12:18:20编辑过]
|
-- 作者:有点蓝 -- 发布时间:2019/12/7 13:57:00 -- Output.Show(trv.SelectedNode.FullPath) |
-- 作者:y2287958 -- 发布时间:2019/12/7 17:06:00 -- FullPath是可以,但我要得到的是FullName,如何得到?或者FullPath怎么转换成FullName? |
-- 作者:有点蓝 -- 发布时间:2019/12/7 17:19:00 -- 对于内置筛选树,FullPath就是FullName |
-- 作者:y2287958 -- 发布时间:2019/12/7 21:10:00 -- |