Chúng tôi đã thêm một excel vào đó được cài đặt đúng và sẽ chỉ hiển thị khi mở Excel từ biểu tượng chính (hoặc sổ làm việc trống). Nó sẽ KHÔNG hiển thị trên thanh công cụ khi mở bất kỳ tài liệu excel nào đã lưu.Excel 2010 của tôi Thêm vào chỉ hiển thị khi mở một sổ làm việc trống. Sẽ không hiển thị khi mở tài liệu hiện có
Tôi đã đảm bảo rằng khi mở tài liệu hiện có, trong tệp -> tùy chọn -> thêm vào, nó được kiểm tra chính xác trong phần bổ sung COM. Để chúng tôi sử dụng tính năng thêm vào, chúng tôi phải mở một sổ làm việc trống và kéo tệp hiện có của chúng tôi vào sổ làm việc trống.
Có ai có bất kỳ ý tưởng nào tại sao nó chỉ hiển thị trong ruy-băng trên sổ làm việc trống và không hiển thị trên các tệp .xlsx hiện có không?
Tôi thậm chí còn chạy thử nghiệm nơi tôi mở sổ làm việc trống, xác nhận bổ trợ nằm trên ruy-băng, đặt một số văn bản vào ô, lưu văn bản vào màn hình của tôi, đóng và sau đó mở lại. Sau đó nó không hiển thị. Phần bổ sung này được thực hiện với VS2010.
Đây là mã từ "ThisAddIn.cs"
public partial class ThisAddIn
{
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
}
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
}
#region VSTO generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
}
#endregion
}
Đây là mã từ tập tin Ribbon.cs mà chúng tôi thực hiện ... tất cả những gì đang làm được Populating một vài lĩnh vực và thiết lập:
private void MyRibbon_Load(object sender, RibbonUIEventArgs e)
{
Excel._Workbook activeWorkbook = (Excel._Workbook)Globals.ThisAddIn.Application.ActiveWorkbook;
if (activeWorkbook.Path == "")
{
string pathMyDocuments = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments);
this.editBox1.Text = pathMyDocuments;
}
else
{
this.editBox1.Text = activeWorkbook.Path;
this.fileBox.Text = "Converted_" + activeWorkbook.Name;
}
this.folderBrowserDialog1.RootFolder = System.Environment.SpecialFolder.MyComputer;
this.folderBrowserDialog1.ShowNewFolderButton = true;
//populate the dropdown box with spreadsheet templates
using (SqlConnection conn = new SqlConnection("<removed for stack overflow>"))
{
using (SqlCommand command = new SqlCommand("<sql command text removed for SO", conn))
{
command.CommandType = CommandType.Text;
conn.Open();
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
RibbonDropDownItem item = Globals.Factory.GetRibbonFactory().CreateRibbonDropDownItem();
item.Label = reader["MasterSpreadsheetName"].ToString();
ddlSpreadsheetTemplate.Items.Add(item);
}
}
}
}
bao gồm mã cho phần bổ trợ addin có thể hữu ích – Sorceri
Tệp ThisAddIn.cs không có gì trong "ThisAddIn_Startup" hoặc "ThisAddIn_Shutdown", nhưng tôi đã đăng nó trong bản chỉnh sửa ở trên. – blapsley
Mở tài liệu hiện có, chuyển đến Tệp> Tùy chọn> Bổ trợ. Xem liệu trình bổ sung của bạn có được liệt kê là đang hoạt động hoặc không hoạt động hay không. – Keith