Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
21k views

How to get Printer Info in .NET?

In the standard PrintDialog there are four values associated with a selected printer: Status, Type, Where, and Comment. If I know a printer's name, how can I get these values in C# 2.0?
6
votes
1answer
3k views

PrintDialog.ShowDialog(this) immediately returns DialogResult.Cancel on Windows 7

An in house application that I'm developing is behaving strange on a Windows 7 (64 bit) PC. If I create an instance of a PrintDialog, and call it's ShowDialog() method, the method immediately returns ...
3
votes
2answers
411 views

Using the usual Windows Print Dialog instead of Java's dialog

How can I use the standard Windows Print dialog to print instead of the Java Dialog. I got problems printing a barcode with a label-printer. When I print via the Java-Print Dialog I get an error ...
3
votes
2answers
5k views

Setting PageOrientation for the Wpf DocumentViewer PrintDialog

Using the Wpf DocumentViewer control I can't figure out how to set the PageOrientation on the PrintDialog that the DocumentViewer displays when the user clicks the print button. Is there a way to hook ...
2
votes
2answers
178 views

Printing the content of a DocumentViewer in a different UI thread

In my WPF app, I have particular Window which contains, amongst other controls, a DocumentViewer. When this window is opened and loaded, it dynamically builds a FixedDocument with a progress ...
2
votes
3answers
72 views

How can open print dialog box in another thread

If i simply call If PrintDialog1.ShowDialog = DialogResult.OK Then PrintDocument1.Print() End If its working fine but if ...
2
votes
1answer
361 views

Intercepting PrintDialog to XPS Document Writer

Currently I am providing the user with two controls: Save and Print. When the user selects Save, a region of the WPF display is packaged up and sent through a XpsDocumentWriter and the user is ...
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
1answer
691 views

wpf simple print dialog page size issue

I'm creating a simple WPF print dialog box to setup a label printer. I want it to be very simple and so I've choosen not to use the standard WPF printdialog. All is going well accept for one thing, ...
2
votes
1answer
819 views

How can I change text on a win32 window?

Looking for hints, tips and search terms for changing the text on a win32 window from C#. More specifically, I'm trying to change the text on the print dialog from "Print" to "OK", as I am using the ...
2
votes
1answer
290 views

WPF Documentviewerbase.Print. Remove dialog box

I am using WPF and the DocumentViewer to display a document. However, when I use DocumentViewerBase.Print, it gives the "standard" Windows dialog box asking me to choose a printer with the default ...
2
votes
6answers
5k views

Printing a Collection in WPF

Is there any way to print in memory collection or variable size in WPF? I am using the following code in which I print the ListView control. But when the content is larger than the vertical scroll ...
1
vote
0answers
69 views

Print WPF grid without GridLines

I have grid array and I want to print all the grid.each grid have in his cell textbox the grid set to ShowGridLines = false; and also I have a method the remove the textbox border. private void ...
1
vote
1answer
127 views

Page-Range-Problem at Printing a Document

i try to print out the content of my editor: PrintDialog pd = new PrintDialog(); pd.PageRangeSelection = PageRangeSelection.AllPages; pd.UserPageRangeEnabled = true; FlowDocument fd = ...
1
vote
1answer
220 views

Ignored Paper Size in PrintDialog/XPS Document Writer

I am trying to print with WPF's PrintDialog class (namespace System.Windows.Controls in PresentationFramework.dll, v4.0.30319). This is the code that I use: private void PrintMe() { var dlg = new ...
1
vote
1answer
121 views

Word 2007: Hide printing dialog

i have a vba macro that will print a letter twice with different page settings. This works great. But sometimes (i dont know why) the printing dialog (select printer, ...) appear. How can i hide the ...
1
vote
1answer
237 views

Win32 PrintDlg, PrintDlgEx, Crashing and quirkiness

I'm tasked with solving the following issue: My application crashes when running on a 64 bit machine when the PrintDlg() function is called. After digging and hair pulling, I've decided the best ...
1
vote
1answer
572 views

How to save print settings from a Windows Forms Program?

