Text Box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In an Access 2000 report, I am using a text box so that I can grow the size
as needed for the data. However, the data for this text box is created in
code, not in a query or in a table. The data is variable and sometimes null.
I can't seem to get the data into the text box.

Any suggestions.

Thanks
 
"the data for this text box is created in code"... Don't you think it would
be important for us to see the code and where it is run?
 
You can create the data string and have a textbox?

Then create a event for the report (ie onOpen) and sai:

Me.<name textbox> = <string / function to get the string>
 
Back
Top