Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C#
Article

Converting RTF to TXT format

Rate me:
Please Sign up or sign in to vote.
4.82/5 (20 votes)
13 Aug 2005CPOL2 min read 256.6K   1.8K   46   53
Using Word Automation for converting files to XML, RTF, TXT, HTML, etc. formats.

Image 1

Introduction

Often there is a need to convert a file from one format to another. Most of the tools out there seem to cost some money. Not a lot of money, but they aren’t free. Anyway, several file types that you may want to convert to can be done through Microsoft Word. Here is an example of using C# to access Word Automation object to read in a file type and then write out a different file type.

Background

I had a need to convert an RFT format to TXT. As I was looking for solutions, I had a hard time finding one that was free. So I decided to use Word Automation to accomplish my goals. Note that in this example I am using Office 2003. If you do not have Office 2003 this will still probably work except for the XML output since that is new to Word 2003. The sample program I have included in the download with the source code allows you to set an input file. This is loaded into the Word object. Then there is a ComboBox that contains a list of formats that you can convert to.

The code

To do Word Automation you need to add a reference to your project to the Word DLL.

Image 2

Add a reference to your project. Click on the COM tab. Down towards the bottom you will find a Microsoft Word 11.0 Object Library. Select and add to references. Now you will be able to access the Word functionality in code.

C#
private void ConvertFile()
{
  String inFileName = txtBoxInputFile.Text;
  if (!File.Exists(inFileName))
  { //Valid file wasn't entered.
    MessageBox.Show(inFileName + "does not exist." +   
        "Please select an existing file to convert.");
    return;
  }
  // Get the myItem object from the selected 
  // item in the save as combo box.
  myItem tmpItem = 
         cmbBoxOutput.SelectedItem as myItem;

  //Set some vars
  object fileName = inFileName; 
  object fileSaveName = inFileName.Substring(0,
                       inFileName.LastIndexOf("."))  
                       + tmpItem.ItemExtension; //".txt";
  object  vk_read_only  = false;
  object  vk_visible  = true;
  object  vk_true    = true;
  object  vk_false    = false; 
  object  vk_dynamic  = 2;

  object missing = System.Reflection.Missing.Value; 
  // the way to handle parameters you 
  // don't care about in .NET 
  object  vk_range = missing;
  object  vk_to = missing;
  object  vk_from = missing;
  Microsoft.Office.Interop.Word.ApplicationClass vk_word_app = 
           new Microsoft.Office.Interop.Word.ApplicationClass();
            
  // Open the document that was chosen by the dialog 
  Microsoft.Office.Interop.Word.Document aDoc = null;
  try
  {
    aDoc = vk_word_app.Documents.Open(
                 ref fileName, ref missing, 
                 ref vk_read_only, ref missing, 
                 ref missing, ref missing, 
                 ref missing, ref missing, 
                 ref missing, ref missing, 
                 ref missing, ref vk_visible, 
                 ref missing, ref missing, 
                 ref missing, ref missing );                 
  }
  catch (System.Exception ex)
  { 
                
    MessageBox.Show("There was a problem opening "+
                  fileName +" error:"+ex.ToString());
  }

  // Save the doc as the format requested file
  try
  {

  //Get the word saveas format from 
  //the myItem object we got from the 
  //save as combo box selected item
  object vk_saveformat = tmpItem.ItemWord;
            
  aDoc.SaveAs(ref fileSaveName, ref vk_saveformat, 
       ref missing, ref missing, ref missing, ref missing,
       ref missing, ref missing, ref missing, ref missing, 
       ref missing, ref missing, ref missing, ref missing, 
       ref missing, ref missing);
  }
  catch (System.Exception ex)
  { MessageBox.Show("Error : "+ex.ToString());}
  finally
  { //Don't forget to close everything up...
    if (aDoc != null)
    {
      aDoc.Close(ref vk_false, ref missing, ref missing);
    }
    vk_word_app.Quit(ref vk_false,ref missing,ref missing);
  }
}

The main thing that does the work is a Word SaveFormat.

C#
Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatRTF

Under WdSaveFormat you have all the available formats that you would see in Word when you do a SaveAs. I am storing this in the ComboBox in the myItem class.

C#
public class myItem
{
  //vars to hold the property
  private String _itemName; 
  private String _itemExtension;
  private Object _itemWord;

  ...

  //This is the work saveas format object
  public Object ItemWord 
  {
    get{ return _itemWord; }
    set{ _itemWord = value; }
  }

  // This is what causes the combo box 
  // name to show up correctly.
  public override String ToString() 
  {
    return ItemName.ToString ();
  }
  //The constructors
  public myItem(){}

  public myItem(String inName, 
           String inExtension, Object inWordType)
  { // This allows us to set the properties 
    // when the object is created.
    ItemName = inName;
    ItemExtension = inExtension;
    ItemWord = inWordType;
  }
}

Loading the ComboBox looks like this:

