Have a form that displays student information and the address. My table structure is as follows:
Student
ID - PK - AutoNumber
Name - Short Text
Age - Int
Address
ID - PK - AutoNumber
Student ID - FK - Number
Door No - Int
Address - Text
Student table has student id. Address table has a FK which is Student ID.
In my form I want the user to enter the student name and address
information and this should be stored into multiple tables from this single form. ( I dont want to use sub form).
How can do the above? Do I need to write code in VBA and use unbound form?
Please provide inputs