.Net中在识别dev控件treeList时,我想取得Cell的值。使用如下函数: Public Function GetTreeListCellValue(byval swfObject, byval rowIndex, byval fieldName)
Dim val
Set focusedNode = swfObject.Object.getNodeByVisibleIndex(rowIndex)
val = focusedNode.GetValue(filedName)
GetTreeListCellValue = val
End Function
断点监视 “focusedNode.GetValue(filedName)”是有值的 但是val = focusedNode.GetValue(filedName)执行后,val始终是 Empty 不知道是怎么回事