Thanks for the note about the line wrap. :)
Post by JDThere are several ... if you're willing to look for them.
(after hours of searching, I found nothing. Don't beat
up my post when I'm only trying to help.)
I use my own method for printing a string grid as a grid, not
just as text. After searching the entire internet for hours,
all I could find was how to print a grid as text only. How
boring is that? Us programmers don't want to print just text,
we want the whole grid. So I came up with my own method that is
a little crazy, but works great. I use this method in a program
that I have here:
http://www.aswsoftware.com/products/movielist/movielist.shtml
sample printouts are here:
http://www.aswsoftware.com/products/movielist/samples.shtml
Basically what I do is have two string grids. They are both
manually drawn. One is visible for the user, and the other is
invisible. The hidden string grid is the size I want for each
page in the print out. I copy the text for the current page
from the first grid to the second grid. Then I copy the canvas
of the string grid to the canvas of a bitmap and print the
bitmap. It's a crazy way to do it, but you have to be
resourcefull when no one else on the internet has a clue
(atleast that they are willing
to share).
teroni
Post by JDPlease wrap your lines when you post. Your editor (or reader)
may visually wrap them for you but you need to enter a hard
return at the end of each line.
[...] It's a crazy way to do it,
You're right about that.
but you have to be resourcefull when no one else on the
internet has a clue
My post provided a link to a free grid that prints *and*
it includes source code.
(atleast that they are willing to share).
There are several ... if you're willing to look for them.
(after hours of searching I found nothing, like
I said above)