I just tested ActiveX Documenter 1.0.26 but the programm crashed on saving the documentation file (on win2000 and on winxp german version).
After some debugging the source I figured out, that there is a bug in the ShellFolder()-Function. I replaced
...
ShellFolder = Mid$(sBuf, iPos - 1)
with
ShellFolder = Left$(sBuf, iPos - 1)
and it works fine. Thank you for that great tool!
|