DLL 文件版本
我有一个使用 DLL 生成 fastReports 文件的应用程序。
当我需要更改报告数据结构时,我只更改此 DLL 并将其分发给应用程序的所有用户。我如何保证所有人在开始之前都拥有最新版本?
如何从 DLL 文件中生成/提取此信息。
I have an application that uses a DLL to generate fastReports files.
When I need to make changes to the reports data structure I only change this DLL and distribute it to all user of the APP. How can I guarantee that all have the last version before they start?
How can I generate/Extract this information from the DLL file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
此函数将以字符串形式获取文件版本:
This function will get the fileversion as string:
获取Dll版本:
Get Dll version:
使用
SysUtils.GetFileVersion()
获取文件版本需要提前设置文件版本。
Use
SysUtils.GetFileVersion()
Getting file version requires setting file version in advance.
JCL 有 JclFileVersion。两三行就完成了。
JCL have JclFileVersion. Two or three lines and you are done.