I have a small problem, when I use the below code to remove a row from a flyGrid it closes my current windows form.
Dim selection As NodeBase() = Me.flyGrid1.Rows.GetSelection
If (selection.Length = 0) Then
msgbox("Linked item has not been selected")
Exit Sub
End If
Me.flyGrid1.Selected.Remove()
I'm sure I must be doing something wrong.....
Thanks in advance
Simon