首页上一页 1 下一页尾页 1 条记录 1/1页
c#项目开发案例全程实录第二版第八章企业人事管理系统运行时错误
发表在C#图书答疑
2012-04-19
是否精华
是
否
版块置顶:
是
否
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#,刚动了几次都不成功,特意来论坛求教,希望能够帮助
//创建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#,刚动了几次都不成功,特意来论坛求教,希望能够帮助