找回密码
 立即注册

QQ登录

只需一步,快速开始

tcc01

注册会员

3

主题

16

帖子

155

积分

注册会员

积分
155

活字格认证

最新发帖
tcc01
注册会员   /  发表于:2011-4-8 14:41  /   查看:7243  /  回复:8
FarPoint.Web.Spread.SheetView需要引用哪个东东呀?
spread5.0滴,win2008

8 个回复

倒序浏览
gw0506
超级版主   /  发表于:2011-4-8 14:42:00
沙发
FarPoint.Web.Spread.dll
回复 使用道具 举报
tcc01
注册会员   /  发表于:2011-4-8 14:47:00
板凳
fpSpread1.Sheets[0].ColumnHeaderRowCount = 3;是说明书上的,这样写不行,我改成了fpSpread1.Sheets[0].ColumnHeader.RowCount = 3;就可以了。但是fpSpread1.Sheets[0].AddColumnHeaderSpanCell(1, 0, 1, 2);按这个写就不行
回复 使用道具 举报
tcc01
注册会员   /  发表于:2011-4-8 14:47:00
地板
我引用了这个dll了
回复 使用道具 举报
gw0506
超级版主   /  发表于:2011-4-8 15:05:00
5#
fpSpread1.Sheets[0].AddSpanCell(1, 0, 1, 2)

那你就看VisualStudio给你的错误提示信息,缺什么,补什么。
回复 使用道具 举报
tcc01
注册会员   /  发表于:2011-4-8 15:09:00
6#
缺FarPoint.Web.Spread.SheetView这个,引用了FarPoint.Web.Spread,但是还是提示不对!
回复 使用道具 举报
gw0506
超级版主   /  发表于:2011-4-8 15:51:00
7#
发个demo上来吧~
回复 使用道具 举报
tcc01
注册会员   /  发表于:2011-4-12 10:41:00
8#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using FarPoint.Web.Spread;
using FarPoint.Web.Spread.Design;


namespace sp
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            FpSpread1.Sheets[0].AddColumnHeaderSpanCell(1, 0, 1, 2);
上面那句话提示有问题,没有引用FarPoint.Web.Spread.SheetView这个
回复 使用道具 举报
gw0506
超级版主   /  发表于:2011-4-12 11:08:00
9#
你这只是在文件同价了using。
你的工程中有没有加引用?
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部