Click here to Skip to main content
15,880,651 members
Articles / Mobile Apps / Windows Mobile

Smart Device Print Engine for Compact Framework

Rate me:
Please Sign up or sign in to vote.
4.59/5 (46 votes)
19 Apr 2004CPOL7 min read 771.8K   5.5K   87   242
Printing support for .NET Compact Framework.

Image 1

Introduction

I was faced with a problem while developing an application on Microsoft .NET Framework. The problem was .NET Framework’s printout support. NET framework has lack of printing and print preview support for some resource reasons. Therefore, I started to develop a print engine for Compact Framework. Actually, Pocket PC 2003 has APIs for printing support to Pocket PC 2003 through serial port which is useful for developers who want to develop an application on Compact Framework with printing support.

I used “P/Invoking Serial APIs in the Compact Framework” sample code on MSDN while developing serial communication class. As we know, dot-matrix printers uses COM or LPT port in order to communicate with the system. If you want to send data through COM port, you should use byte streaming.

In my case, I used following values;

BaudRate = 9600
Size = 8
Parity = 0
StopBits = 0

My class has print preview support, too. It is based on dynamically created window as below;

Image 2

Pic. 1

I used multiline, locked textbox in order to show print preview. Text box object is so necessary for this job because of its nature. Actually, by forming a page from byte array; I can set text property to print buffer in order to show preview, easily. As you see, preview has BACK and NEXT buttons and page number label, too. All of the controls has been created dynamically.

Background

Smart Device Print Engine is formed by two main layers; print class and serial communication class. I will describe in detail and step by step, how it works.

Image 3

Pic.2

Using the code

As I mentioned before, serial port communication is based on byte streaming. Therefore, you need to send data in a byte array. I used CEWriteFile API function in order to send data through COM port. You can put your data in a (n) sized array and send it to the port. For example :

C#
int iNumberOfBytesRead=0;
uint iNumberOfBytesToRead=1024;
byte[] Output = new byte[1024];

CEWriteFile(hPort, Output, iNumberOfBytesToRead, 
  ref iNumberOfBytesRead, IntPtr.Zero); 

The API function mentioned, sends 1024 bytes data at a time which is necessary for minimizing trips between smart device and the serial port. For example you want to print “hello world” string from a line printer. How this is going to happen? Firstly, you need to create a page as below;

C#
// Create SDPE instance
SDPE = new SmartDevicePrintEngine();

// Set COM port for SDPE
SDPE.Port="COM1:";

// Create page with size parameters
SDPE.CreatePage(36,46);

Code block mentioned above, creates a SmartDevicePrintEngine object instance and sets serial port number to COM1 and creates a logical page on memory which is 2 dimensional 36x46 byte array. Then it creates, CommDevice instance in order to communicate with printer. In CommDevice constructor, I set package sizes to 1024 as default value. That means, 1024 bytes will be send at a time for each package. Then, I created Device Control Block instance to set serial port properties. As we know, Compact Framework doesn’t support Abort() method for threads. Therefore, I used event mechanism in order to stop the thread execution. I used an ArrayList to store pages for print preview in SmartDevicePrintEngine constructor. These happen at Form_Load event. Now, we are ready to fill up the logical page with our strings.

How will I write my string and locate on paper? I developed WriteToLogicalPage() method since it puts a string on the print area. Method has two overloads which are aligned string and unaligned string. I will describe, how it works in the following sections.

Writing and locating a string on a page is quite easy. Look at the following code block for an example;

SDPE.WriteToLogicalPage(17, 2, "Hello World");

X and Y coordinates are starting from value 1. We want to put up “Hello World” string to 17, 2 location. First step in WriteToLogicalPage() method is checking page bounds and converting the string (“Hello World”) into PageBuffer which is a byte array. We created a logical page, set and located the string on page. Now, we need to call the most important method which is Print().

I initialized serial port by OpenPort, SetupCommSetDCB, SetConnectionTimeout and CreateCommThread. These methods initializes and opens serial port device communication. After initialization, we need to send byte array to serial port. Therefore, we should call Send() method. In Send() method, we need to send 1024 bytes package for each trip. At the end of this process, all of the data is sent to the serial port as 1024 bytes packages. We need to send form feed character (“0x0c”) for page break. If we have more than one page, we need to call NewPage() method which flushes old page and creates a new one. Now that, print process has completed successfully, we should close port by Close() method. That’s all.

Now, we will look at the preview support in Smart Device Print Engine. All steps are the same as Print() method until AddToPreview(). In AddToPreview() method; we need to create a StringBuilder object instance in order to concatenate rows for building a new preview page. We should insert new page into page array. NewPage() method, flushes old page and creates new one. Preview page is formed dynamically. It has a textbox in order to represent printout of pages.

I want to describe class methods and properties at below;

Class : SmartDevicePrintEngine

Signature : SmartDevicePrintEngine()
Description : Constructor.
Signature : public bool CreatePage(int Width, int Height)Description : Creates a logical page which is 2 dimensional byte array.
Signature : public void WriteToLogicalPage(int x, int y, string Value)Description : Writes a string to given location on page. String shouldn’t overflow from page.
Signature : public void WriteToLogicalPage(int x, int y, int Length, int Alignment, string Value)Description : Writes a string to given location by alignment and fixed length on page. String shouldn’t overflow from page. For example, you may want to write numeric value which should be right aligned.
Signature : public void FormFeed()Description : It is simple to understand. Sends 0x0c to serial port.
Signature : private string ReadLogicalPageByRow(int RowNumber)Description : Reads byte array row by row and returns it in a string variable.
Signature : public void Dispose()Description : Flushes objects from memory.
Signature : public void NewPage()Description : Creates new page.
Signature : public void Print()Description : Prints the document page or pages.
Signature : public void AddToPreview()Description : Adds your preview pages into array in order to represent at print preview screen.
Signature : public void Preview()Description : Calls preview window and represents preview of a page.
Signature : public int PageWidthDescription : Page width.
Signature : public int PageHeightDescription : Page height.
Signature : public string PortDescription : COM port number.

