How do you view the full location path in the Links dialog box in Visual Basic 6?

I am working on a visual base project. when I go to the Links dialog box for a project, the location path for one of the links is disabled, so I don’t see the end of the path. Does anyone know a way to find out what the full path is?

+6
source share
2 answers

There are two ways. Unfortunately, both require you to select (check the box) the items of interest in the Links dialog box, whether you want them or not.

The first way is to open the "Object Browser" window, and then select one of the libraries of interest from the "upper left" selector (usually the default). When you do this, the details panel at the very bottom of the Object Browser should show the full path to the DLL. (As a bonus, it will also be selected for copy / paste!)

The second way is to open the * .vbp file (Visual Basic Project) with Notepad (or another text editor) and find the Reference = entries. For the components used in Forms, you can also open * .frm files and look again for Reference = entries.

+9
source

I don't have VB6 installed these days to check how to do this in the editor, but you can always just edit the VBP file with a text editor. There is a lot of interesting information ...

+1
source

Source: https://habr.com/ru/post/913544/


All Articles