I'm trying to create a listbox from a select that pick up information from 2 different table in the same database
As it should do.. the listbox put those 2 information in 2 row. Because of that when the user select one the other is selected at the same time but that's not what I want.
I want 1 row. I want the 2 informations to each have their own line so the use will be be able to select one or another.
Here's my select if that can help :
SELECT [Table850].[IdEngagementA], [Table807].[IdEngagementA], [Table850].[Description], [Table807].[Description]
FROM Table850, Table807
WHERE ((([Table850].[IdEngagementA])="00-000000-00"));
As it should do.. the listbox put those 2 information in 2 row. Because of that when the user select one the other is selected at the same time but that's not what I want.
I want 1 row. I want the 2 informations to each have their own line so the use will be be able to select one or another.
Here's my select if that can help :
SELECT [Table850].[IdEngagementA], [Table807].[IdEngagementA], [Table850].[Description], [Table807].[Description]
FROM Table850, Table807
WHERE ((([Table850].[IdEngagementA])="00-000000-00"));