Gilles Vollant
Gilles Vollant
Hello, I did not find the way to get a cell content with format applied. By example, get the "YYYY/MM/DD" or "DD/MM/YYYY" (as xlsx format choice) instead numeric (day from...
In France, decimal separator is "," and not "." strtod used in pugixml.cpp uses strtod which is local dependant possible alternative: 1) use own double parsing code like https://github.com/michael-hartmann/parsefloat 2)...
With this fix, float parsing with "." decimal delimiter is correct when local uses another separator Fixex https://github.com/zeux/pugixml/issues/469 https://github.com/troldal/OpenXLSX/issues/133
gnu tar extraction has a useful option : --strip-components zipfile and targz file from github, by example, have a first leverl with package/version name. unzip, miniunz from my "classic legacy"...
some compatibility patch are from previous pull request Pull requet #25 was accidentelly closed, so I reopen this PR
Hello, to compile with Visual Studio 2015, I had to modify the beginning of lzham_types.h. I made this: // File: types.h // See Copyright Notice and license at the end...
Hello, I'm a former C/C++ Windows NT only programmer (1993 until 2007) and now I support both Windows and Posix So your library is very helpful to port my code...
apply fix suggested at https://github.com/madler/zlib/issues/693 #693 remove unused code and not useful test for free
This PR add XLStyle It contain the original work from https://github.com/troldal/OpenXLSX/issues/104 CEXT see https://github.com/troldal/OpenXLSX/issues/104
On my Windows computer, Visual Studio 2022 with french locale (numeric separator in France is "," and not "."), only the integer part of float is parsed. tips : c++17...