Moving Data From One Form To Another

  • Thread starter Thread starter PowerLifter1450
  • Start date Start date
P

PowerLifter1450

Hi all, I have a form that shows student information (primary key =
student ID). I have buttons on this form to bring up other forms that
can be used to register student for certain events. The first form is
data from a student table, while the ones for registering the student
are connected to a table s called Students Registered for an event
(primary key = Student ID + Event ID).

The problem is, then when you open the registration form, you have to
manually put in the Student ID as input. I would like to pull whatever
Student ID was currently showing in the Student form to be
automatically put into the registration form.

Any help is much appreciated. Thanks,

--Eric
 
Forms!NameOfRegistrationForm!NameOfControl =
Forms!NameOfStudentForm!NameOfControl
 
Back
Top