我可以使用命令行将项目导出到 XPO 文件吗? (AX 2009)

发布于 2024-12-17 17:11:11 字数 40 浏览 1 评论 0原文

是否可以使用命令行将项目导出到 XPO 文件? (AX 2009)

Is it possible to export an project with the command line to a XPO file? (AX 2009)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如此安好 2024-12-24 17:11:11

查看类 C\SysStartupCmd*。我知道您可以使用一些时髦的命令行工具,但我认为最简单的事情是创建您自己的类来“执行”您想要的操作,而不是扩展 SysStartupCmd 类。

一个很好的例子是 Classes\SysStartupCmdCompileAll。您只需要一个方法,它接受一个参数,然后在 C\SysStartupCmd\construct 方法中添加您的案例。

然后要调用它,您可以从命令行调用客户端,例如“ax32.exe -startupcmd=compileall_+”,其中“+”是您的参数(如果您选择使用)。 “compileall”是 SysStartupCmd 构造中引用的内容,然后您可以使用一种方法创建类来执行您想要的操作。

Look at the classes C\SysStartupCmd*. I know there are some funky command line tools you can use, but the easiest thing I would think is to create your own class that "does" what you want, than extend the SysStartupCmd class.

A VERY good example is Classes\SysStartupCmdCompileAll. You only need one method, and it accepts a parameter, and you add your case in the C\SysStartupCmd\construct method.

Then to call it, you call the client from the command line like, "ax32.exe -startupcmd=compileall_+" where the "+" is your parameter, if you choose to have one. "compileall" is what is referenced in the construct of the SysStartupCmd, and then you create your class with one method to do what you would like.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文