Tagged Questions
The system.printing tag has no wiki summary.
4
votes
2answers
2k views
Printing from ASP.NET to a network printer
I need to send documents to a network printer (\myserver\myprinter). I'm using the System.Printing classes to print, and it works fine when it's from a Windows Service, but from an ASP.NET app, it's ...
4
votes
3answers
2k views
PrintableArea in C# - Bug?
I am having an issue with PageSettings.PrintableArea's width and height values. Width, Height, and Size properties claim to "get or set" the values. Also, the inflate() function claims to change the ...
2
votes
1answer
318 views
How to find which computer send the print job?
I'm creating a postscript printer for windows 7 which will accept print jobs and forward them to real printers. It will be shared in the LAN and can receive print jobs from LAN computers. I want to ...
2
votes
1answer
184 views
modifying a print preview
I'm building a c# app that displays a print preview (of a document) and then asks the user(s) to 'sign' the document via a InkPicture control. I've got no problems extracting the Bitmap from the ...
2
votes
2answers
562 views
Need help with modifying PrintTickets through XML
Doing some work on controlling printing via the System.Printing framework (main classes are PrintQueue, PrintTicket and PrinterCapabilities). Like with most stuff I've been working on lately, there's ...
1
vote
1answer
52 views
PDF document is always sent to the default printer despite selecting another printer in the print dialog box
I need to have the users of a wpf application to be able to choose printers when they print a particular .pdf file. I can get it to print but it always goes to the default printer no matter what I ...
1
vote
1answer
227 views
How to print flex spark datagrid by using the mx PrintDataGrid? Or is there other way to achieve this without using the mx PrintDataGrid?
this is my first time to ask here since my question is not answerable in the adobe flex forum. So at least finally, I've come to manage it here.
Well, Flex 4.5+ is I guess everyone is working on ...
1
vote
0answers
94 views
Printing Multiple PNG Images using C#.net
I am working on an Image Printing Utility which will be created using C#.Net 2010. I have multiple folders containing several images (png). Now, the job is to print these images together by picking a ...
1
vote
2answers
181 views
hide header and footer on text files when direct print using win32 and python
I am stuck here when printing directly to text files using this code
win32api.ShellExecute (0, "print", "datafile.txt", None, ".", 0)
it always print the header "datafile.txt" and footer "Page1". I ...
1
vote
1answer
242 views
C# Batch plot application (PrintServer & PrintQueue issues)
I have a problem that I need help with. For my current project I need to make a Batch Plot application. This application will have around ~2000 AutoCAD drawings that it will need to print.
The ...
1
vote
0answers
409 views
Printing with custom margins in .NET
I am printing labels through a Dymo printer using vb.Net and the standard .NET printing routines, my app has to support any type of label printer though. Because the dymo driver does not have ...
1
vote
1answer
184 views
Convert PaperKind to PageMediaSizeName
I manually converted PaperKind to PageMediaSizeName like this:
static PageMediaSizeName ConvertPaperKindToPageMediaSize(PaperKind paperKind)
{
switch (paperKind)
{
...
1
vote
2answers
414 views
Complex Printing task support for .net 4
I have been looking for tools which will allow to send documents (pdf,txt,doc,etc) to network printer.
I am aware of the PrintDocument, Graphics to print text to Printer. what I am looking for is ...
1
vote
0answers
256 views
System.Printing.PrintQueue QueueStatus not updating
Is there a way to update the print queue status information contained in the PrintQueue object?
I've tried calling Refresh on the PrintQueue object but that doesn't really do anything. For instance, ...
1
vote
0answers
95 views
Printing two columns with “address cards”
For an application i'm developing as my first c# project, i'd like to be able to print information from the application in a similar style as the 'card style' printing option that's available in ...
1
vote
2answers
745 views
Network printers and the PrintServer.GetPrintQueues method
I have a feeling that the PrintServer.GetPrintQueues method does not return the network printers.
If this one is true, what other choices do i have?
0
votes
2answers
86 views
Batch Printing Using Windows Forms in C#
I want to create a windows form application that will sit on our local server and print invoices to a network printer say every 30 minutes.
Can someone confirm that you definitely can't use a console ...
0
votes
1answer
31 views
Trying to put text INFRONT of a document Im about to send to printPreview?
I try to put text on a document Im about to send to PrintPreview using the event PrintPageEventHandler. With this code:
System.Drawing.Printing += new ...
0
votes
0answers
106 views
Printing to HP CP3525 dn network printer give blank pages
I'm using .net printdocument to print graphics to HP network printer with HP Universal 4.7 post script driver
in the printpage handler
args.graphocs.drawstring(...)
...
0
votes
1answer
917 views
How to get System.Printing.PrintServer.GetPrintQueues to return the print queue list from remote server?
Problem
I'm trying to get a list of print queues available on a remote server.
Ultimately this will need to be performed from ASP.NET, but for now I'd settle for a console application to work.
...
0
votes
1answer
468 views
Access Denied when calling PrintQueue.Pause() method in C#.net
I'm trying to pause a windows 7 print queue using C#.NET visual studio 2008. I have full administrator rights but when I run the following code to Pause the Queue it says Access is Denied. Please help ...
0
votes
1answer
539 views
System.Printing to return printqueue status - properties never return true
I'm using System.Printing to interrogate PrintQueue status - my aim being to obtain status updates & errors, specifically the booleans IsOutOfMemory, NeedUserIntervention, IsOutOfPaper, ...
0
votes
1answer
1k views
InstallPrintQueue: how to create a new port? (.net,c#)
I'm fighting here with System.Printing namespace of .net framework.
And what i always saw as a wired thing in all the tools by MS to manage my printservers is they lack Port and Driver managing ...