SCROLLING THE RECORDS

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two forms, main form and sub-form the main form contains the details
of students and the sub-forms contains the course details. I have changed the
name field in the form as a drop down menu by using combo box, once i select
the student name from the box it will display full details of that particular
student, but, if I scroll down or up the the mouse, it will give the next or
previous student details except the name, which is not moving with the
scrolling

How I can let the scroll down - up of the mouse to display the next
/previous student details including the name.
 
Based on your description, I suspect your combo box is an unbound control
used only to select a student. You could use the current event of your form
to keep the student's name in sync. If your combo is unbound, you probably
have a text box with the student's name that is bound. So the code in the
current event would be:

Me.StudentCombo = Me.StudentTextBox
 
Back
Top