NX7.5怎么调用录制的宏
答案:1 悬赏:30 手机版
解决时间 2021-04-28 20:15
- 提问者网友:练爱
- 2021-04-28 10:11
NX7.5怎么调用录制的宏
最佳答案
- 五星知识达人网友:長槍戰八方
- 2021-04-28 11:22
示例
本示例提示用户输入模板名、模块名、宏名以及参数值,然后运行该宏。
Visual Basic for Applications
Dim strTemplate As String
Dim strModule As String
Dim strMacro As String
Dim strParameter As String
strTemplate = InputBox("Enter the template name")
strModule = InputBox("Enter the module name")
strMacro = InputBox("Enter the macro name")
strParameter = InputBox("Enter a parameter value")
Application.Run MacroName:=strTemplate & "." _
& strModule & "." & strMacro, _
varg1:=strParameter
本示例提示用户输入模板名、模块名、宏名以及参数值,然后运行该宏。
Visual Basic for Applications
Dim strTemplate As String
Dim strModule As String
Dim strMacro As String
Dim strParameter As String
strTemplate = InputBox("Enter the template name")
strModule = InputBox("Enter the module name")
strMacro = InputBox("Enter the macro name")
strParameter = InputBox("Enter a parameter value")
Application.Run MacroName:=strTemplate & "." _
& strModule & "." & strMacro, _
varg1:=strParameter
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