I want to thank you for putting it bluntly RV
No thanks
Does this mean I have to re-create my forms and reports?
Basically, yes.
I don't think that that would take too much effort though.
What I would do is to introduce a couple of subforms.
Subforms merely represent that specific data refers to more then one occurence of other data.
In your case, you register a student's employee history.
A student can have had multiple Employee hence two tables, tblStudent and tblEmployee, having a one to many relationship.
Same applies to programs.
A student can enlist to more than one program.
So you'd have a table tblPrograms being included in a many to one relationship with tblStudent.
Also consider the use of list boxes, for instance one to reflect Gender.
Create a table tblGender coming with two values, M(ale) and F(emale).
Put a list box on your form based on a table tblGender so you can select the appropiate value.
Review the use of checkboxes.
Your current table is inconsistent, meaning you aren't using checkboxes where you normally would.
Example is your columns adultY and adultN.
In fact, these represent one column being of datatype Yes/No.
RV