2

我的任务是在 VB.Net 中创建一个 Windows 应用程序,其中一项要求是从 MSSQL 数据库中读取数据,并将某些值放入 PDF 表单中。如何使用 VB.Net 将数据放入预先存在的 PDF 文件中?另外,是否可以将 PDF 文件作为资源而不是从外部调用它?

4

2 回答 2

0

You may be able to take advantage of a 3rd party component like iTextSharp which is a PDF library. It's written in C#, but could be added to your existing solution as a separate project, or compiled and referenced as a library.

This library specifically references the ability to fill in PDF forms and should fit the bill for filling in your pre-existing PDF form programatically.

于 2013-05-24T01:57:26.250 回答
0

Docotic.Pdf 库可用于填写 PDF 表单。

该库的示例(可用的 C# 和 VB.NET 版本)展示了如何:

您可能会发现将数据库中的数据写入 PDF博客条目对您的情况也很有用。

免责声明:我是该库的开发人员之一。

于 2013-05-24T07:40:57.847 回答