V
Viktor via AccessMonster.com
I have the following query:
SELECT Students.stdFirst, Students.stdLast, Courses.crsName
FROM Students INNER JOIN (Courses INNER JOIN CoursesTaken ON Courses.crsID =
CoursesTaken.crstkCourseID) ON Students.stdID = CoursesTaken.crstkStudentID
WHERE (((Courses.crsName)=[]));
Obviously, when I run the querry, first I get an input box where I should
specify the name of the course. Is it possible to change this input box with
a combobox that would show the available courses?
Thanks,
Viktor
SELECT Students.stdFirst, Students.stdLast, Courses.crsName
FROM Students INNER JOIN (Courses INNER JOIN CoursesTaken ON Courses.crsID =
CoursesTaken.crstkCourseID) ON Students.stdID = CoursesTaken.crstkStudentID
WHERE (((Courses.crsName)=[]));
Obviously, when I run the querry, first I get an input box where I should
specify the name of the course. Is it possible to change this input box with
a combobox that would show the available courses?
Thanks,
Viktor