I want to load a column in excel into a selectable dropdown menu using c#. I have access to the file, and can load the file in C#, but am not sure how to implement what I want. Suggestions? (I'm using Visual Studio 2008)
|
1
|
|
|
|
|
|
You can use the OleDb Managed Data Provider to read an Excel spreadsheet using ADO.NET just like you would with a database.
|
||
|
|
|
|
As far as I know you only have a couple of options:
|
||
|
|
|
|
You could implement a PIA solution something like this (assuming 5 items in column "A" of the first worksheet):
If you don't know the exact number if items in the dropdown at runtime, you will need to search the range to find the end; check out this sample here. This sample uses the Office 2007 PIAs, if you are using an older version the syntax should be very close but might vary a bit. |
||
|
|
