Failure to save a new project

Issue #18 resolved
Marco Wobben created an issue

Start a new project select the .exe and save the project will result in:

EOleException: “An invalid character was found in text content.”

Attachment contains call stacks.

Comments (7)

  1. Anders Melander repo owner

    @Marco Wobben Thanks for the bug report. As you can see I managed to reproduce the issue and I’ve resolved it.

    The problem was a property in your project that contained a control character. This broke the XML writer because the method I used to encode the text values was too simple. It only handled Tab, Carriage Return and Line Feed. I have now reimplemented the text encoder so it should be able to handle anything you throw at it.

    I will release a new version shortly.

  2. Marco Wobben reporter

    Great! This has happened in my own projects too. A forgivable mistake .. 😉 Thanks for the response, maintenance and release. I don’t have all components myself, to compiling it is an issue for me. Keep it up! (bow)

  3. Log in to comment