I have two forms with msflexgrid to display data with datasource from datatable.
I want to drag and drop rows between two form each other. I saw this topic and edited but it doesn't work.
Drag data from DG and other controls to another DG in vb.net
This error:

Please help me!
This is my form1 form1 Code form 1:
Public Class frm1 Private mdt As New DataTable("Test") Private downHitInfo As C1.Win.C1FlexGrid.HitTestInfo = Nothing
End Class
This is form 2: Form 2 Code of form 2:
Public Class frm2 Private Sub frm2_Load(sender As Object, e As EventArgs) Handles MyBase.Load With flg2 .DragMode = DragModeEnum.Manual .DropMode = DropModeEnum.Manual End With End Sub
End Class