D
dwaynesworld013
I currently have a form where the user selects a course from a combo box.
After selecting the course, the course hours are stored in the underlying
table. I would like for additional information to be stored in the table
also but whenever I enter information into the form , the additional
information is not populating. This is the code that I am using:
Private Sub Course_Name_AfterUpdate()
Me.[Course Hours] = Me.[Course Name].Column(2)
Me.[New Hire Course] = Me.[Course Name].Column(3)
Me.[Cust Satisfaction Course] = Me.[Course Name].Column(4)
Me.[Technical/Skill Building Course] = Me.[Course Name].Column(5)
End Sub
All if the above information is coming from a Select query:
SELECT tblCourseData.[Course ID], tblCourseData.[Course Listing],
tblCourseData.[Course Hours], tblCourseData.[New Hire Course],
tblCourseData.[Cust Satisfaction Course], tblCourseData.[Technical/Skill
Building Course] FROM tblCourseData ORDER BY tblCourseData.[Course Listing];
Can anyone help me?
After selecting the course, the course hours are stored in the underlying
table. I would like for additional information to be stored in the table
also but whenever I enter information into the form , the additional
information is not populating. This is the code that I am using:
Private Sub Course_Name_AfterUpdate()
Me.[Course Hours] = Me.[Course Name].Column(2)
Me.[New Hire Course] = Me.[Course Name].Column(3)
Me.[Cust Satisfaction Course] = Me.[Course Name].Column(4)
Me.[Technical/Skill Building Course] = Me.[Course Name].Column(5)
End Sub
All if the above information is coming from a Select query:
SELECT tblCourseData.[Course ID], tblCourseData.[Course Listing],
tblCourseData.[Course Hours], tblCourseData.[New Hire Course],
tblCourseData.[Cust Satisfaction Course], tblCourseData.[Technical/Skill
Building Course] FROM tblCourseData ORDER BY tblCourseData.[Course Listing];
Can anyone help me?