Excel加载项在发布后无法正常工作

时间:2017-05-02 07:49:48

标签: c# .net excel vsto add-in

我使用C#Visual Studio 2013 Professional中创建了一个Excel COM加载项,在Excel中显示CustomTaskPane作为右侧边栏。

这在直接从IDE运行时非常有效,但在我发布解决方案时生成的setup文件中安装它时无效。

加载项MyAddIn出现在加载项列表中,但当我尝试通过按下底部的Go...按钮激活它时,它始终处于非活动状态,然后标记添加-in激活它。

任何解决方案都会对我有所帮助...... enter image description here

此问题是由项目中配置的设置引起的 enter image description here

这是如何使用它们:

public UserControlSDR()
{
    InitializeComponent();
    string settingAdbKey = Properties.Settings.Default.adbeKey;
    string settingAdbUser = Properties.Settings.Default.adbeUser;
    string settingOpKey = Properties.Settings.Default.opKey;

    textBoxAdbKey.Text = settingAdbKey.Substring(settingAdbKey.LastIndexOf(":") + 2);
    textBoxAdbUser.Text = settingAdbUser.Substring(settingAdbUser.LastIndexOf("Text: ") + 6);
    textBoxOpKey.Text = settingOpKey.Substring(settingOpKey.LastIndexOf(":") + 1);
}

如果我删除InitializeComponent()下面的代码,一切正常......为什么?

0 个答案:

没有答案