Reputation: 27322
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!
Upvotes: 1
Views: 980
Reputation: 9714
There is a free reusable text editor component in http://www.icsharpcode.net/, and vb.net compiler is a part of framework (i.e., is available on all the client boxes).
Update: If a native vb.net compiler is too slow, there is an option of using a managed vb.net implementation from Mono.
Upvotes: 1