如何在不同版本之间保留单个XPO?
我想要一台 XPO,并在 AX4 和 AX5 上使用相同的代码。我正在寻找一个预编译器指令来检查版本,有点像:
#if define AX4
thisCode(...)
#else
thatCode(...)
#endif
I want to have one XPO, and have the same code work on AX4 and AX5. I am looking for a precompiler directive to check the version, sort of like:
#if define AX4
thisCode(...)
#else
thatCode(...)
#endif
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来
SysDataExpImp
宏库可能有一个名为expFormat
的基于版本的宏,您可以像这样使用它:您还可以使用仅在 AX 2009 中找到的宏。
AotExport
宏库包含针对每种类型的 AOT 对象的宏,并且于 2009 年引入了数据集:It looks like the
SysDataExpImp
macro library may have a version based macro calledexpFormat
which you could use like this:You could also use a macro that is only found in AX 2009. The
AotExport
macro library has macros for each type of AOT object and Data Sets were introduced in 2009: