Embedding script engine into application

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Andrus

    Embedding script engine into application

    I'm creating WinForms ERP application.
    This application need to run custom scripts in may places like:

    retrieving list of invoices
    before adding invoice
    before saving invoice
    after saving invoice
    before posting invoice
    after posing etc.

    etc.

    I'm looking for script engine which simplifies this.
    Features I need to embed into application are:

    1. Syntax coloring script editor
    2. Syntax check on script save
    3. Executing scripts with error reporting
    4. Passsing parameters to/from scripts
    5. Allowing scripts to access application objects.
    6. Maybe binding scripts to Winforms control events.

    Any framework, idea, or sample code how to implement this ?

    Andrus.


  • Samuel R. Neff

    #2
    Re: Embedding script engine into application


    What's the target audience? Would it be feasible for them to write
    plugins to your app in a .NET language instead of using a script
    engine? Would be a lot more powerful and easier for you to integrate.

    Sam

    ------------------------------------------------------------
    We're hiring! B-Line Medical is seeking .NET
    Developers for exciting positions in medical product
    development in MD/DC. Work with a variety of technologies
    in a relaxed team environment. See ads on Dice.com.


    On Sun, 13 May 2007 13:07:17 +0300, "Andrus" <kobruleht2@hot .ee>
    wrote:
    >I'm creating WinForms ERP application.
    >This application need to run custom scripts in may places like:
    >
    >retrieving list of invoices
    >before adding invoice
    >before saving invoice
    >after saving invoice
    >before posting invoice
    >after posing etc.
    >
    >etc.
    >
    >I'm looking for script engine which simplifies this.
    >Features I need to embed into application are:
    >
    >1. Syntax coloring script editor
    >2. Syntax check on script save
    >3. Executing scripts with error reporting
    >4. Passsing parameters to/from scripts
    >5. Allowing scripts to access application objects.
    >6. Maybe binding scripts to Winforms control events.
    >
    >Any framework, idea, or sample code how to implement this ?
    >
    >Andrus.
    >

    Comment

    Working...