Class : CommDev

Signature : public CommDevice()Description : Constructor
Signature : private IntPtr OpenPort()Description : Opens a port in order to perform serial communication.
Signature : private void SetupComm()Description : Sets buffer sizes.
Signature : private void SetConnectionTimeOut()Description : Set connection time-out for serial communication.
Signature : private void SetDCB()Description : Device control block
Signature : private void CreateCommThread()Description : Creates a thread in order to processing events.
Signature : public void Init()Description : Serial port initialization routines.
Signature : public void Send(char[,] Data)Description : Sends byte array in 1024 bytes segments.
Signature : public void Send(byte Data)Description : Sends a char to the serial port.
Signature : public void ClosePort()Description : Closes COM port.
Signature : public void Dispose()Description : Flushes objects.
Signature : public string PortDescription : COM port number.
Signature : public uint BaudRateDescription : Communication baud rate.

You can use Smart Device Print Engine in your continuous forms such as sales, order, invoice, etc... Class supports ASCII prints. But, I’m planning to add, Bluetooth support into class, in the near future. I hope it will be necessary for developers who want to add print-out support to their own projects. Also, this article gives information about serial communication through Pocket Devices.

I used Smart Device Print Engine class at mobile sales project which needs to printout invoices on the field. We are still using the class, successfully.

History

  • Version 1.0 - First release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) ASTRON
Turkey Turkey
I'm working at Yasar Holding IT department as senior SAP R/3 BASIS and Development Consultant and system integrator. I have experience on C/C++ for 6 years. Implementing and inviting new technologies is most biggest part of my life. Object oriented paradigm is a philosophy of my vision.

Comments and Discussions

 
QuestionOne Page is skipping if its having multiple pages Pin
Member 1453693114-Aug-19 8:37
Member 1453693114-Aug-19 8:37 
QuestionPersian Characters Pin
Member 254319516-Sep-15 4:53
Member 254319516-Sep-15 4:53 
QuestionWhat about print a image? Pin
Sumon152423-Nov-14 22:26
Sumon152423-Nov-14 22:26 
QuestionQuestion on port. Pin
Member 111281077-Oct-14 2:55
Member 111281077-Oct-14 2:55 
Questionquestion Pin
Member 1110422723-Sep-14 7:59
Member 1110422723-Sep-14 7:59 
SuggestionNice work and idea for starting a PrintEngine Pin
hjgode17-Sep-14 19:11
hjgode17-Sep-14 19:11 
QuestionBarkod Basmak Pin
nihaterdil20-Dec-12 3:52
nihaterdil20-Dec-12 3:52 
QuestionNot Printing On Emulator Pin
webber9913-Dec-12 5:47
webber9913-Dec-12 5:47 
AnswerRe: Not Printing On Emulator Pin
S.VDavis 20-Dec-12 6:05
S.VDavis 20-Dec-12 6:05 
GeneralRe: Not Printing On Emulator Pin
Member 111281077-Oct-14 2:22
Member 111281077-Oct-14 2:22 
QuestionHow to print Chinese character Pin
willsoft_jin6-Mar-12 3:27
willsoft_jin6-Mar-12 3:27 
QuestionTürkçe Karakterler Pin
yamanbas20-Oct-11 5:37
yamanbas20-Oct-11 5:37 
GeneralNot Printing Pin
rakesh.hosagoudar25-May-11 21:23
rakesh.hosagoudar25-May-11 21:23 
GeneralTurkish Charset / Charset Settings / Türkçe Karakter [modified] Pin
tetrat1-Jul-10 21:32
tetrat1-Jul-10 21:32 
QuestionPRINTING ON ZEBRA QL420, FROM SYMBOL PPT8800 Pin
riccardo amico3-Feb-10 6:21
riccardo amico3-Feb-10 6:21 
GeneralUSB printer in windows CE Pin
Sajjad Izadi28-Nov-09 8:03
Sajjad Izadi28-Nov-09 8:03 
GeneralPrinting using Bluetooth printer Pin
marcin.klus26-May-09 10:27
marcin.klus26-May-09 10:27 
Generalmobile printing Pin
oda13-Apr-09 10:33
oda13-Apr-09 10:33 
GeneralPrint logo or image Pin
Member 194710423-Feb-09 2:07
Member 194710423-Feb-09 2:07 
GeneralPrint logo Pin
Member 194710423-Feb-09 2:07
Member 194710423-Feb-09 2:07 
Questionprinter Pin
osanchez8426-Dec-08 9:37
osanchez8426-Dec-08 9:37 
GeneralAumentar tamaño de la letra Pin
lycan07143-Dec-08 4:23
lycan07143-Dec-08 4:23 
GeneralChange font style, size ; Pin
fab.as18-Sep-08 1:15
fab.as18-Sep-08 1:15 
GeneralGreat work. Thanks!!!! Pin
Mastor3-Sep-08 2:09
Mastor3-Sep-08 2:09 
QuestionSPDE PRINTING BMP IMAGE Pin
ramana venkata paidi28-Aug-08 21:47
ramana venkata paidi28-Aug-08 21:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.