I have program that print labels and I have to allow user to save/remember settings for printer. So I have this code: private void printerToolStripButton_Click(object sender, EventArgs e) { ...
1
vote
3answers
3k views

C# Windows Forms Print Dialog box click OK twice to respond

I'm using Visual Studio 2008, .net Framework 3.5 for a Windows forms client-server app that I'm working on. There is a weird bug when I run the program and try to print. The print dialog box opens, ...
1
vote
1answer
162 views

.net printdialog

i am building a button that allows a user to browse to a file. i want to get the location of the file and send it to printdialog. can this be done and if so how? i know how to create the browse ...
1
vote
2answers
577 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
965 views

Page preferences dialog in WPF

I'm fiddling with adding the ability to output from a program I'm working on to both PDF and XPS. Initially both were just done via printers (pdf printer/xps writer) but I'd like to do it a little ...
1
vote
2answers
521 views

PrintDialog filter list of printers

I need to, preferably in C# - but c++ will do, find a way to filter the list of printers in the windows print dialog for any windows printing. I have come across WinAPIOverride and have figured I am ...
0
votes
0answers
69 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
123 views

Set Print Orientation on PrintDialog using Flow Document

Just wondering if there is a way to set the print document orientation on a Print Dialog that is using a flow document. e.g. var document = userControl.Content as FlowDocument; var printDialog = new ...
0
votes
1answer
437 views

Print Fit To Page

I need to print a label to fit the page. I'm tryng this but print big than page, width and height seems to be to much private void PrinterPrintPage(object sender, PrintPageEventArgs e) { var b = ...
0
votes
1answer
582 views

printing content of a picturebox

HI all, I have a picture box in my C# WinForms application which is sized 800x800. I want to print the content of this picture box using the following code but it does not do anything at all (just ...
0
votes
1answer
72 views

How to tell Safari/Firefox to always use the expanded Print Dialog?

Mac Os X has 2 forms for the Print dialog - one collapsed and one expanded. Is there a command that would set Safari and Firefox to always use the expanded print dialog? Everywhere I searched I came ...
0
votes
0answers
598 views

Using Microsoft.Office.Interop.PowerPoint to generate print dialog

how to print a slid show with print dialog by using Microsoft.Office.Interop.PowerPoint namespace.The power point application should not be seen on the screen. I tried the following code and get ...
0
votes
2answers
169 views

Show Dialog with WebBrowser

I want to show a printer dialog but when I run the following code, it prints right away while the ShowPrinterDialog is open. In other words, it doesn't wait for the ShowPrinterDialog to close before ...
0
votes
2answers
331 views

If Printer Dialog Cancelled, Then Don't Print?

If I run this code, and press cancel on the PrintDialog, it still prints. How can I tell if the use pressed cancel? PrintDocument document = new PrintDocument(); PrintDialog dialog = new ...
0
votes
1answer
215 views

AutoScaleMode DPI and the PrintDialog

After enabling our aplication to use AutoScaleMode = DPI we are getting a strange issue when we show the PrintDialog at a DPI greater than 96. After the PrintDialog has been shown the text size on ...
0
votes
1answer
258 views

Printing Multiple Windows Using PrintVisual()

I'm currently using PrintVisual() in a wpf application to do printing. This is working perfectly at the moment, the only issue I now have is when processing large amounts of data I need to paginate, ...
0
votes
1answer
1k views

Print & Print Preview a Bitmap in c#

I have made a program that draws on a image on a picturebox and now i want to print and print preview this, but don't know how. Please Help, Thanks EDIT I have tried using print and print preview ...
0
votes
1answer
525 views

Enable “Current Page” in PrintDialog

Im using a System.Windows.Controls.PrintDialog to let the user print one or more pages from my application. This is what I currently got: PrintDialog printDialog = new PrintDialog(); ...
0
votes
1answer
312 views

WPF: How can I programatically close a PrintDialog?

How can I programatically close a WPF PrintDialog? I tried to call Finalize on it trough reflection, and that does not close it either. Here is what I tried with: using System; using ...
0
votes
2answers
853 views

Print Dialog in servlet/jsp

I want to display print dialog in servlet/jsp. Below is my code: DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE; PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet () ; PrintService ...
-1
votes
1answer
133 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 ...