Tagged Questions

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?
4
votes
1answer
303 views

C#/.NET: How to add networked printer to a local PC account?

I'm using the WMI Code Creator to create code to add a networked printer. http://img13.imageshack.us/img13/9847/wmicodecreatorwin32prin.png The code that was generated works great (under my domain ...
4
votes
1answer
489 views

Get local printer list to change printer IP and default printer

How am I able do find all local printers of the machine where the program is running with a user that doesn't have admin rights. I need to remap the printer IP and set the printer as default. My idea ...
3
votes
3answers
166 views

Creating a C# application to configure printer page settings

I am looking to deploy a c# application at my workplace which defines the default paper size. Nothing too special. It works by calling windows.win32 and using the registry class to write to the ...
1
vote
1answer
95 views

How to create a shortcut to a printer programmatically?

Normally you can create a shortcut to a printer from right click menu of printer itself. Is there any other way around? I tried using IWshShortcut with following parameter as targetpath "Control ...
1
vote
1answer
148 views

How to change a printer's PortName using c#

I've scanned SO and didn't see this question posted, sorry if I missed it and this is a repeat. I can locate the network printer in the PrinterSettings.InstalledPrinters, and fetch the "PortName" ...
1
vote
3answers
316 views

How to work on Bixolon POS Printer using C#

I've been programming an application which is responsible to deal with a POS printer, The printer brand is BIXOLON, I've didn't find any SDK to using this type of printers as well as no example to how ...
1
vote
1answer
139 views

printer driver type application

I am working on a application which requires me to create a printer type driver, which offers to decrease the quality of document, and then prints the document. Where document can be anything like ...
1
vote
2answers
417 views

Is there anyway to specify a PrintTo printer when spawning a process?

What I Have I am currently writing a program which takes a specified file and the performs some action with it. Currently it opens it, and/or attaches it to an email and mails it to specified ...
1
vote
1answer
609 views

How can I locate all the network printers in the enterprise?

When I go to Printers and Faxes dialog, I can click the Add a printer link, select Network Printer, then Find a printer in the directory. From there I get a dialog box which lets me find ALL printers ...
0
votes
1answer
25 views

Loading bitmap with ICM profile

I am working on a sample in this I am loading a EMF file. To do this I am using API Image image = Image.FromFile(strFilePath, true); The 2nd parameter is to use the embedded ICM profile. Then I am ...
0
votes
2answers
114 views

How do i execute a process in C# that installs a printer driver?

I have to start an executable (installPrint.exe) within my C# code. For this purposes I used the System.Diagnostics.Process class. The exe file installs a printer driver and copy several files into ...
0
votes
1answer
188 views

POS for .Net Common Control Objects CharacterSet Compatibility issue

I've recently purchased a Star Micronics TSP100 Printer for my "Point of Sale" application which I'm developing in C#.NET , I downloaded the POS for .Net SDK to manipulate the printer but it didn't ...
0
votes
1answer
218 views

Print Formatted Text to a Serial Port

I am trying to write a content to the serial port which will be communicated to a printer using bluetooth. I am using .NET CF 3.5 - Windows Mobile 6.5 and Citizen Printer PD 24. I am able to write ...
0
votes
0answers
207 views

Create printer job C# migrate code from C++

I need a little help. I have C++ code wich print some thing on the printer. If i send to the printer some text data printer can make some special action: HDC hdc = CreateDC("WINSPOOL", ...
0
votes
1answer
535 views

Crystal Reports loads very slowly if printer is invalid

In Crystal Reports, if another developer designed a report, I see the error "This report uses an invalid printer. The default printer will be used instead." I noticed that it takes a VERY long time ...
0
votes
0answers
393 views

How to read raw data stored in LPT1 Buffer memory? C#.net

Phew I'm tired of searching... finally it's time to ask.. I use following code to send raw data to the printer LPT1: port without using a driver: [DllImport("kernel32.dll", SetLastError = true)] ...
0
votes
2answers
1k views

How can I use c# to set printersettings?

EDIT I have tried to reconstruct code I no longer have to show. I think it is just a klimitation of the printersetting class not exposing functionality that can be selected by using a dialog. It ...
0
votes
1answer
2k views

How to list all the printers on the network?

I am trying to list all the printers on the network (we have a very large, cross-ocean network) using VS2008 & c#. I am looking to replicate the functionality of the Find Printers dialog box in ...