c#项目开发案例全程实录第二版第八章企业人事管理系统运行时错误仍未解决
发表在C#图书答疑
2012-04-20
是否精华
是
否
版块置顶:
是
否
PerForm文件夹下的F_ManFile.cs文件中,下列代码
//创建Word文档
Word.Application wordApp = new Word.ApplicationClass();
Word.Document wordDoc = wordApp.Documents.Add(ref Nothing, ref Nothing, ref Nothing, ref Nothing);
wordApp.Visible = true;
new Word.ApplicationClass();显示错误提示类型“Word.ApplicationClass”未定义构造函数;
此外在849行以及下面所有设计Item的代码中
wordDoc.Tables.Add(rng2, 14, 6, ref missingValue, ref missingValue);
wordDoc.Tables.Item(1).Rows.HeightRule = Word.WdRowHeightRule.wdRowHeightAtLeast;
wordDoc.Tables.Item(1).Rows.Height = wordApp.CentimetersToPoints(float.Parse("0.8"));
wordDoc.Tables.Item(1).Range.Font.Size = 10;
wordDoc.Tables.Item(1).Range.Font.Name = "宋体";
Item显示错误提示“Word.Tables”不包含“Item”的定义,并且找不到可接受类型为“Word.Tables”的第一个参数的扩展方法“Item”(是否缺少using指令或程序集引用?)
自己刚学c#,刚动了几次都不成功,特意来论坛求教,希望能够帮助
管理员东方指导的需要在“引用”文件夹中添加: Microsoft word 9.0 Object Library ,我用的vs2010,选择添加 Microsoft word 11.0 Object Library 后,在引用文件夹下并没有出现这个项目,还是只有
Microsoft.Office.Core
System
System.Data
System.Data.DataSetExtensions
System.Deployment
System.Drawing
System.windows.Forms
System.Xml
VBIDE
Word
Service References
运行时还是同样的错误,求解决啊
//创建Word文档
Word.Application wordApp = new Word.ApplicationClass();
Word.Document wordDoc = wordApp.Documents.Add(ref Nothing, ref Nothing, ref Nothing, ref Nothing);
wordApp.Visible = true;
new Word.ApplicationClass();显示错误提示类型“Word.ApplicationClass”未定义构造函数;
此外在849行以及下面所有设计Item的代码中
wordDoc.Tables.Add(rng2, 14, 6, ref missingValue, ref missingValue);
wordDoc.Tables.Item(1).Rows.HeightRule = Word.WdRowHeightRule.wdRowHeightAtLeast;
wordDoc.Tables.Item(1).Rows.Height = wordApp.CentimetersToPoints(float.Parse("0.8"));
wordDoc.Tables.Item(1).Range.Font.Size = 10;
wordDoc.Tables.Item(1).Range.Font.Name = "宋体";
Item显示错误提示“Word.Tables”不包含“Item”的定义,并且找不到可接受类型为“Word.Tables”的第一个参数的扩展方法“Item”(是否缺少using指令或程序集引用?)
自己刚学c#,刚动了几次都不成功,特意来论坛求教,希望能够帮助
管理员东方指导的需要在“引用”文件夹中添加: Microsoft word 9.0 Object Library ,我用的vs2010,选择添加 Microsoft word 11.0 Object Library 后,在引用文件夹下并没有出现这个项目,还是只有
Microsoft.Office.Core
System
System.Data
System.Data.DataSetExtensions
System.Deployment
System.Drawing
System.windows.Forms
System.Xml
VBIDE
Word
Service References
运行时还是同样的错误,求解决啊