We currently use a Sax Basic OCX that allows us to edit some custom .bas files and then execute them in our main app. The OCX includes a VB6 language syntax editor and the files do not require any compilation after saving (it is all handled in the OCX). It also allows us to expose classes to the files and we can then call the methods within these classes.
This allows our customers to do tweaks the functionality of the main program without having to issue a different binary- basically the VB6 app executes a .bas file of code when instructed.
Does anyone know of anything that will do all this in VB.NET?
I am thinking that this could all be done in a custom .NET app but it I can't see a way round not requiring compilation, and there is a lot of work involved!