Hi,
I'm stuck on some tables from MS Access. I have the following:
Items: itemId(PK), Naam
Combo: comboId(PK), Naam
Combineren (combination): ID(PK), itemId(FK), comboId(FK)
I want my app to show ComboNaam with ItemsNaam in my dataGridView in the following form:
string queryString = "SELECT Combo.Naam FROM Combo ORDER BY Naam";
LoadDG(queryString);
*NOTE* This code already works fine so don't worry about the dataGridView itself and suchs
Any idea's??