1

我正在使用 Excel 互操作来创建一个 excel 文件并向其输出数据,我想根据用户从组合框中的选择来更改工作表名称。但是,我无法从组合框获取输入以显示为工作表名称。但是,如果它来自文本框,我可以获得与工作表名称相同的值。我什至正在使用comboBox.SelectedItem.ToString()并将其设为字符串,然后尝试将其应用为工作表名称。用空格替换任何非字母字符也不起作用。字符串只有字母字符和空格,但不会替换原始工作表名称。

这是我用来尝试更改工作表名称的代码。

worksheet = (Excel.Worksheet)workbook.Worksheets.Add(Missing.Value, workbook.Worksheets[sheetCount], Missing.Value, Missing.Value);
workbook.Worksheets[sheetCountPlusONe].Name = "Results " + registrationForm.selectedEvent;
4

1 回答 1

1

Try this. I am assuming that registrationForm is the combobox.

You have to use the GetItemText method which analyzes the selected item and finally returns the text of that item.

string WsName = this.registrationForm.GetItemText(this.registrationForm.SelectedItem);

TRIED AND TESTED

    private void Form1_Load(object sender, EventArgs e)
    {
        this.comboBox1.Items.Add("Sheet1111");
        this.comboBox1.Items.Add("Sheet2222");
        this.comboBox1.Items.Add("Sheet3333");
    }

   private void btnOPen_Click(object sender, EventArgs e)
    {
        Microsoft.Office.Interop.Excel.Application xlexcel;
        Microsoft.Office.Interop.Excel.Workbook xlWorkBook;
        Microsoft.Office.Interop.Excel.Worksheet xlWorkSheet;

        object misValue = System.Reflection.Missing.Value;
        xlexcel = new Excel.Application();

        xlexcel.Visible = true;

        //~~> Open a File
        xlWorkBook = xlexcel.Workbooks.Open("C:\\sample.xlsx", 0, true, 5, "", "", true,
        Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);

        // Set Sheet 1 as the sheet you want to work with
        xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);

        string WsName = this.comboBox1.GetItemText(this.comboBox1.SelectedItem);

        xlWorkSheet.Name = WsName;

       //
       //~~> Rest of code
       //
    }
于 2012-08-10T02:42:31.337 回答