我可以使用命令行将项目导出到 XPO 文件吗? (AX 2009)
是否可以使用命令行将项目导出到 XPO 文件? (AX 2009)
Is it possible to export an project with the command line to a XPO file? (AX 2009)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看类 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.