Using Excel OleDb to get sheet names IN SHEET ORDER
I'm using OleDb to read from an excel workbook with many sheets. I need to read the sheet names, but I need them in the order they are defined in the spreadsheet; so If I have a file that looks like this; |_____|_____|____|____|____|____|____|____|____| |_____|_____|____|____|____|____|____|____|____| |_____|_____|____|____|____|____|____|____|____| \__GERMANY__/\__UK__/\__IRELAND__/ Then I need to get the dictionary 1="GERMANY", 2="UK", 3="IRELAND" I've tried using OleDbConnection.GetOleDbSchemaTable() , and that gives me the list of names, but it alphabetically sorts them. The alpha-sort