How do you view the full Location path in the References dialog in Visual Basic 6?

There are two ways. Unfortunately, both require you to select (place checkmark in box) the item(s) of interest in the References dialog, whether you want them or not.

First way is to open the Object Browser window, then select one of the libraries of interest from the top-left selector (which usually defaults to ). When you do that, the details pane at the very bottom of the Object Browser window should show you the full path to the DLL. (As a bonus, it will be selectable for Copy/Paste too!)

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


I don't have VB6 installed these days to check how to do it in-editor, but you can always just view the VBP file with a text editor. The same paths that would be shown in the dialog window are listed there.

Tags:

Vb6