|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How many Dll loaded when form startHi Gurus,
Is there any way to find out how many Dll got loaded when my application started. Any help greatly appreciated. Thanks, Dan Dan,
The easiest way is to run the program inside VS or attach the VS to already running process and then show the modules window Debug->Windows->Modules menu. If you want to see all loaded dlls by a process you can use the VAdump.exe tool that comes with the SDK In VS2003 it is located in (if you haven't changed the default instalation path) C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\Bin\winnt In VS2005 it is located in (if you haven't changed the default instalation path) C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\Bin\winnt ti view loaded dlls in the command prompt type vadump -sop <PID> Where PID is the process ID and can be get from the task manager. This tool is not in the command prompt PATH, so you should either cange the current folder to one of the above or add its path to the PATH environment variable. -- Show quoteHide quoteHTH Stoitcho Goutsev (100) "Dan, Vascas" <Dan@noemailcom> wrote in message news:%23UqW9WcJGHA.1032@TK2MSFTNGP11.phx.gbl... > Hi Gurus, > Is there any way to find out how many Dll got loaded when my application > started. > Any help greatly appreciated. > > Thanks, Dan >
Other interesting topics
Tactics for Debugging Custom Components with CodeDom Serialized State
Auto Complete/Suggest (On Steroids) Newbie User Interface hangs in multi-thread app Two values for combo box ComboBox and Tab character '\t' code clean up ComboBox: How can I limit user to list items? Autocomplete textbox How do I fin that Form.Show() is already called? Generic windows error message |
|||||||||||||||||||||||