Hello,
does anyone know how I can do an automatic field filling using two or more forms, as a source of information?
I have this code, and it works perfectly for a single form search (In my example: Student1) but I want 2 or 3 more forms.
I hope someone has the answer, Thank you very much !!
CODE:
if(input.Student1 == null)
{
input.Mobile_Requal = null;
input.Address_Requal = null;
input.POB_Requal = null;
input.DOB_Requal = null;
input.ID_Requal = null;
}
else
{
rec = Add_Student[ID == input.Student1];
input.Mobile_Requal = rec.Mobile_Student;
input.Address_Requal = rec.Student_Address;
input.POB_Requal = rec.POB;
input.DOB_Requal = rec.Dob;
input.ID_Requal = rec.ID_number_Student;
}