In Vsto-excel project , i have a macro in a particular module.
By code in c#, i want to launch the VBA editor showing the given macro.
i know the interop concepts , but i m stuck at launching the vba editor and showing the particular macro.
In Vsto-excel project , i have a macro in a particular module. By code
Share
You can use
Application.Goto "MarcoName"which will open up the VBE at the sub / macro you specify.