Friday 1 April 2016

c# - write into an xls file (tool / how to)











I need to write (insert values into cells[row,column] into an existing xls file (not xlsx)



I found some libraries but they work only with xlsx


Answer



NPOI



No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...