[RESOLVED] print Half Size form in Crystal Reports Basic
hi all, got a weird problem printing CR Form in .NET 2008
at the moment my application print two A4 size form (Delivery Order and Invoice) whenever user click a button, in the future the form will be replace into half size of A4...
i already create new the half size A4 form in Server Properties under Printer and Faxes and using it as Printer Setup form in Crystal Reports basic
but when user click it, the first form is printed correctly..the second one is start printed 3inch lower than its design..
when it printed one form at a time, it print correctly..
any insight?
Re: print Half Size form in Crystal Reports Basic
any insight? i'm still stuck with this problem ...
Re: print Half Size form in Crystal Reports Basic
i give up using CR.printreport method...
at the end i exporting it to .rtf file then use this code to print it
vb Code:
Dim myProcess As New Process()
myProcess.StartInfo.FileName = sFileName
myProcess.StartInfo.Verb = "Print"
myProcess.StartInfo.CreateNoWindow = True
myProcess.StartInfo.ErrorDialog = False
myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
myProcess.Start()
looks ugly but it works :D