pro_vb thread: Triggering MicroController IDE for data editing followed by recom
pilation
Hi all,
Is there any way of triggering a MicroController IDE through VB and execute
procedures inside the IDE using VB as the frontend?
I was able to trigger the IDE (It is an executable file) using the
following script
Dim MyAppID, ReturnValue
MyAppID = Shell("D:\MPLAB\MPLAB.EXE", 1)
AppActivate MyAppID
But how do I open files inside the IDE and execute the procedures like
compile inside the IDE using VB
BEJOY