Originally Posted by
aussiemcgr
Well, as with most things in programming, things can be made much easier with loops. I am suggesting something like a loop that will paint (or however you're doing it) the same chunk of elements however many times you tell it to. That way you only need to create one instance of the pattern, provide a buffer (space between each instance in the pattern), and tell it how many you want.
Ah, yes. That's exactly what I ended up doing. Happily, the form did have a repeating section, so I only had to design it once and the header once. Some looping and a variable to keep track of how much to offset the pixels when placing the data kept everything aligned.
It was still a lot more labor intensive than I expected, having to create the printout essentially by hand by drawing lines and boxes from pixel to pixel. I guess I'm just surprised there's no GUI designer that, when done, produces a Printable class for you. Maybe when I get my skills polished up, that'll be my first major project.
Thanks for the suggestions
Steve