views:

61

answers:

3

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

A: 

You have two problems here:

  1. Writing to a file
  2. Understanding the .rtf format
duffymo
A: 

Printing Word(RTF) Documents in C#

Alternatively, you can open your file in a RichTextBox control, and send to printing from there.

KMan