Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Finding build output in Visual Studio 6 (visual basic)

Tags:

vb6

I realize this is going to be an exotic question, but I just can't find the answer.

I'm trying to fix up and enhance an old visual basic-based application.

My problem is: where is the output directory with the compiled binaries?

Thanks.

If some clarification is needed, please ask.

like image 771
CatZilla Avatar asked Dec 10 '22 04:12

CatZilla


1 Answers

In the .VBP, if there is a line specifying the path like this

Path32="C:\"

Then the resulting EXE will be built at that location. Otherwise, it will be built in the same directory as the .VBP file. The path can be relational as well and may not be a fully qualified path.

like image 150
UnhandledExcepSean Avatar answered Mar 05 '23 12:03

UnhandledExcepSean