你可以准确地告诉我,如何把这个命令(应用程序准时)我有问题。见下文,我尝试使用Application.Run
Sub FirstMacro() '
Workbooks.Open Range("a1")
Application.Run, "Second.xlsm!module1.SecondMacro"
End Sub
Sub SecondMacro() '
Workbooks("first.XLSM").Close SaveChanges:=True '
'at this place macro interrupted, but i need to proceed this..
Windows("Second.xlsm").Activate
Range("e4:l100").Select
Selection.Copy
'and next actions...
End Sub