C#怎么导出 Excel2007

C#怎么导出 Excel2007,第1张

SaveFileDialog saveFileDialog = new SaveFileDialog()

saveFileDialog.Filter = "Execl files (*.xls)|*.xls"

saveFileDialog.FilterIndex = 0

saveFileDialog.RestoreDirectory = true

saveFileDialog.CreatePrompt = true

saveFileDialog.Title = "导出Excel文件到"

DateTime now = DateTime.Now

saveFileDialog.FileName = now.Year.ToString().PadLeft(2) + now.Month.ToString().PadLeft(2, '0') + now.Day.ToString().PadLeft(2, '0') + "-" +

now.Hour.ToString().PadLeft(2, '0') + now.Minute.ToString().PadLeft(2, '改搏悉银清0') + now.Second.ToString().PadLeft(2, '0')

if (saveFileDialog.ShowDialog() == DialogResult.Cancel)

return

Stream myStream

myStream = saveFileDialog.OpenFile()

StreamWriter sw = new StreamWriter(myStream, System.Text.Encoding.GetEncoding("gb2312"核乎))

try

{

sw.WriteLine(sWriteTotal)

sw.Close()

myStream.Close()

MessageBox.Show("导出成功")

}

catch (Exception ex)

{

MessageBox.Show(ex.ToString())

}

finally

{

sw.Close()

myStream.Close()

}

虽然已安装Office2007,但是Office2003的组件还是可以安装的。放如Office2003的安装盘,运行安装程序,在选择安装哪些程序时,去掉所有的程序(也就是word exel等都去掉),勾选下面的“选择应用程序的高级自定义”点下一步,这时可以看到全部组件。上面的全都选择不羡迅兄安装。最后一个Office工具也选择“不安装”,然后展开它,里面有一个“用户设置保存向导”,这一项选“从本机运兄袭行全部程序”然后下一步。安装好之后,就可以像Office2003那样保存和导入用户配置文件了。

转发昌隐别人的,看看是不是对你有用


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12379465.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-25
下一篇 2023-05-25

发表评论

登录后才能评论

评论列表(0条)

保存