Hi,
I am a beginner,
like to working with ado net
I have a datagridview
If i selecting a row in the datagrid i want to have returning the selected
data into a textbox "name" for example "from the column "name" "
Hope someone can help me
Thanks in advance
Marc
Brian Tkatch - 07 Aug 2006 14:01 GMT
> Hi,
>
[quoted text clipped - 10 lines]
> Thanks in advance
> Marc
Use DataBindings.
Something like:
textBox1.DataBindings.Add("Text", DataGridView.DataSource, "name")
B.
Cor Ligthert [MVP] - 07 Aug 2006 16:31 GMT
Scotty,
Have a look at this sample,
http://www.vb-tips.com/dbpages.aspx?ID=5f4a0f68-a3b6-4fc8-8aff-587f730fa118
I hope this helps,
Cor
> Hi,
>
[quoted text clipped - 10 lines]
> Thanks in advance
> Marc