可以用相应的组件来直接打开这些文件.pdf的有Adobe PDF reader 组件. 
word 也有的.

解决方案 »

  1.   

    可以通过Process类实现。具体我已经实现了,请看下面代码。
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using System.Diagnostics;
    namespace WindowsApplication1
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
            private void button1_Click(object sender, EventArgs e)
            {
                string pdfFilePath = "c:\\a.pdf";
                
               Process.Start(pdfFilePath);
            }
        }
    }
      

  2.   

    要用控件,要不就用机器上装的软件,process直接打开。