回复 2楼roger.wang的帖子
不好意思 公司的既存项目 没有办法给您demo
我调试了下 在savaExcel之前抓取了下 combobox里面的值 也是正确的只有导出的时候就出现了错误
我的saveExcel 方法如下:
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = LocalAppInfo.XlsFileFilter;
sfd.FilterIndex = 1;
sfd.RestoreDirectory = true;
if (sfd.ShowDialog() == DialogResult.OK)
{
ColorSetBefore();
string fileName = sfd.FileName.ToString();
this.spdSearchResult.Sheets[0].Protect=false;
FarPoint.Excel.ExcelWarningList list = new FarPoint.Excel.ExcelWarningList();
this.spdSearchResult.SaveExcel(fileName,FarPoint.Win.Spread.Model.IncludeHeaders.BothCustomOnly,list);
ColorSet();
ColorSetAfter();
MessageBox.Show("EXCEL出力完成しました。");
} |