I need to develop an application in LabVIEW 7 and it should be able to launch the LabVIEW programming interface, work with it and finally create another application using the Application Builder. For example, the application could have some buttons:
1) Launch LabVIEW 2) Save VI 3) Open VI 4) Compile VI and generate exe file ...
another idea I would take a look at is to use a "general purpose" executable, that makes use of Dynamic VI calling. With this approach, your exe would be fixed (you never recompile it), but it calls dynamically the vis you tell it to (and those are the ones you modify/update). Have you seen the VI Server Plug-in example? That's a good example of a plug-in architecture that may solve your needs. Regards,