HOME Delphi Javascript HTML C# Cookie Print C# Print SMTP C# CGI C# CGI Example C# CGI Sample CGI Substring GetEnvironmentVariable SmtpMail HttpCookie if MailMessage Print Dialog QUERY_STRING TPrintDialog PdfWriter C# List MoveNext OnFilePrint C# DLL Call OnPrintPage PageSetupDialog PDF PDF Creation PDF Generation LIFO Peek Pop C# DLL WriteLine Print HTML Print Setting Print Text Files PrintDialog BinaryReader .NET Print DLLImport EnableRaisingEvent Enqueue FIFO FileStream FileSystemEventArgs FileSystemEventHandler FileSystemWatcher GetEnumerator List Dequeue GetLineBreakCharPosition Create PDF Hashtable ContainsValue HtmlPrinter CallBackMethod CallBack

GETLINEBREAKCHARPOSITION.ZIP

A Customizable Printing Text Class   (created at Aug 27, 2007)   40  

At least once,in the life of a programmer,it succeeds that the moment arrives to print a text document. The task is quite simple for a .NET programmer,but even more with PrintTextDocument class. This class was written to help in printing text documents,add...

Adding Custom Paper Sizes To Named Printers   (created at Aug 27, 2007)   67  

My company needed me to programmatically add a custom paper size (a printer form) to the default printer and set the printer to use the custom paper size. After looking around,the best alternative we could find was to make use of the printing and print spo...

Print HTML In C# With Or Without The Web Browser Control And The Print Dialog   (created at Aug 27, 2007)   77  

Printing with the web browser control in .NET platform is not hard work. But the challenge for me was to navigate to a specific URL and then print the document with a single click event. There was another challenge I had to face,when I tried to print an HT...

Simplified .NET Printing In C#   (created at Aug 27, 2007)   83  

This is a .NET approach to Simplified Printing in which,we are going to use a RichTextBox to cache all of our text for printing in printDocument.// Form Loadprivate void Form1_Load(object sender,System.EventArgs e){  

How To Print Text In C#   (created at Aug 27, 2007)   55  

If you want to use MultipadPrintDocument in your own code,it's best to rename the class and its constructor to something more appropriate. Then add a variable of type XXXPrintDocument to your form and implement the menu items as follows:void OnFilePrint(Ob...

C Sharp Lists   (created at Aug 27, 2007)   83  

It is a fairly common programming scenario to find ourselves with a list of identical objects. In the past,without adequate support from programming languages,we found ourselves writing a lot of searching and sorting code,and that may have put you off usin...

Simple Example Of IF/THEN Using C#   (created at Aug 27, 2007)   46  

Simple example of IF/THEN using C#<%@ Page Language="C#" %>

Get A Print Dialog Box By Clicking A Button   (created at Aug 26, 2007)   46  

In some applications,some times we need a print buttonHere is a sample tip code to get print properties.
    In some applications,some tim...

How To Show The Print Dialog And Print Text Files   (created at Aug 25, 2007)   71  

This code show an example of how to print a text of a RichEdit component.unit Unit1; interface uses   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,   StdCtrls, ComCtrls; type   TForm1 = class(TForm)     ...