How do i make a dropdown box populated from a MS Access database.Ive searched the faqs etc but have not found an answer i can work with.
The first dropdown would show a straight list from a table
'Select CourseID, from Coureslist',
Making a selection in this box would then get the details from the following query
'SELECT Applications.*, Courselist.*, Coursetitles.*
FROM Coursetitles RIGHT JOIN (Courselist RIGHT JOIN Applications ON Courselist.CourseID = Applications.CourseID) ON Coursetitles.CourseCode = Courselist.CourseCode
WHERE Courselist.CourseID ='CID'
Courselist = course ID numbers
Coursetitles = titles of the course, has a unique ID containd in the table 'Courselist'
Applications = provids further title information linked to other table (ignore)
Thanks for your help
The first dropdown would show a straight list from a table
'Select CourseID, from Coureslist',
Making a selection in this box would then get the details from the following query
'SELECT Applications.*, Courselist.*, Coursetitles.*
FROM Coursetitles RIGHT JOIN (Courselist RIGHT JOIN Applications ON Courselist.CourseID = Applications.CourseID) ON Coursetitles.CourseCode = Courselist.CourseCode
WHERE Courselist.CourseID ='CID'
Courselist = course ID numbers
Coursetitles = titles of the course, has a unique ID containd in the table 'Courselist'
Applications = provids further title information linked to other table (ignore)
Thanks for your help