Click here to Skip to main content
Licence CPOL
First Posted 12 Sep 2007
Views 27,565
Downloads 147
Bookmarked 39 times

Excel File Class for Reading Data

By | 12 Sep 2007 | Article
Excel file class for reading data.

Screenshot - ExcelFile.jpg

Introduction

This is a handy little class that I wrote to work with Excel files. I looked around on Google and I could find little snippets to read data and others to read worksheet names, but I couldn't find a reusable class that allowed me to do both. So I wrote one.

Background

Maybe it's not that exciting, but it's reusable, and I really dig OO programming anytime I can use it, I do. For the task I had to do, I really only needed to read and browse an Excel file, but it would be cool if someone else found this class and extended it so that you could load all the worksheets into one dataset, manipulate the data, and finally save the data back to the file. I actually have to get back to real work, or I would :(

Using the code

'http://www.DTS-Global.com
'Author: Allen Crane Sr. Developer
'instanciate the new handy dandy new object I wrote :) 
Dim Excel As New ExcelFile(paths, strFileNameOnly)

'instanciate the new handy dandy new object I wrote :) 
Response.Write("Your workbook contains " worksheets" & _
               Excel.ExcelWorkSheets.Count & ")

'instanciate the new handy dandy new object I wrote :) 
Dim Excel As New ExcelFile(paths, strFileNameOnly)

'''''''''''''''''''''''''''''''''''''''''''''''''''''''
'load all the work sheet names in a radio button list
'''''''''''''''''''''''''''''''''''''''''''''''''''''''
'counter for loop
Dim i As Int16 = Nothing
'loop through all the transactions and add all the items
For i = 0 To Excel.ExcelWorkSheets.Count - 1
  rblMultipleSheets.Items.Add(Excel.ExcelWorkSheets.Item(i).TableName)
Next

'''''''''''''''''''''''''''''''''''''''''''''''''''''
'Bind to the data grid with the first work sheet
'''''''''''''''''''''''''''''''''''''''''''''''''''''
DataGrid1.DataSource = _
    Excel.GetWorkSheetByName(Excel.ExcelWorkSheets.Item(0).TableName)
DataGrid1.DataBind()

History

  • Version 1.0

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

geekstarexe@yahoo.com



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalappreciated [modified] Pinmemberjamescollett6:01 5 Oct '07  
GeneralRe: appreciated Pinmembergeekstarexe@yahoo.com10:16 22 Oct '07  
GeneralRe: appreciated PinmemberJoshua Billingsley10:51 19 Jun '08  
GeneralRe: appreciated PinmemberJoshua Billingsley10:55 19 Jun '08  
GeneralRe: appreciated Pinmembersongmao14:09 30 Oct '08  
GeneralSo useful Pinmemberrajantawate1(http//www.jhatak.com)7:55 12 Sep '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 12 Sep 2007
Article Copyright 2007 by geekstarexe@yahoo.com
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid