The answer is to set the Default Value for the textbox control on the subsequent form.


[VBA]Private Sub Form_Load()
Me.Date.DefaultValue = CDate(tempDate)
End Sub[/VBA]

Special thanks to koolsid (vbforums.com) and also to RuralGuy (from Accessforums.com) for collaborating on the answer.