Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1102267
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T01:09:34+00:00 2026-05-17T01:09:34+00:00

How to print .rtf file using C#? (WinForms/WPF application)

  • 0

How to print .rtf file using C#? (WinForms/WPF application)

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T01:09:35+00:00Added an answer on May 17, 2026 at 1:09 am

    From https://support.microsoft.com/en-us/kb/812425:

    In Visual C# .NET or Visual C# 2005, create a new Class Library project that is named RichTextBoxPrintCtrl. By default, Class1.cs is created.
    Change the name of Class1.cs to RichTextBoxPrintCtrl.cs.
    In Solution Explorer, right-click References, and then click Add Reference.
    In the Add Reference dialog box, double-click System.Drawing.dll and System.Windows.Forms.dll, and then click OK.

    Replace the existing code in RichTextBoxPrintCtrl.cs with the following code:

    using System;
    using System.Windows.Forms;
    using System.Drawing;
    using System.Runtime.InteropServices;
    using System.Drawing.Printing;
    
    namespace RichTextBoxPrintCtrl
    {
        public class RichTextBoxPrintCtrl:RichTextBox
        {
            //Convert the unit used by the .NET framework (1/100 inch) 
            //and the unit used by Win32 API calls (twips 1/1440 inch)
            private const double anInch = 14.4;
    
            [StructLayout(LayoutKind.Sequential)] 
                private struct RECT
            {
                public int Left;
                public int Top;
                public int Right;
                public int Bottom;
            }
    
            [StructLayout(LayoutKind.Sequential)]
                private struct CHARRANGE
            {
                public int cpMin;         //First character of range (0 for start of doc)
                public int cpMax;           //Last character of range (-1 for end of doc)
            }
    
            [StructLayout(LayoutKind.Sequential)]
                private struct FORMATRANGE
            {
                public IntPtr hdc;             //Actual DC to draw on
                public IntPtr hdcTarget;       //Target DC for determining text formatting
                public RECT rc;                //Region of the DC to draw to (in twips)
                public RECT rcPage;            //Region of the whole DC (page size) (in twips)
                public CHARRANGE chrg;         //Range of text to draw (see earlier declaration)
            }
    
            private const int WM_USER  = 0x0400;
            private const int EM_FORMATRANGE  = WM_USER + 57;
    
            [DllImport("USER32.dll")]
            private static extern IntPtr SendMessage (IntPtr hWnd , int msg , IntPtr wp, IntPtr lp); 
    
            // Render the contents of the RichTextBox for printing
            //  Return the last character printed + 1 (printing start from this point for next page)
            public int Print( int charFrom, int charTo,PrintPageEventArgs e)
            {
                //Calculate the area to render and print
                RECT rectToPrint; 
                rectToPrint.Top = (int)(e.MarginBounds.Top * anInch);
                rectToPrint.Bottom = (int)(e.MarginBounds.Bottom * anInch);
                rectToPrint.Left = (int)(e.MarginBounds.Left * anInch);
                rectToPrint.Right = (int)(e.MarginBounds.Right * anInch);
    
                //Calculate the size of the page
                RECT rectPage; 
                rectPage.Top = (int)(e.PageBounds.Top * anInch);
                rectPage.Bottom = (int)(e.PageBounds.Bottom * anInch);
                rectPage.Left = (int)(e.PageBounds.Left * anInch);
                rectPage.Right = (int)(e.PageBounds.Right * anInch);
    
                IntPtr hdc = e.Graphics.GetHdc();
    
                FORMATRANGE fmtRange;
                fmtRange.chrg.cpMax = charTo;               //Indicate character from to character to 
                fmtRange.chrg.cpMin = charFrom;
                fmtRange.hdc = hdc;                    //Use the same DC for measuring and rendering
                fmtRange.hdcTarget = hdc;              //Point at printer hDC
                fmtRange.rc = rectToPrint;             //Indicate the area on page to print
                fmtRange.rcPage = rectPage;            //Indicate size of page
    
                IntPtr res = IntPtr.Zero;
    
                IntPtr wparam = IntPtr.Zero;
                wparam = new IntPtr(1);
    
                //Get the pointer to the FORMATRANGE structure in memory
                IntPtr lparam= IntPtr.Zero;
                lparam = Marshal.AllocCoTaskMem(Marshal.SizeOf(fmtRange));
                Marshal.StructureToPtr(fmtRange, lparam, false);
    
                //Send the rendered data for printing 
                res = SendMessage(Handle, EM_FORMATRANGE, wparam, lparam);
    
                //Free the block of memory allocated
                Marshal.FreeCoTaskMem(lparam);
    
                //Release the device context handle obtained by a previous call
                e.Graphics.ReleaseHdc(hdc);
    
                //Return last + 1 character printer
                return res.ToInt32();
            }
    
        }
    }
    

    On the Debug menu, click Start to run the application. Form1 is displayed.
    Type some text in RichTextBoxPrintCtrl.
    Click Page Setup to set the page settings.
    Click Print Preview to view the print preview of the page.
    Click Print to print the content of RichTextBoxPrintCtrl.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How to print a RTF document in a MFC application without displaying it? The
I'm trying to print out some simple RTF-formatted text to a laser printer using
I print documents (batch print) using Word.Document.PrintOut method. How can I print a document
I have file with contents in list form such as [1,'ab','fgf','ssd'] [2,'eb','ghf','hhsd'] [3,'ag','rtf','ssfdd'] I
I'm using Plupload to manage file uploads for my site. When I configure Plupload
I have created one Windows Forms application with C# and MySQL (using MySQL Connector
I'm trying Perl on Mac. I have to read an RTF text file. the
I'm trying to print Arabic in some PDF documents using the Java code found
I have an application who have multiple files .rtf i open it on a
Print a web page in landscape mode using javascript. While printing, I want to:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.