A simple CSV/XLSX convertor with a friendly GUI.
This software was creaded using C++/CLI. It can parse CSV files delimited by comma (,) or quoted comma (","), then convert them to Excel files or XLSX Excel files and convert them into CSV files. It also takes in account escaped quotes and removes the extra ones. Drag and Drop is supported. A config file will be created at the first run and it is used to store the output location for futher uses and convenience.
This program is based on the libxlsxwriter C++ library which can be found here https://github.com/jmcnamara/libxlsxwriter and the XLSX I/O C library which can be found here https://github.com/brechtsanders/xlsxio. The config parser is taken from arcomber on Stack, the question can be viewed here.
In order to run this program there are three dll files required, LibXlsxWriter.dll, libxlsxio_read.dll and Zlib.dll present in the same folder as the compiled exe. You may compile your own version of the dlls if you wish so from the code provided in the original repositories.
You are free to use the final product or reuse the code in any way you like as long as you credit me, the XLSX I/O author and the libxlsxwriter author.
