Sorry i think i`ve explained this wrong. I`ll try a bit better:
As I said my SitesID Feild in ArcirisUsers Table is a Lookup to the Sites
Feild in my Sites Table, how do i get a combobox to look at the Sites Feild
in the Sites Table?
I`ve set my datasource to dsArcirisUsers which I built from the Following
SQL Statement in my Data Adapter:
SELECT ArcirisUsers.Usersname, ArcirisUsers.POSID,
ArcirisUsers.POSAccess, ArcirisUsers.[Password], ArcirisUsers.LiveDate,
ArcirisUsers.BomID,
ArcirisUsers.BomAcc, Sites.[Site Name],
ArcirisUsers.ArcirisUsersID, Sites.SitesID
FROM ArcirisUsers INNER JOIN
Sites ON ArcirisUsers.SitesID = Sites.SitesID
However when I click on the ComboBox it lists the sites multiple times, as
it is looking at the Feild in ArcirisUsers, not in Sites if you get what i
mean?
Do I need to create a seperate Dataadapter and Dataset for the Sites table?
Cheers
Si
When I assign