Ошибка "не найдена колонка" при переносе данных из Excel - C#

Узнай цену своей работы

Формулировка задачи:

Приветствую. Появились проблемы при выполнении дипломной работы, при нажатии кнопки "печать" программа отправляет на печать пустой лист, а при нажатии на кнопку "отправить в MS Excel" появляется эта ошибка. Менял значение даже на то которое записано в бд, все равно жалуется. И еще не могу разобраться с кнопкой сохранить изменения в DGV, ошибки не выходят, но и не сохраняет. Вот код полностью:
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Drawing.Printing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using Microsoft.Office.Interop.Excel;
  12. using Excel = Microsoft.Office.Interop.Excel;
  13. namespace WindowsFormsApplication2
  14. {
  15. public partial class Form1 : Form
  16. {
  17. public Form1()
  18. {
  19. InitializeComponent();
  20. }
  21. private void Form1_Load(object sender, EventArgs e)
  22. {
  23. // TODO: данная строка кода позволяет загрузить данные в таблицу "iSTran12DataSet.ТС". При необходимости она может быть перемещена или удалена.
  24. this.тСTableAdapter.Fill(this.iSTran12DataSet.ТС);
  25. }
  26. private void ExportToExcel()
  27. {
  28. Excel.Application exApp = new Excel.Application();
  29. exApp.Workbooks.Add();
  30. Worksheet workSheet = (Worksheet)exApp.ActiveSheet;
  31. workSheet.Cells[1, 1] = "ID ТС";
  32. workSheet.Cells[1, 2] = "Марка";
  33. workSheet.Cells[1, 3] = "Модель";
  34. workSheet.Cells[1, 4] = "Рег.Номер";
  35. workSheet.Cells[1, 5] = "Гараж.Номер";
  36. workSheet.Cells[1, 6] = "VIN";
  37. workSheet.Cells[1, 7] = "Год Выпуска";
  38. workSheet.Cells[1, 8] = "Модель Двигателя";
  39. workSheet.Cells[1, 9] = "Номер Двигателя";
  40. workSheet.Cells[1, 10] = "Тип ТС";
  41. workSheet.Cells[1, 11] = "Шасси/Рама";
  42. workSheet.Cells[1, 12] = "Номер Кузова";
  43. workSheet.Cells[1, 13] = "Цвет";
  44. workSheet.Cells[1, 14] = "Мощность";
  45. workSheet.Cells[1, 15] = "Объём Двигателя";
  46. workSheet.Cells[1, 16] = "ПТС/ПСМ";
  47. workSheet.Cells[1, 17] = "Собственник";
  48. workSheet.Cells[1, 18] = "Топливо";
  49. workSheet.Cells[1, 19] = "Арендатор";
  50. workSheet.Cells[1, 20] = "Автошины";
  51. workSheet.Cells[1, 21] = "Тип Двигателя";
  52. workSheet.Cells[1, 22] = "Разрешенная мах масса";
  53. workSheet.Cells[1, 23] = "Категория";
  54. workSheet.Cells[1, 24] = "ТО";
  55. workSheet.Cells[1, 25] = "Ремонтные работы";
  56. int rowExcel = 2; //начать со второй строки.
  57. for (int i = 0; i < dataGridView1.Rows.Count; i++)
  58. {
  59. //заполняем строку
  60. workSheet.Cells[rowExcel, "A"] = dataGridView1.Rows[i].Cells["ID ТС"].Value;
  61. workSheet.Cells[rowExcel, "B"] = dataGridView1.Rows[i].Cells["Марка"].Value;
  62. workSheet.Cells[rowExcel, "C"] = dataGridView1.Rows[i].Cells["Модель"].Value;
  63. workSheet.Cells[rowExcel, "D"] = dataGridView1.Rows[i].Cells["Рег.Номер"].Value;
  64. workSheet.Cells[rowExcel, "E"] = dataGridView1.Rows[i].Cells["Гараж.Номер"].Value;
  65. workSheet.Cells[rowExcel, "F"] = dataGridView1.Rows[i].Cells["VIN"].Value;
  66. workSheet.Cells[rowExcel, "G"] = dataGridView1.Rows[i].Cells["Год Выпуска"].Value;
  67. workSheet.Cells[rowExcel, "H"] = dataGridView1.Rows[i].Cells["Модель Двигателя"].Value;
  68. workSheet.Cells[rowExcel, "I"] = dataGridView1.Rows[i].Cells["Номер Двигателя"].Value;
  69. workSheet.Cells[rowExcel, "J"] = dataGridView1.Rows[i].Cells["Тип ТС"].Value;
  70. workSheet.Cells[rowExcel, "K"] = dataGridView1.Rows[i].Cells["Шасси/Рама"].Value;
  71. workSheet.Cells[rowExcel, "L"] = dataGridView1.Rows[i].Cells["Номер Кузова"].Value;
  72. workSheet.Cells[rowExcel, "M"] = dataGridView1.Rows[i].Cells["Цвет"].Value;
  73. workSheet.Cells[rowExcel, "N"] = dataGridView1.Rows[i].Cells["Мощность"].Value;
  74. workSheet.Cells[rowExcel, "O"] = dataGridView1.Rows[i].Cells["Объём Двигателя"].Value;
  75. workSheet.Cells[rowExcel, "P"] = dataGridView1.Rows[i].Cells["ПТС/ПСМ"].Value;
  76. workSheet.Cells[rowExcel, "Q"] = dataGridView1.Rows[i].Cells["Собственник"].Value;
  77. workSheet.Cells[rowExcel, "R"] = dataGridView1.Rows[i].Cells["Топливо"].Value;
  78. workSheet.Cells[rowExcel, "S"] = dataGridView1.Rows[i].Cells["Арендатор"].Value;
  79. workSheet.Cells[rowExcel, "T"] = dataGridView1.Rows[i].Cells["Автошины"].Value;
  80. workSheet.Cells[rowExcel, "U"] = dataGridView1.Rows[i].Cells["Тип Двигателя"].Value;
  81. workSheet.Cells[rowExcel, "V"] = dataGridView1.Rows[i].Cells["Разрешенная мах масса"].Value;
  82. workSheet.Cells[rowExcel, "W"] = dataGridView1.Rows[i].Cells["Категория"].Value;
  83. workSheet.Cells[rowExcel, "X"] = dataGridView1.Rows[i].Cells["ТО"].Value;
  84. workSheet.Cells[rowExcel, "Y"] = dataGridView1.Rows[i].Cells["Ремонтные работы"].Value;
  85. ++rowExcel;
  86. }
  87. string pathToXmlFile;
  88. pathToXmlFile = Environment.CurrentDirectory + "" + "MyFile.xls";
  89. workSheet.SaveAs(pathToXmlFile);
  90. exApp.Quit();
  91. }
  92.  
  93. private void button1_Click(object sender, EventArgs e)
  94. {
  95. printDocument1.Print();
  96. }
  97. private void printDocument_PrintPage(object sender, PrintPageEventArgs e) // Метод печати для printDocument
  98. {
  99. Bitmap bmp = new Bitmap(dataGridView1.Size.Width + 10, dataGridView1.Size.Height + 10);
  100. dataGridView1.DrawToBitmap(bmp, dataGridView1.Bounds);
  101. e.Graphics.DrawImage(bmp, 0, 0);
  102. }
  103. private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
  104. {
  105. }
  106. private void button1_Click_1(object sender, EventArgs e)
  107. {
  108. ExportToExcel();
  109. }
  110. }
  111. }

