Asbjørn Skødt

Results 25 comments of Asbjørn Skødt

Hi @mikeebowen Thx I am looking into testing your reply. Regarding your question how it was created, I don't know. We harvested 16k spreadsheets from our organization's shared drive and...

So now I understand things better based on your reply. The namespace is specific for file customUI14.xml. The example file has this wrong namespace markup: ```html ``` I need to...

Hi @mikeebowen This is an old one, but I am looking at it again, trying to fix it, but I cannot find a workable solution to changing the namespace to...

@mikeebowen Hi Mike. I can confirm the workaround works. I can also set the value to null using the workaround. Looking forward to hearing more about your findings on the...

Hi @mikeebowen Yes, the code you provided works, however it is not user-friendly to implement. Thx for solving this issue. I'm now trying to remove the AbsolutePath in the workbook....

@mikeebowen I tested. It does not work. It shouldn't be necessary to Dispose() either because the ```using``` code should do the same thing.

Hi Mike. Source: https://stackoverflow.com/questions/212198/what-is-the-c-sharp-using-block-and-why-should-i-use-it ``` using (SpreadsheetDocument spreadsheet = SpreadsheetDocument.Open(filepath, true)) { SOME CODE } ``` Is the same as: ``` SpreadsheetDocument spreadsheet = SpreadsheetDocument.Open(filepath, true) SOME CODE spreadsheet.Dispose(); ```...

@mikeebowen Hmm, I tested this some more, and it seems you don't have to Save() or Dispose(), when implementing the "using" block in this context. The AbsolutePath is indeed removed,...

Hi @tomjebo! I don't know if this is the right place to write this. EmbeddedObjectParts are saved as ".bin" extension files. Both Excel and Open XML SDK does this. Imitating...

**UPDATE** I have found another .xlsm file resulting in this error, but it does not contain /xl/vbaProject.bin. This spreadsheet contains content, which Excel informs the user when using Excel to...