0

我是 VC++ 的新手。我需要将数据保存到 Excel 文件中。请给我一些方向。我不知道从哪里开始。请帮忙

谢谢

4

3 回答 3

0

EPPlus is a library that allows to write and read excel files. I used it in c#, but I know it works in vb.net, so it should work for C++ as well since it's a dll.

http://epplus.codeplex.com/

于 2012-04-06T18:50:48.010 回答
0

OfficeWriter是您可能希望查看的另一种解决方案。它是 .NET,因此您可以像 EEPlus 一样将其链接。评估是免费的。它非常强大,因此根据您要生成的确切内容,它可能有点过头了。另外,免责声明,我是构建最新版本的工程师之一。

于 2012-04-10T20:41:59.357 回答
0

如果您只是想编写表格数据,最简单的解决方案之一是使用 ADO。您可以执行 SQL INSERT 查询以在 Excel 工作表上写入数据行:http: //support.microsoft.com/kb/257819

于 2012-04-06T20:57:12.187 回答