|
In the following section, you can find some useful tools that can be used by programmers.
If you want to download a package of all the tools listed below in one zip file, click here
| DLL Export Viewer
|
This utility displays the list of all exported functions and their virtual memory addresses for the specified DLL files. You can easily copy the memory address of the desired function, paste it into your debugger, and set a breakpoint for this memoery address. When this function is called, the debugger will stop in the beginning of this function.
|
| HeapMemView
|
HeapMemView is a small utility that allows you to view the content of all memory blocks allocated in the heap of the
process the you select.
This tool can be useful for developers that need to trace memory leaks in their software.
|
| GDIView
|
GDIView is a unique tool that displays the list of GDI handles (brushes, pens, fonts, bitmaps, and others) opened by every process.
It displays the total count for each type of GDI handle, as well as detailed information about each handle.
This tool can be useful for developers that need to trace GDI resources leak in their software.
|
| DeviceIOView
|
DeviceIOView allows you to watch the data transfer between a software or service and a device driver (DeviceIoControl calls).
For each call to a device driver, the following information is displayed:
Handle, Control Code, number of input bytes, number of output bytes, the name of the device handle,
and all the input/output bytes, displayed as Hex dump.
|
| ResourcesExtract
|
ResourcesExtract is a small utility that scans dll/ocx/exe files and extract all resources
(bitmaps, icons, cursors, AVI movies, Types Libraries, HTML files, and more...) stored in them into the folder that you specify.
You can use ResourcesExtract in user interface mode, or alternatively, you can run ResourcesExtract in command-line mode without displaying any user interface.
|
| DotNetResourcesExtract
|
DotNetResourcesExtract is a small utility that scan dll/exe files of .NET applications, and
extract all .NET embedded resources (Bitmaps, Gifs, HTML files, and so on) stored in them into the folder that you specify.
|
| GACView
|
GACView is an alternative to the standard .NET assembly viewer on Windows Explorer.
In addition to the standard columns, GACView displays additional information for each assembly,
like modified date, file size, full path of the assembly file, file version, and so on.
GACView also allows you to delete an assembly the cannot be uninstalled in the regular way.
|
|
|