I have a datagrid that I use to get data from a table and a multiline textbox, tbdefine, that is used to display one of the columns from this table that I wanted to show separate from the grid. I bound the textbox to the dataview, dv, as follows:
Me.tbDefine.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.dv, "definition"))
The definition column shows up in tbDefine when my grid first loads and the first row is highlighted, but when I click on another row in the datagrid the text in the textbox doesn't change.
What am I missing?
Thanks for your help.