如何将下级表单的当前记录的字段值添加到父表单的字段?
表格结构: - frm_00_00_MainForm; - - frm_reg_GroupsStud_Stud_tbl; - - - reg_GroupsStud_Stud;
reg_GroupsStud_Stud:
SELECT tbl_03_GroupsStud.*, tbl_02_Students.NameStud
FROM tbl_03_GroupsStud INNER JOIN tbl_02_Students ON tbl_03_GroupsStud.id_stud = tbl_02_Students.id_stud;
在子窗体上访问控件的常用抽象方法是(当代码放在主窗体中时):
Me.subFormControlName.Form.ControlName.Value
如果Me
引用你当前的形式,subFormControlName
是包含子形式的控件的名称,Form
引用那里的任何形式(它的名字无关紧要),ControlName
引用子形式的控件,Value
读取控件值。