Is there anyone who nows how to change the height of the space between printed textlines ?
Printable View
Is there anyone who nows how to change the height of the space between printed textlines ?
Do you meant Form1.Print stuff or when you actually print the form?
If you mean Form1.Print then you could consider using TextOut (which looks identical to VB's Form1.Print) but you can change the X and Y coords to whatever you like.
If you mean prining the form, then I'm sorry for not being able to help.
What I meant is: Printing textlines to the printer; the lines are now very close together. I like more space between each line.
When you loop through your lines of text, add a larger y-offset to them.
You could set the CurrentY manually.
eg
Printer.Print "Hello World"
Printer.CurrentY = Printer.CurrentY + 100
Printer.Print "Another line"
Printer.Enddoc