[ xxxrugby @ 16.11.2006. 08:48 ] @
Imam popunjen DataGrid filled s DataTable.
I sad nema DataGrid View nego ima samo cisti DataGrid. Nema zato jer radim s TurboExplorer koj je free pa eto tako manje opcija.

E sad kako da uzmem s trenutnog aktivnog ROW-a podatke i prebacim ih u TexBox-ove.

Znaci nesto kao ovo u data grid View-u

txtLokacija.Text = DataGridView.CurrentRow.Cells["Lokacija"].Value.ToString();
[ xxxrugby @ 16.11.2006. 14:34 ] @
Rijesio

DataView dv = new DataView(AAAADataTable);
DataGridCell dc = AAAADataGrid.CurrentCell;
this.textBox1.Text = dv.Table.Rows [dc.RowNumber][0].ToString();