我正在使用Excel Interop创建一个excel文件并向其输出数据,我想根据用户从comboBox的选择更改工作表名称。但是,我无法从comboBox获取输入以显示为工作表名称。但是,如果它来自文本框,我可以获得与工作表名称相同的值。我甚至使用comboBox.SelectedItem.ToString()
并将其作为字符串,然后尝试将其应用为工作表名称。用空格替换任何非字母字符也不起作用。 sting只有字母字符和空格,但不会替换原始工作表名称。
以下是我用来尝试更改工作表名称的代码。
worksheet = (Excel.Worksheet)workbook.Worksheets.Add(Missing.Value, workbook.Worksheets[sheetCount], Missing.Value, Missing.Value);
workbook.Worksheets[sheetCountPlusONe].Name = "Results " + registrationForm.selectedEvent;
答案 0 :(得分: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
//
}