Link to home
Start Free TrialLog in
Avatar of VBsqlGuy
VBsqlGuy

asked on

Populate ComboBox from SQL Table, based on other ComboBox

I have seen this question all over the general Internet, and on E.E, but have not seen a viable answer.  I am using Visual Studio 2010, building a Windows Form project with Visual Basic.  I have a ComboBox, where the user selects the Site (cboSite).  I want the cboLines ComboBox to contain only those Lines associated with the Site chosen (from the Lines table). The form loads with all ComboBoxes populated, and the user has the chance to change the default entries. The default Site comes from a Global Public variable, chosen at time of login.
I've seen some suggested code involving GetConnectionString, SQLConnection(ConnectionString), SQLDataAdapter, etc.   Everything I have tried in my project get's rejected.

I assume I will put some code in the Form Load event, to populate with the default, then put the same code in the SelectedIndexChanged event, in case the user selects a new Site.

I set strSite = cboSite.selectedvalue, and I setup a SQL string like this;
strSQL = "Select Line from Lines Where Site = '" & strSite & "'"

Other than that, I'm pretty lost.
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Avatar of VBsqlGuy
VBsqlGuy

ASKER

Well, that is an interesting article, and is food for thought.  However, it is from 2007, and does not involve SLQ server at all.  It builds a couple of data tables on its own, and uses those.  In Visual Studio 2010, I have things like TableAdapterManager, FillBy, LinesTableAdapter, LinesSitesLinesBindingSource, all feeding from my Production_DataSet.  Since I have a SQL server database, with over 100 tables, I need to know how to handle all these BindingSources and TableAdapters, as they relate to filling a ComboBox as filtered by a previous ComboBox.
The article is using self made datatable because it is a lot easier for people to reproduce without setting complex environment. Replace my data tables with you'd no matter how they are filled.
Most of my difficulty is using Visual Studio's TableAdapter,  BindingSource,  and FillBy tools.  The article in no way mentions these things, and is therefore not very helpful.
If you are not willing to invite using binding source, means you would have to recall the database to filter the combobox again, if this is what you want, then I don't quite get what problem you are facing.

Say: depending on selected "site" your combobox2 should have a list of three, A,B and C, so where you define this? Inside the database?

If so, then easily call another datareader to filter what you should get based on the "selected site" and rebind or repopulate the combobox2. (should by your line table).

For this to work, obviously not considering having other tools available, you must let the combobox1 to be "auto posting", so any changes on this combobox, it reloads.
I'm sorry that I don't understand your English very well.  But, I will use a binding source, I just need to know how to use that properly, in this instance with Visual Studio.

"Easily call another datareader to filter" ?  OK, if that is easy, how is it done?

How do you set a combobox to "auto posting"??
ASKER CERTIFIED SOLUTION
Avatar of VBsqlGuy
VBsqlGuy

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
what is a solution for you is not for everybody else!

BTW, everything you are doing through the UI, my article does something very similar by code!
Everything I found in EE and in Google searches in general, did not even get me close to a solution.  My question here was barely glanced at, and the other answers did not lead me in the right direction.  I thought I stated the question very clearly, but the other answers seemed to miss my main points entirely  (English not being first language may be a problem).
I totally figured out the answer on my own, and put what I felt was a complete actual answer to this question in EE, in order to help others who were as frustrated as I with the incomplete answers found to date.
I think EE should setup a Visual Studio expert area specifically, with sub areas for the different versions.
That's not the point. Guiding you are all experts, but you are programming using an end-user's concept, that's why communication breakdown.

Good programmers usually don't use UI components and preset settings there, those are idiot proved objects.