Printing - Custom Paper Size ( Urgent )
I am developing a program in which i need to print some text at a specific location on a pre printed stationary of size 10" X 6" (Width = 10" and Height = 6" ) How ever every time I print it takes 10" as Height in Windows Xp
Pl. Answer me as early as possible
Re: Printing - Custom Paper Size ( Urgent )
Something like this should do the trick :
VB Code:
Printer.ScaleMode=vbInches
Printer.Height=6
Printer.Widht=10
Re: Printing - Custom Paper Size ( Urgent )
Quote:
Originally Posted by Ganzediep
Something like this should do the trick :
VB Code:
Printer.ScaleMode=vbInches
Printer.Height=6
Printer.Widht=10
I have tried This but it is not working specially in Xp where printer driver not supported for Custome Paper Size
Re: Printing - Custom Paper Size ( Urgent )
Precisely. Not all printer drivers support custom paper sizes so if you try and set the paper size to a custom size on one you get a run time error.