Text Box

S

Sheldon

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
 
D

Duane Hookom

"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?
 
B

bjvsk

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>
 
Top