Link to home
Start Free TrialLog in
Avatar of isidor
isidor

asked on

How to see which files used by an app?

Hello,

I'm packaging a program I written in VB6 which use Oracle ODBC drivers, and the DAO Compatibility library for instance. Is there a nice utility within VB or Visual Studio that shows the various files needed for an application to work on, say, a fresh-installed Windows 95 computer with no ODBC installed (which is the minimum requirement for my app)?
ASKER CERTIFIED SOLUTION
Avatar of riduce
riduce

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Guy Hengel [angelIII / a3]
Additionally you may use some tools (which do not come with vs) like
* Dependencies.exe
* Modules.exe
to see what dll's are used during runtime, but this is rather to trace whenever there are problems. For Oracle, you need to check the oracle documentation about the "minimal" client installation.
Avatar of isidor
isidor

ASKER

OK! Didn't have this one in my previous VS installation. But now I do, seems to work like a charm.
Thanks.