Because the VB6 IDE does not detect file changes made outside of the IDE, it can be quite difficult to develop code outside the VB6 IDE without the risk of losing code changes.
But you can build the VB6 project from the command line so that you can perform simple VB development using any text editor / IDE that can run a command to output it.
But for things like GUI changes and debugging, there really is no choice but to return to the VB6 environment.
Here are the commands needed to run the build from the DOS command prompt:
set PATH="d:\Program Files\Microsoft Visual Studio\VB98\";%PATH% vb6.exe /out ErrorFile.txt /make MyProject.vbp
FWIW Zeus IDE has the ability to import a VB project file and display project details in the project / workspace tree. It will also assemble output capture.
jussij Oct 24 '08 at 4:23 2008-10-24 04:23
source share