Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以在 Catia 宏中运行 Windows 应用程序。从 Catia 宏中弹出或午餐应用程序。
例如。是否可以在 VBA 中编写带有单击按钮的 CATIA 宏,该按钮从 Windows 中打开应用程序(例如 Siemens NX、Maya、DDX ...)
简单的例子
Sub CATMain() Set WshShell = CreateObject("WScript.Shell") WshShell.Run("C:\temp\YourProgramm.exe") End Sub