hey guys.. I got printing working but I am printing on index cards. So when I print it acts as if it is paper and the words on it are rotated 90 degrees. Is there a way to tell the printer it is an index card so it prints the right way?
Printable View
hey guys.. I got printing working but I am printing on index cards. So when I print it acts as if it is paper and the words on it are rotated 90 degrees. Is there a way to tell the printer it is an index card so it prints the right way?
VB Code:
myPrintDocument.DefaultPageSettings.Landscape = True myPrintDocument.Print()
hmm. I just tried it but it prints out nothing?.. Like.. Without that landscape setting I see words on the sheet but with it, nothing prints out onto the sheet
Have you set the paper size properly? If not then the actual printed text may be off the page. I've used that Landscape setting and it works for me but I'm using A4 paper.
Don't forget, when you set Landscape on that printer setting, your zero position may be off the paper. I assume like most printers, your small index card is centered when you print.. THe printer has no idea where the side guides are, so you'll need to adjust accordingly.
Bill