Hi Thorsten,
Most of the scripting tools come with their own IDEs. Your users can key-in their commands/scripts from there unless you want to embed the script's IDE itself to your application. The link below claims that it can do that. Personally I tried his example but did not work for me (it runs on a separate window): http://www.codeproject.com/KB/miscctrl/AppControl.aspx You mentioned that you want to fit a debugger, which means that if your user runs his "faulty" script for instance, it gets an error. This error is raised by the script's debugger and it should report the offending line back to your application right? Well, I have no idea if there's a tool that can do that. But if we're talking about "redirecting" the output of the debugger (which is most of the time a console program that gets called behind the scenes), here are 2 links you might want to try: http://stackoverflow.com/questions/2393464/winforms-commands-from-console-in-c http://stackoverflow.com/questions/1780606/redirecting-console-output-to-winforms-listbox Cheers! Benj On Sep 8, 12:53 am, Thorsten <[email protected]> wrote: > Hey Benj, > > Thank you for your reply! I found Olegs CS-Script last night, too. And > it seems to fit into my needs. It also can be used in a host mode. > > But I won't let the users of my application write there extensions in > an external editor like notepad+ ( also if notepad+ was my preferred > editor :) ). For this problem I found Alsnig's SyntaxBox > (http://code.google.com/p/alsing/wiki/SyntaxBox). Now I need to fit a > debugger into it and all of my dreams will come true .... > > Do you have any proposals, how I can fit an debugger to this two > components? Is there an.Net API to set a breakpoint into running CLR > code and match this to the line in the editor? > > Greets Thorsten > > On 6 Sep., 16:28, Benj Nunez <[email protected]> wrote: > > > How about this:http://cplus.about.com/b/2007/02/18/scripting-in-c.htm > > > Cheers! > > > Benj > > > On Sep 3, 12:48 am, Thorsten <[email protected]> wrote: > > > > Hello Group, > > > > I am searching for a free script engine like WinWrap or Sax Basic to > > > include it in my little desktop application. Do you have any > > > suggestions? If possible with an integrated editor/debugger ^^ > > > > I found VSA (Visual Studio for Applications), but it seems, the it was > > > deprecated since VS 2005. Thank you for any answers. > > > > regards Thorsten
