You can use loops to go through and print the data. You can do this by either selecting a
cell and printing it directly or you can put the data of the grid into an array, and then
print the contents of the array.
Say you have 10 cols and 5 rows.
For Ro = 1 to 5
.row = Ro
For Co = 1 to 10
.col = co
"print this cell"
Next Co
Next Ro
I don't know if this will help. It's not actually that difficult if you think about it.
If you need more details, let me know.
Mianne.
Quote:
>I HAVE TRIED PRINTING GRIDS USING THIRD PARTY PRINTING TOOLS BUT THIS ONLY
>PRINTS WHAT YOU CAN SEE IN OTHER WORDS IF YOU HAVE TO SCROLL IT DOES NOT
>PRINT ANY IDEAS.
>RICH