https://bz.apache.org/bugzilla/show_bug.cgi?id=52949
--- Comment #5 from [email protected] --- (In reply to Barry Lagerweij from comment #3) > Created attachment 30052 [details] > Class which can extrace macro source code > > Since POI does not provide access to this, I've written a class which allows > you to extract the sourcecode as text. I know this is reviving an old thread, but this is the only Java code that I've found for extracting VBA macros from Excel as plain text, which works really well. One minor improvement: on line 83 of VBAMacroExtractor.java, there is a path with a backslash hence the code will only work on Windows. "\\VBA" should become: File.separatorChar + "VBA" Thanks again for sharing this code. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
