标签: .net debugging excel vsto
我有Excel加载项目,我需要在运行debug时打开特定的Excel文件。想法?
答案 0 :(得分:4)
我还没有测试过,但是将以下代码添加到Startup事件中应该这样做:
private void ThisAddIn_Startup(object sender, System.EventArgs e) { #if DEBUG this.Application.Workbooks.Open(@"C:\file.xlsx"); #endif }