C#
cmbBoxOutput.Items.Add(new myItem("XML Doc *.xml)", ".xml", 
    Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatXML));

Conclusion

So this is a pretty simple solution. It is important to note that when you save to XML you will get the word formatting stuff included in the XML. Some of that may not be what you want in your XML doc. Still the solution works well for converting RTF format to TXT.

My thanks to all the other CodeProject articles on Word automation that helped me put this solution together.

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)
United States United States
I started my programmer career over 26 years ago doing COBOL and SAS on a MVS mainframe. It didn't take long for me to move into windows programming. I started my windows programming in Delphi (Pascal) with a Microsoft SQL server back end. I started working with vb.net when the beta 2 came out in 2001. After spending most of my programming life as a windows programmer I started to check out asp.net in 2004. I achieved my MCSD.net in April 2005. I have done a lot of MS SQL database stuff. I have a lot of experience with Window Service and Web services as well. I spent three years as a consultant programing in C#. I really enjoyed it and found the switch between vb.net and C# to be mostly syntax. In my current position I am programming in C# working on WPF and MSSql database stuff. Lately I have been using VS2019.

On a personal note I am a born again Christian, if anyone has any questions about what it means to have a right relationship with God or if you have questions about who Jesus Christ is, send me an e-mail. ben.kubicek[at]netzero[dot]com You need to replace the [at] with @ and [dot] with . for the email to work. My relationship with God gives purpose and meaning to my life.

Comments and Discussions

 
GeneralRe: Getting Interop Error Pin
kubben4-Jan-07 8:34
kubben4-Jan-07 8:34 
GeneralCoverting to Word 2.0 Pin
milicko4-Oct-06 2:05
milicko4-Oct-06 2:05 
GeneralRe: Coverting to Word 2.0 Pin
kubben4-Oct-06 2:43
kubben4-Oct-06 2:43 
GeneralRe: Coverting to Word 2.0 Pin
milicko4-Oct-06 3:22
milicko4-Oct-06 3:22 
GeneralRe: Coverting to Word 2.0 Pin
kubben4-Oct-06 3:25
kubben4-Oct-06 3:25 
QuestionRTF String t o html Pin
MarijanC#25-Aug-05 20:51
MarijanC#25-Aug-05 20:51 
AnswerRe: RTF String t o html Pin
kubben26-Aug-05 2:13
kubben26-Aug-05 2:13 
GeneralRe: RTF String t o html Pin
SkyFrog2214-Feb-06 10:40
SkyFrog2214-Feb-06 10:40 
GeneralOpen Office instead of MS Word Pin
TomazZ16-Aug-05 2:50
TomazZ16-Aug-05 2:50 
GeneralRe: Open Office instead of MS Word Pin
kubben16-Aug-05 2:53
kubben16-Aug-05 2:53 
QuestionWhy in the world use Word? Pin
mav.northwind13-Aug-05 21:29
mav.northwind13-Aug-05 21:29 
AnswerRe: Why in the world use Word? Pin
kubben14-Aug-05 11:24
kubben14-Aug-05 11:24 
GeneralRe: Why in the world use Word? Pin
Judah Gabriel Himango15-Aug-05 12:08
sponsorJudah Gabriel Himango15-Aug-05 12:08 
GeneralRe: Why in the world use Word? Pin
kubben16-Aug-05 2:55
kubben16-Aug-05 2:55 
AnswerRe: Why in the world use Word? Pin
Judah Gabriel Himango15-Aug-05 12:03
sponsorJudah Gabriel Himango15-Aug-05 12:03 
GeneralRe: Why in the world use Word? Pin
kubben16-Aug-05 2:58
kubben16-Aug-05 2:58 
GeneralRe: Why in the world use Word? Pin
Martin Richter [rMVP C++]1-Sep-05 3:06
Martin Richter [rMVP C++]1-Sep-05 3:06 
GeneralRe: Why in the world use Word? Pin
Judah Gabriel Himango1-Sep-05 4:29
sponsorJudah Gabriel Himango1-Sep-05 4:29 
GeneralRe: Why in the world use Word? Pin
kubben1-Sep-05 8:22
kubben1-Sep-05 8:22 
GeneralRe: Why in the world use Word? Pin
kubben1-Sep-05 8:21
kubben1-Sep-05 8:21 
GeneralRe: Why in the world use Word? Pin
Martin Richter [rMVP C++]1-Sep-05 20:09
Martin Richter [rMVP C++]1-Sep-05 20:09 
GeneralRe: Why in the world use Word? Pin
kubben2-Sep-05 7:25
kubben2-Sep-05 7:25 
AnswerRe: Why in the world use Word? Pin
cbadal16-Aug-05 5:01
cbadal16-Aug-05 5:01 
GeneralRe: Why in the world use Word? Pin
kubben16-Aug-05 5:48
kubben16-Aug-05 5:48 
GeneralRe: Why in the world use Word? Pin
kubben16-Aug-05 6:23
kubben16-Aug-05 6:23 

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.