如何使用 C# 创建 MS Access 宏?
我真的不想学习 Visual Basic,而是想坚持使用 C#。我想使用 C# 而不是 Visual Basic 创建 MS Access 宏。这可能吗?如何?
I really do not want to learn Visual Basic and would like to stick with C#. I want to create a MS access macro using C# instead of Visual Basic. Is this possible? How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该考虑以相反的方式进行此操作。使用 Visual Studio 在 C# 中创建 COM 对象,甚至可能创建 Access 外接程序。您可以做在宏中可以做的所有事情,但需要更好的开发环境、单元测试自动化构建等。
You should consider doing this the other way around. Use Visual Studio to create COM objects in C#, possibly even creating an Add-in for Access. You can do everything you would have done in the Macro, but with a much better development environment, unit tests automated builds, etc.
当然,通过 COM 对象模型: http://support.microsoft.com/kb/317114和http://msdn.microsoft.com/en-us/library/ee861519。 aspx 应该可以帮助您入门。
Sure, through the COM object model: http://support.microsoft.com/kb/317114 and http://msdn.microsoft.com/en-us/library/ee861519.aspx should get you started.