|
-
Aug 12th, 2000, 08:03 AM
#1
Thread Starter
Addicted Member
Is there anyone who nows how to change the height of the space between printed textlines ?
-
Aug 12th, 2000, 08:15 AM
#2
Fanatic Member
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.
-
Aug 12th, 2000, 09:07 AM
#3
Thread Starter
Addicted Member
What I meant is: Printing textlines to the printer; the lines are now very close together. I like more space between each line.
-
Aug 12th, 2000, 09:10 AM
#4
Monday Morning Lunatic
When you loop through your lines of text, add a larger y-offset to them.
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Aug 12th, 2000, 11:41 AM
#5
You could set the CurrentY manually.
eg
Printer.Print "Hello World"
Printer.CurrentY = Printer.CurrentY + 100
Printer.Print "Another line"
Printer.Enddoc
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|