Hello,
I have a treeview with several root nodes added at design time. I am trying to add another node at runtime, however, the node does not appear.
I only want this node to be available if the user is an administrator.
Could anyone help me as too why and how my new node does not appear?
Thanks.
I have a treeview with several root nodes added at design time. I am trying to add another node at runtime, however, the node does not appear.
I only want this node to be available if the user is an administrator.
Code:
If g_bolAdmin Then
tvwconfig.Nodes.Add("UserInfo", "User Information")
'tvwconfig.Nodes("UserInfo").EnsureVisible()
End If
Could anyone help me as too why and how my new node does not appear?
Thanks.