executing a script file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Sheena777
    New Member
    • Dec 2007
    • 73

    executing a script file

    I have a window form application and on that form there is a textBox and a button.The user will be able to write their vbscript in the textbox and when the button is click the code will execute the script. How do I execute a piece of vb script within vb.net windows application.
  • harshmaul
    Recognized Expert Contributor
    • Jul 2007
    • 490

    #2
    I Don't think that this can be done. The code needs to be built/compiled to DLLs and exe's.

    Comment

    • wimpos
      New Member
      • Jan 2008
      • 19

      #3
      In .net it is possible to compile at runtime.
      Maybe this example will help: http://www.codeproject.com/KB/dotnet/DotNetScript.aspx

      Comment

      Working...