Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a datagridview bound to a datatable and it works great. However, when I try to programmatically change the datasource property to a different existing table, I get a blank datagridview with no cells. Although I have tried many bits of code to remedy the problem, this is the one that I felt should do the trick:

dgvThresholds.DataSource = SquirrelDataSet.Tables("Threshold market 12")
ThresholdMarketTableListTableAdapter.Update(SquirrelDataSet.Tables("Threshold market 12"))
dgvThresholds.DataSource = ThresholdMarketDefaultBindingSource
dgvThresholds.Refresh()

Any advice on how to get this thing to work? Seems simple...

share|improve this question

2 Answers

Try this:

dgvThresholds.DataSource = SquirrelDataSet.Tables("Threshold market 12")
ThresholdMarketTableListTableAdapter.Update(SquirrelDataSet.Tables("Threshold market 12"))
dgvThresholds.Columns.Clear()
dgvThresholds.DataSource = ThresholdMarketDefaultBindingSource
dgvThresholds.AutoGenerateColumns = True
dgvThresholds.Refresh()
share|improve this answer
I still get a grayed-out datagridview. – user898642 Nov 30 '12 at 17:37
What data type is ThresholdMarketDefaultBindingSource at the point of binding? – SSS Dec 2 '12 at 23:43
Not sure what you mean by data type of the binding source. If you mean what data type is it binding to, there are four columns consisting of 2 string fields and 2 decimal fields. – user898642 Dec 3 '12 at 14:31
To put it another way: Is ThresholdMarketDefaultBindingSource a DataTable? – SSS Dec 4 '12 at 0:04
No, it is a binding source attached to a table. – user898642 Dec 4 '12 at 12:58
show 1 more comment

Okay, here is what I came up with:

Dim bindingSource As BindingSource
bindingSource = New BindingSource()
bindingSource.DataSource = Threshold_market_6TableAdapter.GetData
dgvThresholds.DataSource = bindingSource
bindingSource.ResetBindings(False)

The problem now is that the third line is not able to be set to the value the user chooses in the combobox. In other words, I want the bindingsource.datasource property to be set to Threshold_market_6TableAdapter if that's what the user chose in the combobox, but Threshold_market_2TableAdapter if that is what they chose. I tried setting the value to a variable and useing bindingSource.DataSource = VariableName and even bindingSource.DataSource = VariableName.GetData but neither will cause the datagridview to populate. Suggestions?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.