Hey guys,
I used Mike Gold's tute on printing on this site and it worked great for me except for one thing. I have a string that goes into a RTB -- here is the code:
amortizeString =
some stuff
{
amortizeString += i.ToString() +
=================
This iterates through my amortization -- then I finally place that string in my textbox like so :
amortizeTB.Text = amortizeString;
So it looks just fine in my textbox but when I go to print it out, the numbers are no longer aligned with the column headers.... I am sure this is because of the paper size or something like that, but can someone tell me how to go about fixing this?
Thanks!Todd