Arrays

linda sciallo

Registered User.
Local time
Today, 18:38
Joined
May 15, 2001
Messages
21
Does anyone know how to unload a multi-dimensional array that contains 38 rows, and 15 columns (fields) to a report
that has 15 text boxes (one for each field
in each row)??

A sample of the code would be helpful.
 
Can be made with a bit of code in the on_print event... But first, why didn t you build a recordset instead of your multi-dimmensional array? You could have used directly it as a Record Source for your Report. Where do this array com from?

Alex

[This message has been edited by Alexandre (edited 09-19-2001).]
 
It starts out as a recordset. It is a contractor activity report that contains open, closed and total activities. There can be 2 rows for the same contractor that
are returned by the query (sums for all the
opens and sums for all the closed). On the
report, I need to collapse the two rows into
one row or line. This is why I am using the
array. If it is the same contractor, I load
all information into one row in the array.
After the array has been loaded, I need to print out the results in a report.
 
Hi linda sciallo

Why not use a GroupHeader and put the contractor details in there? The two other sets of details can form two rows beneath the Group Header.

HTH

Rich Gorvin
 

Users who are viewing this thread

Back
Top Bottom