Andreas Falkenhahn

Results 21 issues of Andreas Falkenhahn

I'm having a strange issue when using `readBytes()` to read just a single byte. When I send 7 bytes from a PC to an Android device, and try to read...

Does your driver have a function to query the number of bytes currently in the read buffer or is this not possible? Also, is there a function to clear everything...

OpenXLSX already has code in `XLCellValue.cpp` that sets strings as embedded strings instead of using shared strings. Currently, this code is disabled, though. I think it would be nice if...

enhancement

When overwriting a string in a cell with a new, unique string, the new string is simply appended to the end of the table in `sharedStrings.xml` without the old string...

enhancement

When new strings are added to the `sharedStrings.xml` database, it looks like OpenXLSX never updates the `count` and `uniqueCount` attributes in the `` tag so those often contain invalid values.

This fixes the problem that `uniqueCount` is currently not set correctly. It will also set `count` to the same value as `uniqueCount`. This is not entirely correct because `count` should...

File part extraction won't work correctly when using backslashes instead of slashes, as it is the default on Windows. Also, filename extraction won't work on AmigaOS in case the filename...

For some reason my Excel version (Excel 2016) refuses to load files where `` comes before ``. For example, the following XML fails to load in Excel 2016: 0A1+A2 Whereas...

When changing the value of a cell whose type is `inlineStr`, OpenXLSX doesn't remove the `` node which contains the inlined string. This will break the XLSX document because it...

I have some XLSX files in which `sharedStrings.xml` is formatted like this: ``` ``` The whitespace in the XML will make OpenXLSX misbehave. In fact, this XML will cause OpenXLSX...