I want to coordinate PopUp form and main form
From my main form i open my popup form as follows:
DoCmd.OpenForm FormName:=”frmCallsstudents”, WhereCondition:=”[student] = ” & Me!Studentid
My main form is a tabular form beginning with the StudentID.
I want to open the popup form not by clicking a separate control, but by clicking the field studentid
Then,if i click another studentid, to open the popup form for this student.
How can i do it ?