How To Open and Read an Excel Spreadsheet into a ListView in .NET

Introduction 

 
The Interoperability services make it very easy to work with COM Capable Applications such as Word and Excel.  You can also refer to my previous article on the topic: Real-time Stock Quotes in Excel using .NET for more information on accessing Excel via .NET.  This article was written in response to a question asking How do I open an excel file and read it using .NET?
 
ExcelRead.jpg 
 
Figure 1 - Excel Spreadsheet read into a ListView
 
The first step is to create a reference in your project to Excel 9.0 Objects Library.  This is done by right mouse clicking on the References folder in the Solution Explorer and choose Add Reference. This brings up the Tab Dialog below. Choose the COM Tab and pick Microsoft Excel 9.0 Objects Library.
 
AddRefMG002.jpg 
 
Figure 2 - Adding an Excel Reference
 
This action puts an Interop.Excel.dll and Interop.Office.dll into your bin directory so you can manipulate excel.
 
Now we can declare our Excel Application Object and the compiler will recognize it:
  1. private Excel.Application ExcelObj = null;  
Excel is launched and an Application reference is obtained in the constructor of our form.  First an Excel Application object is constructed.  Then we check to make sure Excel was actually started. If it was, we have a valid application object and we can now use it to open a file:
  1. public Form1()  
  2. {  
  3.     // Initialize the Windows Components  
  4.     InitializeComponent();  
  5.     ExcelObj = new Excel.Application();  
  6.     // See if the Excel Application Object was successfully constructed  
  7.     if (ExcelObj == null)  
  8.     {  
  9.         MessageBox.Show("ERROR: EXCEL couldn't be started!");  
  10.         System.Windows.Forms.Application.Exit();  
  11.     }  
  12.     // Make the Application Visible  
  13.     ExcelObj.Visible = true;  
  14. }  
The code for opening the Excel file is shown below. The code uses the OpenFileDialog component to get the path name for the Excel file.  The Excel file is opened using the WorkBooks collections' Open method.  This method takes 15 parameters with the following definition.
 
Function Open(Filename As String, [UpdateLinks], [ReadOnly], [Format], [Password], [WriteResPassword], [IgnoreReadOnlyRecommended], [Origin], [Delimiter], [Editable], [Notify], [Converter], [AddToMenuRecentlyUsed]) As Workbook
 
We really are only interested in the FileName, but have added the other default parameters for your reference.  There is also an OpenText method in Workbooks for opening tab or comma delimited text files.
  1. private void menuItem2_Click(object sender, System.EventArgs e)  
  2. {  
  3.     // prepare open file dialog to only search for excel files (had trouble setting this in design view)  
  4.     this.openFileDialog1.FileName = "*.xls"if (this.openFileDialog1.ShowDialog() == DialogResult.OK)  
  5.     {  
  6.         // Here is the call to Open a Workbook in Excel   
  7.         // It uses most of the default values (except for the read-only which we set to true)  
  8.         Excel.Workbook theWorkbook = ExcelObj.Workbooks.Open(openFileDialog1.FileName, 0, true, 5,  
  9.         """"true, Excel.XlPlatform.xlWindows, "\t"falsefalse, 0, true);  
  10.         // get the collection of sheets in the workbook  
  11.         Excel.Sheets sheets = theWorkbook.Worksheets;  
  12.         // get the first and only worksheet from the collection of worksheets  
  13.         Excel.Worksheet worksheet = (Excel.Worksheet)sheets.get_Item(1);  
  14.         // loop through 10 rows of the spreadsheet and place each row in the list view  
  15.         for (int i = 1; i <= 10; i++)  
  16.         {  
  17.             Excel.Range range = worksheet.get_Range("A" + i.ToString(), "J" + i.ToString());  
  18.             System.Array myvalues = (System.Array)range.Cells.Value;  
  19.             string[] strArray = ConvertToStringArray(myvalues);  
  20.             listView1.Items.Add(new ListViewItem(strArray));  
  21.         }  
  22.     }  
  23. }  
You also may want to note the ConvertToStringArray method which is used to convert a System.Array into a string array.  If someone knows an easier way to do this, please let me know and I'll alter the article.  The problem is that an Excel Array comes back as two dimensional even if you are selecting a range of a single row, so you need to change the 2-d array into something the listview can accept. Also the listview array is 0 based and the Excel range array is 1 based.
  1. string[] ConvertToStringArray(System.Array values)  
  2. {  
  3.     // create a new string array  
  4.     string[] theArray = new string[values.Length];  
  5.     // loop through the 2-D System.Array and populate the 1-D String Array  
  6.     for (int i = 1; i <= values.Length; i++)  
  7.     {  
  8.         if (values.GetValue(1, i) == null)  
  9.             theArray[i - 1] = "";  
  10.         else  
  11.             theArray[i - 1] = (string)values.GetValue(1, i).ToString();  
  12.     }  
  13.     return theArray;  
  14. }  
That's all there is to it!  Now you can read in all your old Excel Databases. Perhaps you can even use ADO.NET to place them into a database! (Could be the topic for the next article).
 
VBA Resources for Excel:  Excel VBA Made Easy
 
Affiliation Links:  Learn MS Office the Easy Way  Passing Microsoft Certification  Basic Programming