Hi Cor,
Sorry Now im really confused. How do I use this example on my project? You
example dosn`t even have a datagrid on it

Ive found this code that i`ve been playing with, but this on`t work either,
searching the net for Datagrid, Textbox Binding with Currency Manager dosn`t
throw me much help either

I could post my full code if that would help?:
Would it help of shold i use your example? Only thing with the example below
is I don`t know how to call it

I mean it sits there, but what triggers it
when i click on a Row in my datagrid?
Private Sub dgdSystemUsers_CurrentCellChanged(ByVal sender As System.Object,
ByVal ne As System.Windows.Forms.NavigateEventArgs)
'Get the row number on the DataGrid
Dim iRownr As Integer = Me.dgdSystemUsers.CurrentCell.RowNumber
'Get the column number on the DataGrid
Dim iColnr As Integer = Me.dgdSystemUsers.CurrentCell.ColumnNumber
'Get the content of the cell in the clicked cell on the Datagrid
Dim cellvalue1 As Object = Me.dgdSystemUsers(iRownr, iColnr)
'Get the next cell content in the same row
Dim cellvalue2 As Object = Nothing
Try
cellvalue2 = Me.dgdSystemUsers(iRownr, iColnr + 1)
'Display (cellvalue1+cellvalue2) in TextBox "textBox1"
Me.lblNavLocation.Text = cellvalue1.ToString() + " " + cellvalue2.ToString()
Catch ex As Exception
'The exception occurs here because we increment iColnr+1
'Delete or comment MessageBox.Show-line you won´t get the error message
MessageBox.Show("No further columns after the last column-->> " +
ex.Message, "STOP")
cellvalue2 = Me.dgdSystemUsers(iRownr, iColnr - 1)
'Display this time (cellvalue2+cellvalue1) in TextBox
Me.lblNavLocation.Text = cellvalue2.ToString() + " " + cellvalue1.ToString()
End Try
End Sub
Many Thanks
NSC
"Cor Ligthert [MVP]" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Wizard,
>
> My expirience is that this one works on places where the ones you name
> don't work.
>
> You can by the way that one as well use with the datatview inside the
> datatable.
>
> Than the datasource becomes dt.defaultview and the setting to cma as well
> dt.defaultview. (What I prefer, however I had written simple so I kept it
> as simple as possible).
>
> So try it and you see how easy it is in use.
>
> :-)
>
> Cor
>