You're welcome.
Btw, I found what I think is the one you're looking for (the ability
to display the compile error
through your editor (which is actually a textbox with multiline
property set to true):
The code looks like this:
foreach (CompilerError CompErr in results.Errors)
{
textBox2.Text = textBox2.Text +
"Line number " + CompErr.Line +
", Error Number: " + CompErr.ErrorNumber +
", '" + CompErr.ErrorText + ";" +
Environment.NewLine + Environment.NewLine;
}
Source: http://support.microsoft.com/kb/304655
Regards,
Benj
On Sep 11, 8:13 pm, Thorsten <[email protected]> wrote:
> Hey Benj,
>
> thank again for aour reply. You gave me a lot of text to read, so I
> will turn back after reading ;)
>
> Greets Thorsten