Hi Clay,
Thx for u r response.
Here is my sample appluication.
Assume, I am having 10 rows in the grid bounded. If the user selects row number 3, and clicks moveup, the entire row contents should be moved to row 2 and the row 2 contents should be moved to row 3. same as move down.
Thx in advance.
Ram
> What version of the grid dll's are you using?
>
> With 1.5.2.0, I just dropped a GridDataBoundGrid on a form, hooked it to a DataTable, and the below seems to work as expected. What are you doing differently? Can you attached a sample project showingthe problem?
>
>
> Private Sub button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click
> Me.gridDataBoundGrid1.CurrentCell.MoveUp(1)
> End Sub 'button1_Click
>
>
> Private Sub button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button2.Click
> Me.gridDataBoundGrid1.CurrentCell.MoveDown(1)
> End Sub 'button2_Click
>
>