I have a subform that I need to contain information from a main form. The
sub form is linked by studentID, but I also need the tardy ID, TardyID, to
populate the subDhall field txtTardyID.
I tried the AfterUpdate of TardyID with this:
Me!subDhall.txtTardyID=Me!frmTardyAdd.TardyID
and
Me!subDhall.frmTardyAdd.txtTardyID=Me!frmTardyAdd.TardyID
to no avail.
Anyone have any tips?

Signature
Thanks As Always
Rip
Carl Rapson - 30 May 2007 22:22 GMT
>I have a subform that I need to contain information from a main form. The
> sub form is linked by studentID, but I also need the tardy ID, TardyID, to
[quoted text clipped - 9 lines]
>
> Anyone have any tips?
Try this:
Me.subDhall.Form.txtTardyID = Me.TardyID
Carl Rapson
Ripper - 30 May 2007 22:23 GMT
Never mind. I'm an idiot. I just set the default value control to = the
textbox and form where the information is housed.
<duh>!

Signature
Rip
> I have a subform that I need to contain information from a main form. The
> sub form is linked by studentID, but I also need the tardy ID, TardyID, to
[quoted text clipped - 9 lines]
>
> Anyone have any tips?