Please help,
I am trying to replace combo boxes in my forms, to text boxes and..
i have a particular combobox with rowsource
then replacing with DlookUp when turn combo box to text box , all i get is !Typo or !Error using
where do i miss?
I am trying to replace combo boxes in my forms, to text boxes and..
i have a particular combobox with rowsource
Code:
SELECT Tbl_Courses.courseID, Tbl_CourseNames.CourseName FROM Tbl_CourseNames INNER JOIN Tbl_Courses ON Tbl_CourseNames.coursenameID = Tbl_Courses.coursenameID;
then replacing with DlookUp when turn combo box to text box , all i get is !Typo or !Error using
Code:
=DLookUp("CourseName";"Tbl_CourseNames";"coursenameID =" & DLookUp("coursenameID";"Tbl_Courses";"courseID=" & [courseID]))
where do i miss?