C# – How to create a windows application that will read/edit different excel files

cexcelnetwinapiwinforms

My goal is to create a simple (one file) executable for windows environment that will open a pretty simple form.
The form will read data from excel files and after the user fills out the form and submit it – the application will write the data to a different excel file.

This will be used by different users in a shared drive.
I have programming experience with C/C++/C#/.Net/Python and other languages but never really created a windows program.

Any ideas where should i start? (a relevant tutorial would be greatly appreciated)

Thanks!

Best Answer

To read and edit Excel files look into the Microsoft Office Interop libraries: class library documentation is available here. Regarding tutorials, the best approach would be to search the web and see what you can find. A couple I found are:

Good luck! :)