Unbound Box

Kennellady

Registered User.
Local time
Today, 13:13
Joined
Apr 28, 2006
Messages
18
I use form to enter a reservation for our kennel. I've put an unbound box to enter a run number. We print out a daily report showing who's coming in, but have drawn a block on how to get the number in the unbound box to print. How do I link the box to the report? Thanks
 
In one of the report's event handlers, say an OnFormat event of a form section, assign the value of the form's unbound textbox to an unbound text box on that section of the report.
Code:
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)
  Me.tbRunNumber = Forms!frmPrintController.tbRunNumber
End Sub
Cheers,
 
Thanks, my mind overheated and went in hybernation.
 

Users who are viewing this thread

Back
Top Bottom