delphi中的Dll数据模块?
我创建了一个有问题的数据库程序。 我使用 Borland Delphi 7.x
我的问题是
“如何使用 Delphi 在 Dll(动态链接库)中创建数据模块?
I created a database program which has a problem.
I used Borland Delphi 7.x
My Question is
"How to create a data module in Dll (Dynamic Link Library) With Delphi?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以从数据模块创建代码,就像在普通应用程序中一样。
文件|新建|数据模块
但我猜测您想在 DLL 中创建数据模块的实例。
DataModule 与其他类和组件没有什么不同,并且可以在代码中创建。
You can create the code from the data module, just like you would in a normal application.
File|New|Data Module
But I am guessing that you want to create an instance of a data module in a DLL.
DataModules are no different other classes and components, and can be created in code.
在 IDE 中打开 DLL 项目。 在“文件|新建”菜单下,您是否看到“数据模块”选项?
Open your DLL project in the IDE. Under the File|New menu, do you see an option for Data Module?