如何在MSAccess 2003窗体中添加.Net控件?
我需要将卡片文件控件添加到 MSAccess 2003 表单(选项卡控件的选项卡页)中。
在 .NET 中编写此代码的最佳方法是什么???
有什么建议可以让我开始吗?
马尔科姆
I have a requirement to add like a cardfile control to a MSAccess 2003 form (tab page of a tab control).
What would be the best method to do this writing it in .NET???
Any suggestions to get me started??
Malcolm
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将其编译为 ActiveX 控件,因为 Access 2003 是 COM 客户端,无法直接运行托管代码。
这有点复杂,但这里有一个关于如何做到这一点的不错的教程:
在 .NET 中编写 ActiveX 控件
但是,如果最终目标就是添加一个“cardfile 控件”,假设您正在谈论 Access 表单中的选项卡控件,那么您最好根本不使用 .NET。只需使用内置的 Access 选项卡控件即可。
You have to compile it as an ActiveX control since Access 2003 is a COM client and can't run managed code directly.
It's a little bit involved, but here is a decent tutorial on how to do that:
Writing an ActiveX Control in .NET
However, if the end goal is to just add a "cardfile control" assuming you are talking about a tab control to an Access form, you are better off not using .NET at all. Just use the built-in Access tab control instead.