Tagged Questions
The printdocument tag has no wiki summary.
8
votes
2answers
1k views
C# PrintDocument Changed event
My issue is that I've created an "extended" RichTextBox control that uses native API to add many RichEdit features that are missing from the standard control (ie: modifying a single font property on a ...
3
votes
1answer
237 views
C# PrintDocument and Printer Status
I am trying to get the printer status of a PointOfSale printer using the following code:
Hashtable properties = new Hashtable();
ManagementObjectSearcher searcher = new ...
3
votes
2answers
385 views
How can I process an image in .NET for a full-page print with a quality like Windows Photo Gallery does it?
I'm writing a printing routing in C#, using the .NET PrintDocument class, handling the OnPrintPage event.
I've managed to maximize the margins and print the Image in landscape mode, but it simply ...
3
votes
2answers
5k views
Easiest way to add a Header and Footer to a Printing.PrintDocument (.Net 2.0)?
What's the easiest way to add a header and footer to a .Net PrintDocument object, either pragmatically or at design-time?
Specifically I'm trying to print a 3rd party grid control (Infragistics ...
2
votes
1answer
48 views
How to set default printer in asp.net?
I want to set a default printer to print the docs from my web application. I don't know how to set it. As all the users using this application should have a specific printter accttached to their PC. ...
2
votes
1answer
92 views
why this text data was not getting print through a printer?
when i am trying do printdocument1.print(); system was showing a small model pop up as the file name and system getting keep silent with out throwing any error any thing
here is my c# code behind ...
2
votes
2answers
88 views
Using an internal network, is it possible to print documents silently?
I have a client that hosts a touch screen kiosk in their lobby. It's essentially an internal html website. They want customers to be able to click a link and have a pdf print without seeing a print ...
2
votes
3answers
578 views
How to draw unicode string using C# graphics.DrawString
I'm trying to send khmer script(unicode) string to printer using PrintDocument provided by the .NET framework.
Unfortunately it seems to me that the Graphics.DrawString() does not render khmer script ...
2
votes
2answers
311 views
Is there a better way to get the page count from a PrintDocument than this?
This is the best I've come up with:
public static int GetPageCount( PrintDocument printDocument )
{
printDocument.PrinterSettings.PrintFileName = Path.GetTempFileName();
...
2
votes
1answer
737 views
Active printer problem in Printing word document through VB.net
My printer name is \\abc\First Floor A-Block its taking name \abc\First Floor A-Block on NE04:. How should i print it
Private oWord As Word.Application
Dim lobjDoc As Word.Document
Dim strFolder as ...
2
votes
1answer
158 views
Bulk Printing from application in .net?
I'm working on a project for my companies intranet which requires that multiple attached documents to the main DTO of the project need to be autoprinted in the background. The problem is it's a web ...
2
votes
1answer
1k views
Choosing Correct papersize when printing with .NET PrintDocument
When I am looping through each page I need to decide the size of a page and choose what size to print it in. is there an easy way to determine what size they are suppose to be?
right now i was going ...
1
vote
3answers
192 views
How to find the actual printable area? (PrintDocument)
Why is finding out this magic Rectangle so difficult?
In the OnPrintPage event I have PrintPageEventArgs and I am trying to draw using the Graphics within the bounds of the maximum printable area.
I ...
1
vote
3answers
141 views
Sync pdf print and standard print
i need to print a pdf file, a standar print, other pdf file, other standar print, and so on.
But, when i sent to the printer the sheets are mixed.
i desire:
PDF
PrintPage
PDF
PrintPage
...
1
vote
1answer
402 views
c# printdocument
I am using printDocument to print from a list view. This all works fine. Originally when the print dialog opened I could use the default printer or choose another (such as adobe pdf or send to ...
1
vote
2answers
327 views
System.Drawing.Brush from System.Drawing.Color
I'm developing a WinForm Printing application for our company.
When the document is printed, I need to take the System.Drawing.Color property of each Control on the document and create a ...
1
vote
1answer
276 views
Can I disable the printing page x of y dialog?
I am developing a full screen kiosk application using c#. I need to print tickets and receipts. I use the PrintDocument class for the printing. Printer prints perfectly, but i need to disable the ...
1
vote
6answers
719 views
how to set to default printer
How do you set PrintDocument.PrinterSettings.PrinterName to be the default printer?
I am not talking about setting the default printer in the operating system. Rather, I am talking about setting the ...
1
vote
1answer
844 views
Programatically setting Printer Page Size
I am trying to set the papersize of my address label printer programatically according to the height and width of the address. I tried a lot using Custom PaperSize in c# but in vain. could some tell ...
1
vote
1answer
139 views
Are there any tools to convert XML/XSLT or HTML/CSS to Graphics?
I am wondering, is there maybe a tool that can convert simple HTML/CSS (or just HTML) or XML/XSLT to a Graphics object?
I need to put some data on a PrintDocument and using the Graphics object is ...
1
vote
1answer
235 views
.net 2.0 PrintDocument problem
I am trying to print some pages through Virtual PDF Printer drivers (FoxitPDF Writer, doPDF, NovaPDF, etc.).
It seldom prints. Most of the time the pages are blank. This is not the case when I try to ...
1
vote
1answer
258 views
PrintDocument N of N Pages
I am manually printing and drawing a document using this class but not sure how to be able to write on the document Page 1 of 10, Page 2 of 10 etc
Any ideas?
1
vote
1answer
627 views
Setting the preferences in SIlverlight PrintDocument
I'm using PrintDocument in Silverlight. I'm printing the Silverlight DataGrid in Silverlight page. When I'm printing it only half of the DataGrid is getting printed....so Can I set the preferences for ...
1
vote
0answers
408 views
Encoding Problem In PrintDocument When Using Dot Matrix Printer
I have prepared a text to print with dot matrix printer. The text contains turkish characters like ü,ğ, etc.
When I send this text to the dot matrix printer with .net' s PrintDocument class, the ...
1
vote
1answer
929 views
Set WinForms RichTextBox as the source of a PrintDocument
I want to print the contents of a RichTextBox, so I am trying make a PrintDocument out of the RichTextBox. But I dont find a way to convert a simple RichTextBox to a PrintDocument. Any ideas?
1
vote
2answers
579 views
PrintDocument.Print() throws a Win32Exception
I'm getting a strange exception from the following code:
var printDialog = new PrintDialog();
printDialog.ShowDialog();
var printDocument = new PrintDocument { DefaultPageSettings = ...
1
vote
1answer
50 views
send PrindDocument to another form
i want send printDocument to second form to showing that in printPreviewControl which placed in second form.
form1 code
defined printDocument class with public access in form1
public ...
1
vote
2answers
1k views
Why is Graphics.MeasureString() returning a higher than expected number?
I'm generating a receipt and am using the Graphics object to call the DrawString method to print out the required text.
graphics.DrawString(string, font, brush, widthOfPage / 2F, yPoint, ...
1
vote
3answers
999 views
How can I flip/rotate a PrintDocument in .NET?
I have a document that I want to be flipped / rotated 180 degrees when printed.
(This is due to the orientation of label stock in the printer).
There is a property ...
1
vote
2answers
245 views
Sharing one PrintDocument instance
In my WinForms app, data can be printed on many locations. Everytime the user wants to print, I create a new PrintDocument instance, which is used for the current print job and then disposed. ...
0
votes
1answer
43 views
How to print all elements or generate PDF from TabControl?
I have a silverlight application which contains of a few tabs, which I would like to print or to generate PDF containing these tabs.
I tried to use stackpanel to add each tab and then use ...
0
votes
1answer
39 views
VB 2010 PrintDocument stacks printed text
I have run into another problem with my current project. I have a form that I need to print. Doing some searching online I found a few examples and implemented it into my code. It prints but prints ...
0
votes
0answers
58 views
C# PrintDocument - table / grid layout trouble
I'm trying to print out some data to a page in a table / grid format.
At the moment i have it working, but everything is drawn out manually.
Fairly hard-coded values for the width and height of each ...
0
votes
1answer
103 views
PrintDocument scale to fit page [closed]
Let’s say I have a PrintDocument with unknown number of pages. How could I scale it to fit everything on one page?
Edit:
I am trying to achieve something like “fit to page” when printing.
0
votes
1answer
41 views
Why is the GDI DrawString call behaving differently in PrintDocument vs. rendering to an image?
I am working on a printing application in C# using the PrintDocument class. I have gotten the physical printing part working the way I want, but one of the requirements is that I save an image file ...
0
votes
0answers
73 views
How can I create a bindable FixedDocument using XAML that can be printed and/or saved to XPS?
I am creating an invoicing program that needs to print out Invoices. There are many different Invoice formats that depend on the user setup, so to accomplish this I need to create templates that can ...
0
votes
1answer
156 views
how to print html in C#
I would like to print file using PrintDocument in c#
The file is simple html ( i need it because i need the text in the file will be located in specific location in the page)
my question is how do I ...
0
votes
3answers
188 views
Issues Resizing Image to fit on a printed page
I am trying to print an image (from file) to a the printer using a PrintDocument.
I am re-sizing my image so that it is scaled to be full page on the printout when I print this the image is cropped ...
0
votes
0answers
88 views
Report header and footer for already created printdocument
I have a System.Drawing.Printing.PrintDocument created using ComponentOne flexgrid. I need to add report header and report footer for the PrintDocument returned by ...
0
votes
0answers
336 views
how can i write a printdocument object from windows.printing library to a pdf without opening a saveas pop
Requirement at my end is to print pdf documents from windows printdocument library.I am using cutepdf for this and it works fine,as it opens the saveas popup for each document.But in my case there can ...
0
votes
1answer
365 views
Writing a GridView to print doc in PrintPageEventArgs (PrintDocument
I'm currently writing an application in ASP.NET/C#, where the user needs to be able to generate PDF's of invoice summary's through the web based admin system.
The customer did not want to use an ...
0
votes
1answer
240 views
Tools to help create a PrintDocument?
I have a PrintDocument and its PrintPage event tied to a function that uses the Graphics object to draw to the page.
But this is very tedious. I have some company data in a settings file that I need ...
0
votes
1answer
1k views
Show all pages of PrintDocument on PrintPreviewControl
I'm having trouble creating multiple pages in a PrintDocument and displaying them within a PrintPreviewControl. I can create a single page easily enough, but stringing together multiple pages is ...
0
votes
1answer
563 views
BeginPrint event and dataGridView problem
I have a dataGridView on the form and thats have many columns and rows. Now I want draw dataGrid column and rows to printDocument and then print. But when BeginPrint event of printDocument is in ...
0
votes
1answer
599 views
PrintDocument (c#) ignores printer configuration
I've got a few logical printers configured and pointing to the same physical printer. Each logical printer is configured with a specific input and output tray. Opening a document, e.g. a pdf, and ...
0
votes
1answer
1k views
Issues with XPSDocumentWriter and PrintDialog.PrintDocument
Our company is developing an application (WPF, targeted to .NET 3.5) with the WPF Diagramming Components from MindFusion.Apparently, printing and saving XPS Documents results in various errors on ...
0
votes
3answers
697 views
Weird error printing PrintDocument object in .NET
I have a Winforms application that generates its own PrintDocument object for printing. It works fine in XP and Windows 7 with my own testing, but one user has been getting the following exception in ...
-1
votes
1answer
136 views
print rich text box in a specific tab multiple pages C#
I am doing a web browser with multiple tabs and each tab probably will have a new website differs from the other tabs.
now what i am trying to do is to print the page on a specific tab and the page ...