Delphi HTML Javascript C# Print ShellExecute C# Print GetPort SMTP getElementById SW_SHOW array SW_HIDE SendMail kbdevent ShowWindow Print Dialog TOSVERSIONINFO Substring TPrintDialog Linking Drop down Key event OnFilePrint OnMediaChanged OnPrintPage available memory OS Version Information PageSetupDialog Paint Form PC 켜져 있는 시간 알아내는 방법 Animated Icon Print HTML Print Setting Print Text Files PrintDialog PrintDocument PrintEventArgs PrintHtml PrintLineNumbers Algorithm Desktop Wallpaper Drop down Dropdown 켜져있는시간 Focus free memory free memory size free memory space DISP_CHANGE_NOTUPDATED GetLineBreakCharPosition GetSystemDefaultLangID Keyboard Event DateTimeToSystemTime Gradient Filled Form CreateEllipticRgn Hide Taskbar ChangeDisplaySettings HtmlPrinter Caption Bar available memory size

PRINT.ZIP

Changing the Title of a Print Dialog in Delphi   (created at Apr 20, 2011)   105  

The TPrintDialog component displays a standard Windows dialog box for sending jobs to a printer. Unfortunately, the TPrintDialog does not expose the Title property. By handing the OnShow event of a print dialog you can specify the text for the dialog’s tit...

How to print external document ?   (created at Sep 08, 2009)   43  

Without complex programming, you can print document by ShellExecute function.use ShellAPI;...ShellExecute(Handle, 'print', PChar('c: est est.doc'), nil, nil, SW_SHOW);

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

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...

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

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){  

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

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...

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

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...

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

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...

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

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

Printing A Page   (created at Aug 26, 2007)   50  

how to print the current page

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

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)     ...

Linking Drop Downs   (created at Aug 26, 2007)   77  

Linking drop downs is a frequent question. Here is a javascript based example