473,480 Members | 1,918 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

C# Raw Printing

I need to print raw byte data (PCL) to a printer in C# .NET 2.0. I was
disappointed that the BinaryWriter.Write method seems to specifically forbid
it. I would like to print to device names (e.g. lpt2:) and also network queue
names. Is there a way to do this using .NET? Failing that, can it be done by
importing win32 dll functions? Does anyone know of example code to do this?
Thanks.

Apr 11 '06 #1
7 17978
I think there are a few librarys out there to control the ports
directly, hence you could get driverless controll of a printer.

It's not much fun though. Iv'e written a pure asembly util for printing
on a inkjet before purly by manipulating the port (skiping the bios
services). (This is dos days).

I can tell you that printers willl piss you of from a low level
programming point of view.

Their just plain un-co-operative and quite often they seem to behave
eraticly, the documentation you can get on controlling a printer in
this way would be good but each printer has its own quirks.

-dm

Apr 11 '06 #2
Hi Richard,

The .NET Framework cannot send preformatted printer-ready data to a
printer, you need to use with Win32 spooler functions to send raw data to a
printer.

I suggest you refer to the following MSDN KB article for the details on how
to read the contents of a preformatted file into memory, and then send
those bytes to the printer by using WritePrinter.

How to send raw data to a printer by using Visual C# .NET
http://support.microsoft.com/?kbid=322091

I hope the above information helps, if you have any questions or concerns,
please do not hesitate to let me know. I am standing by to help you.

Thanks!

Best regards,

Gary Chang
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

Apr 11 '06 #3
Thank you Gary, once again you have provided me with exactly what I was
looking for.

Thanks Duckman, I am already communicating with the printer successfully in
my legacy application, it is just a matter of porting to .NET. If I was
starting something new, I would use the proper .NET way of doing it.
""Gary Chang[MSFT]"" wrote:
Hi Richard,

The .NET Framework cannot send preformatted printer-ready data to a
printer, you need to use with Win32 spooler functions to send raw data to a
printer.

I suggest you refer to the following MSDN KB article for the details on how
to read the contents of a preformatted file into memory, and then send
those bytes to the printer by using WritePrinter.

How to send raw data to a printer by using Visual C# .NET
http://support.microsoft.com/?kbid=322091

I hope the above information helps, if you have any questions or concerns,
please do not hesitate to let me know. I am standing by to help you.

Thanks!

Best regards,

Gary Chang
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

Apr 11 '06 #4
Hi Richard,

I am very glad to help you on this issue, have a nice day. :)

Good Luck!

Best regards,

Gary Chang
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

Apr 12 '06 #5
Hey Richard,
I like your comment --- " proper .NET way of doing it. "

It sounds like an new world order or something.

-dm

Apr 12 '06 #6
Gary,

I implemented the code provided in the kb article to send raw data to
the printer and it works. But i need to print in a landscape mode. Is
it possible to define page orientation using the code ?

Please help,

Thanks,
-V

May 3 '06 #7
Got it to work...

I set it as:

string landScape;

landScape = Convert.ToChar(27).ToString() +
Convert.ToChar(38).ToString() + Convert.ToChar(108).ToString() +
Convert.ToChar(49).ToString() + Convert.ToChar(79).ToString();

//Send Landscape orientation
WritePrinter(hPrinter,landScape,landScape.Length, ref pcWritten);

// Write the bytes.
WritePrinter(hPrinter, pBytes, dwCount, out dwWritten);

May 3 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
4821
by: Jody Gelowitz | last post by:
I am having a problem with printing selected pages. Actually, the problem isn't with printing selected pages as it is more to do with having blank pages print for those pages that have not been...
0
2259
by: Programatix | last post by:
Hi, I am working on the PrintDocument, PrintDialog, PageSetupDialog and PrintPreviewControl components of Visual Studio .NET 2003. My developement machine is running Windows XP. There are...
9
4073
by: Jody Gelowitz | last post by:
I am trying to find the definition of "Safe Printing" and cannot find out exactly what this entitles. The reason is that I am trying to print contents from a single textbox to no avail using the...
4
6450
by: Suzanka | last post by:
Hello, I have an application written in C# on visual studio .NET. It is a web aplication. The application consists of many different forms, that users occassionaly want to print out for filing....
4
9162
by: Arif | last post by:
I C# code prints very slow as compared to a third party barcode printing software. That software prints approximately 10 labels in 2 seconds while my C# code prints 10 labels in 5 to 6 seconds. And...
6
4058
by: Siv | last post by:
Hi, I am getting into printing with VB.NET 2005 and want to implement the usual capability that a user can select a selection of pages. I have a report that is generated by my application that if...
8
5866
by: Neo Geshel | last post by:
Greetings. BACKGROUND: My sites are pure XHTML 1.1 with CSS 2.1 for markup. My pages are delivered as application/xhtml+xml for all non-MS web clients, and as text/xml for all MS web...
0
2200
by: nikhilgargi | last post by:
Requirement: I need to provide printing capability in a C# desktop application that I am developing The documents that need to be printed can be in Rich Text Format (RTF) or HTML. Custom...
18
11258
by: Brett | last post by:
I have an ASP.NET page that displays work orders in a GridView. In that GridView is a checkbox column. When the user clicks a "Print" button, I create a report, using the .NET Framework printing...
0
2813
it0ny
by: it0ny | last post by:
Hi guys, thanks I am fairly new to this forum so I hope I chose the right place to post this question. I try to make my program printout a deposit's report. I created a class to store the...
0
6904
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7032
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
6730
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
6873
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
4767
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4471
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
2990
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
2976
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
558
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.