geoffl
10-18-2004, 03:22 AM
I am running a report which returns several records via a query
For each record, one of the required fields contains multiple lines of text
I want each line of text to appear in its own box on the report
I have written a VBA report module subroutine which splits the text into an array of string variables strPart(1 to 10)
The module is called from the report's Detail - On Format event
1) How can I return the variables to the report?
2) Do I need a subroutine or a function
3) Am I trying to do this in completely the wrong way?
Any help would be appreciated
For each record, one of the required fields contains multiple lines of text
I want each line of text to appear in its own box on the report
I have written a VBA report module subroutine which splits the text into an array of string variables strPart(1 to 10)
The module is called from the report's Detail - On Format event
1) How can I return the variables to the report?
2) Do I need a subroutine or a function
3) Am I trying to do this in completely the wrong way?
Any help would be appreciated