Form txtbox value from subform

  • Thread starter Thread starter Junior
  • Start date Start date
J

Junior

I have a txtbox [txtsubdate] on a subform - i want to populate a txtbox
[txtFromDate]on the Form with the value in [txtsubdate]
in the after dupdate event-
what is the proper way to do this?
 
Me.Parent![txtFromDate] = [txtSubDate]

--
Good Luck!
Graham Mandeno [Access MVP]
Auckland, New Zealand

Return mail address is invalid in a vain attempt to reduce spam.
Feedback is welcome at: (e-mail address removed)
Please post new questions or followups to newsgroup.
 
Graham - thanks - worked great -and i definetly need the luck
Graham Mandeno said:
Me.Parent![txtFromDate] = [txtSubDate]

--
Good Luck!
Graham Mandeno [Access MVP]
Auckland, New Zealand

Return mail address is invalid in a vain attempt to reduce spam.
Feedback is welcome at: (e-mail address removed)
Please post new questions or followups to newsgroup.

Junior said:
I have a txtbox [txtsubdate] on a subform - i want to populate a txtbox
[txtFromDate]on the Form with the value in [txtsubdate]
in the after dupdate event-
what is the proper way to do this?
 
Back
Top