<TreeListView> TreeListView To DataTable
2020. 2. 13. 17:21ㆍC#
728x90
반응형
<Code>
Private Sub TreeListViewToDataTable(dt As DataTable, ByRef nodes As TreeListNodeCollection)
For Each node As TreeListNode In nodes
If node.Level = 3 Then
Dim fullPath As String = node.FullPath
Dim strNodes() As String = fullPath.Split("\")
Debug.Print(node.Nodes.Item(0).ToString)
For Each s As TreeListNode In node.Nodes
dt.Rows.Add(strNodes(0), strNodes(1), strNodes(2), strNodes(3),
s.ToString, s.SubItems.Item(0))
Next
End If
TreeListViewToDataTable(dt, node.Nodes)
Next
End Sub
728x90
반응형
'C#' 카테고리의 다른 글
C#, VB.NET <ListBox> ListBoxItem 각 각 글자색 다르게 하기.listbox fore color 지정하기 (0) | 2020.02.18 |
---|---|
Chart 용어정리 (MS Chart 및 기타 차트 모두) (0) | 2020.02.17 |
<TreeListView> Column에 Average 값 넣기 (0) | 2020.02.13 |
C#/VB.NET 특정 로우 선택하기 (0) | 2020.01.21 |
C#/VB.NET Panel 안의 Control 반복하여 원하는 Control 찾기 (0) | 2020.01.14 |