Решение задачи: «Ошибка "не найдена колонка" при переносе данных из Excel»

textual
Листинг программы
  1. public void SaveF(DataGridView GRID, string Name)
  2.     {
  3.  
  4.  
  5.         try
  6.         {
  7.  
  8.             GRID.SelectAll();
  9.             Clipboard.SetDataObject(GRID.GetClipboardContent());
  10.  
  11.            
  12.  
  13.             Stream myStream;
  14.             SaveFileDialog saveFileDialog1 = new SaveFileDialog();
  15.  
  16.            saveFileDialog1.Filter = "xls files (*.xls)|*.xls|csv files (*.csv)|*.csv";
  17.  
  18.           //  saveFileDialog1.Filter = "xls files (*.xls)|*.xls";
  19.             saveFileDialog1.FilterIndex = 0;
  20.             saveFileDialog1.RestoreDirectory = true;
  21.             saveFileDialog1.FileName = Name;
  22.  
  23.             if (saveFileDialog1.ShowDialog() == DialogResult.OK)
  24.             {
  25.            //     if ((myStream = saveFileDialog1.OpenFile()) != null && saveFileDialog1.FilterIndex == 1 || saveFileDialog1.FilterIndex == 2)
  26.                     if ((myStream = saveFileDialog1.OpenFile()) != null && saveFileDialog1.FilterIndex == 1)
  27.                 {
  28.  
  29.  
  30.                     StreamWriter myWriter = new StreamWriter(myStream, System.Text.Encoding.Unicode);
  31.  
  32.                     myWriter.Write(Clipboard.GetText());
  33.                     myWriter.WriteLine();
  34.  
  35.  
  36.                     myWriter.Close();
  37.                     MessageBox.Show("Успешно сохранено");
  38.  
  39.                 }
  40.  
  41.  
  42.  
  43.  
  44.                 GRID.ClearSelection();
  45.                
  46.                                 if (saveFileDialog1.FilterIndex == 2)
  47.                                 {
  48.                                         StreamWriter sw = new StreamWriter(myStream, System.Text.Encoding.Unicode);
  49.                                         int i;
  50.                                         sw.Write(GRID.TopLeftHeaderCell.Value);
  51.                                         sw.Write(";");
  52.  
  53.                                         for (i = 0; i < GRID.ColumnCount; i++)
  54.                                         {
  55.                                             sw.Write(GRID.Columns[i].HeaderCell.Value);
  56.                                             if (i < GRID.ColumnCount - 1)
  57.                                             {
  58.                                                 sw.Write(";");
  59.                                             }
  60.  
  61.                                         }
  62.                                         sw.Write(sw.NewLine);
  63.  
  64.                                         foreach (DataGridViewRow dr in GRID.Rows)
  65.                                         {
  66.                                             bool flag = true;
  67.  
  68.                                             for (i = 0; i < GRID.ColumnCount; i++)
  69.                                             {
  70.                                                 if (flag == true)
  71.                                                 {
  72.                                                     sw.Write(dr.HeaderCell.Value);
  73.                                                     sw.Write(";");
  74.                                                     flag = false;
  75.                                                 }
  76.  
  77.                                                 sw.Write(dr.Cells[i].Value);
  78.                                                 if (i < GRID.ColumnCount - 1)
  79.                                                 {
  80.                                                     sw.Write(";");
  81.                                                 }
  82.                                             }
  83.                                             sw.Write(sw.NewLine);
  84.                          
  85.                                         }
  86.                                         sw.Close();
  87.                                         MessageBox.Show("Успешно сохранено");
  88.                                     }
  89.                                
  90.             }
  91.  
  92.           //  GRID.ClearSelection();
  93.  
  94.         }
  95.  
  96.        catch { MessageBox.Show("Сохранение невозможно (Возможно файл занят другим процессом)");}
  97.  
  98.  
  99.     }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

9   голосов , оценка 4.222 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы