Hello.
Anyone have any idea why could the FullRowSelect property not be working? I have the property set to True and even try to change it with a button switch but it stays the same anyway (like it's False even when it's True).
Switch code:
Anyone have any idea why could the FullRowSelect property not be working? I have the property set to True and even try to change it with a button switch but it stays the same anyway (like it's False even when it's True).
Switch code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click |
Me.tree.FullRowSelect = Not Me.tree.FullRowSelect |
Me.lblTest.Text = Me.tree.FullRowSelect.ToString |
End Sub |