|
-
Apr 7th, 2010, 03:50 AM
#1
Thread Starter
Fanatic Member
[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?
Last edited by erickwidya; Apr 20th, 2010 at 01:46 AM.
-
Apr 14th, 2010, 10:57 PM
#2
Thread Starter
Fanatic Member
Re: print Half Size form in Crystal Reports Basic
any insight? i'm still stuck with this problem ...
-
Apr 20th, 2010, 01:45 AM
#3
Thread Starter
Fanatic Member
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
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
|