PRINTING MSFLEXGRID 
Author Message
 PRINTING MSFLEXGRID

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


Mon, 30 Jul 2001 03:00:00 GMT  
 PRINTING MSFLEXGRID

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



Tue, 31 Jul 2001 03:00:00 GMT  
 PRINTING MSFLEXGRID

Quote:

>However, another option with the flexgrid is that, if the whole grid will fit
>on one printed page, then you can simply use this code:

>Printer.PaintPicture MSFlexGrid1.Picture

>This will print the entire contents of the flexgrid ... but if the contents
>are bigger than a printed page, it will be cut off.

For laser printers, there may also be memory issues with what could in
effect be a full-page graphic.

ajm



Mon, 06 Aug 2001 03:00:00 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. Printing MSFlexGrid in a form

2. Howto print MSFlexGrid contents ?

3. Printing MSFlexGrids

4. print msflexgrid

5. Printing MSFlexGrids in VB 5.0

6. Problem printing MSFlexGrid

7. printing MSFlexGrid

8. printing msflexgrid

9. Print MSFlexgrid

10. printing MSFlexgrid landscape

11. Printing MSFlexGrid

12. Print MSFlexGrid?

 

 
Powered by phpBB® Forum Software