JKDeveloper0718
Programmer
I have a subform inside my main form that is populated from table with the record source as follows
SELECT tblMember.* FROM tblMember WHERE (((tblMember.ApplicationId)=ApplID)) ORDER BY tblMember.MemberNumber;
the problem I have is it populates the information fine for each record in the main and a person may have more than one member in this subform but I cannot add new records from the subform.
I have turned the Data Entry feature to True and the form is in datasheet view looking like a table. When I have changed the Data Entry attribute to true the record set goes blank for each applicants subform info.
Any suggestion on Data Entry from the subform that will still allow it to have the previous records displayed would be nice. Below is look at the subform
Member# Last Name First Name MI BirthDate ....
01 Kress James N 07/18/1987
02 Fress John W 08/15/2000
--New Entry Here --- - ----
SELECT tblMember.* FROM tblMember WHERE (((tblMember.ApplicationId)=ApplID)) ORDER BY tblMember.MemberNumber;
the problem I have is it populates the information fine for each record in the main and a person may have more than one member in this subform but I cannot add new records from the subform.
I have turned the Data Entry feature to True and the form is in datasheet view looking like a table. When I have changed the Data Entry attribute to true the record set goes blank for each applicants subform info.
Any suggestion on Data Entry from the subform that will still allow it to have the previous records displayed would be nice. Below is look at the subform
Member# Last Name First Name MI BirthDate ....
01 Kress James N 07/18/1987
02 Fress John W 08/15/2000
--New Entry Here --- - ----