当前位置:编程学习 > C#/ASP.NET >>

高分求~关于Word的一些问题!

代码如下
                Object Nothing = System.Reflection.Missing.Value;
                object filename = @"E:\AA.doc";     //要保存到E:\AA.doc
                Word.Application WordApp = new Word.ApplicationClass();

                Word.Document WordDoc = WordApp.Documents.Add(ref Nothing, ref Nothing, ref Nothing, ref Nothing);


                WordDoc.Paragraphs.First.Range.Text = "个人简历";
                WordDoc.Paragraphs.First.Alignment = Word.WdParagraphAlignment.wdAlignParagraphCenter;
               
                //WordDoc.Paragraphs[1].Range.InsertParagraphBefore();
                //WordApp.Selection.Font.Color = Word.WdColor.wdColorRed;
                //WordApp.Selection.Font.Bold = true;
                WordDoc.Paragraphs[1].Range.Text = "基本情况";
                WordDoc.Paragraphs[1].Alignment = Word.WdParagraphAlignment.wdAlignParagraphCenter;


              
                WordDoc.Paragraphs[2].Range.Text = "姓名:" + info.Name;  -------(此处运行到此出现:集合所需求的成员不存在这个错误)

                WordDoc.Paragraphs[2].Alignment = Word.WdParagraphAlignment.wdAlignParagraphLeft;   



请问怎么新建一个WordDoc.Paragraphs[i] 呢? --------------------编程问答-------------------- mark --------------------编程问答-------------------- Paragraphs应该是段落的问题吧  
你在输入完上一段以后加一回车
wordApp.Selection.Range.InsertParagraphAfter();

然后继续
wordApp.Selection.Range.text = xxx
 
应该能实现功能
我也是初学者,希望能帮上你
--------------------编程问答-------------------- 由于不明白你要问什么
给你发段将WordDoc文档对象的内容保存为DOC文档的代码
if(this.richTextBox1.Text=="")
return;
if(this.saveFileDialog1.ShowDialog()==DialogResult.Cancel)
return;
string FileName=this.saveFileDialog1.FileName;
if(FileName.Length<1)
return;
FileName+=".doc";
try
{
Word.ApplicationClass MyWord=new Word.ApplicationClass(); 
Word.Document MyDoc;
Object Nothing=System.Reflection.Missing.Value; 
MyDoc=MyWord.Documents.Add(ref Nothing,ref Nothing,ref Nothing,ref Nothing); 
MyDoc.Paragraphs.Last.Range.Text=this.richTextBox1.Text; 
object MyFileName=FileName;
//将WordDoc文档对象的内容保存为DOC文档 
MyDoc.SaveAs(ref MyFileName,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing); 
//关闭WordDoc文档对象 
MyDoc.Close(ref Nothing, ref Nothing, ref Nothing); 
//关闭WordApp组件对象 
MyWord.Quit(ref Nothing, ref Nothing, ref Nothing); 
MessageBox.Show("WORD文件保存成功","信息提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
catch(Exception Err)
{
MessageBox.Show("WORD文件保存操作失败!"+Err.Message,"信息提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
补充:.NET技术 ,  C#
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,