2012-08-09 95 views
1

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

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

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

您是否尝试过使用,而不是'comboBox.SelectedItem.ToString()''comboBox.Text'? – hmqcnoesy 2012-08-09 18:42:26

+0

是的,它不起作用。这是一个非常令人沮丧的与excel互操作的小怪癖 – user1546315 2012-08-09 19:40:39

回答

1

试试这个。我假设registrationForm是组合框。

您必须使用GetItemText方法分析所选项目并最终返回该项目的文本。

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

久经考验

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 
     // 
    }