Unbound Text Field

  • Thread starter Thread starter Ken Snell \(MVP\)
  • Start date Start date
K

Ken Snell \(MVP\)

Which version of ACCESS are you using? What is the actual value that needs
to be set in the textbox -- is it a fixed value, or a value from a form's
textbox, or what?
 
I need to set he value of an Unbound Text field on a report. Since this
report is called from several different forms I can't set it on the report
itself and it doesn't work setting it from the from. Any suggestions
appreciated!
Thanks
DS

Why doesn't it work by setting it from a form?
You really haven't given enough information.
How do we know what you have tried or not tried?

Did you pass the data to the report using the OpenReport openargs
argument? (Access 2000 or newer)

DoCmd.OpenReport "ReportName", adViewPreview, , , , "Some Text here"

and read it in the Report's ReportHeader Format event:

If Not IsNull(Me.OpenArgs) Then
Me!ControlName = Me.OpenArgs
End If
 
I need to set he value of an Unbound Text field on a report. Since this
report is called from several different forms I can't set it on the report
itself and it doesn't work setting it from the from. Any suggestions
appreciated!
Thanks
DS
 
Acess 2002 , File Format 2000...its a number that I'm transfering.
A value from a forms Textbox
Thanks
DS
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top