junlingzhu2002 发表于 2012-3-19 10:22:00

求助/summaryCell1除法的计算和summaryCell1的值得取得

参考以前的帖子,SummaryCell除法的计算,有以下方法,我用的是VB,该怎么改呀,
      private void Form1_Load(object sender, EventArgs e)
      {
            this.gcMultiRow1.DataError += new EventHandler<GrapeCity.Win.MultiRow.DataErrorEventArgs>(gcMultiRow1_DataError);
      }
      void gcMultiRow1_DataError(object sender, GrapeCity.Win.MultiRow.DataErrorEventArgs e)
      {
            if (e.CellName == "summaryCell1")
            {
                // 忽略计算错误。
                // 如果需要忽略特定计算错误,可以判断e.Exception.Message里的信息。
                return;
            }
            MessageBox.Show(e.Exception.Message);
      }

同样参考以前的帖子,SummaryCell值得取得,这个是什么意思,
写在哪里
在RunTime直接取SummaryCell的Value属性就可以了。假定下面的Cell0是SummaryCell。this.Text = this.gcMultiRow1.ColumnFooters.Cells.Value.ToString();

复制代码

robert 发表于 2012-3-20 08:10:00

http://www.developerfusion.com/tools/convert/csharp-to-vb/
这个网站可以把C#代码转成VB代码。你可以试一下。
页: [1]
查看完整版本: 求助/summaryCell1除法的计算和summaryCell1的值得取得