I have a listbox, which when clicked on fills a label to show user what they have selected. On clicking the list, another fills using a query. However the selection list refuses to pick all records. I have removed all other fields from the query in case there was a null somewhere, but it still will not work.
A Record it will not work on is:
1st Stage: Lucon - Les Sables d'Olonne
The query is
Me.LP1.RowSource = "SELECT TXMASTERS.EpisodeTitle, " _
& " FROM (TXMASTERS INNER JOIN TXCLIPS ON TXMASTERS.ID1=TXCLIPS.ID1)" _
& "WHERE TXMASTERS.EpisodeTitle Like '" & "*" & Me![IP2].[Caption] & "*' "
Me.LP1.Requery
I thought it might be something to do with characters in the caption - 1st Stage: Lucon - Les Sables d'Olonne
Thanks
A Record it will not work on is:
1st Stage: Lucon - Les Sables d'Olonne
The query is
Me.LP1.RowSource = "SELECT TXMASTERS.EpisodeTitle, " _
& " FROM (TXMASTERS INNER JOIN TXCLIPS ON TXMASTERS.ID1=TXCLIPS.ID1)" _
& "WHERE TXMASTERS.EpisodeTitle Like '" & "*" & Me![IP2].[Caption] & "*' "
Me.LP1.Requery
I thought it might be something to do with characters in the caption - 1st Stage: Lucon - Les Sables d'Olonne
Thanks