I’ve managed to add the Excel COM reference, and used the following code:
Application myApp = new Application();
However, this only opens an Excel app within the context of my C# program. Is it possible to actually open the application for the user?
Try setting
myApp.Visibleto true.