Log in

View Full Version : Mouse Wheel support?


none
December 25th, 2003, 02:08
The "Select process to attach" window doesn't support mouse wheel.
Could you add this little feature?

none
December 25th, 2003, 02:10
And that window can't resize.

focht
December 26th, 2003, 09:45
Greetings,

you're right .. consistent mouse-wheel and resizable dialogs support would be fine.

While you're at it ... please add application .manifest file to ollydbg to support XP style/guidelines.

There are two methods to do this.

The more robust method is to compile the manifest as a resource in your
application. To do this, the manifest must appear as resource type
RT_MANIFEST (24) with id CREATEPROCESS_MANIFEST_RESOURCE_ID (1).
You must also ensure that the resulting XML file is an even
multiple of 4 bytes long. So for example, if your file is actually 597 bytes
you need to add padding spaces to make up the file size to 600 bytes before
compiling.

Second method is to supply xml file named Ollydbg.exe.manifest

Example:

<pre>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="X86"
name="CompanyName.ProductName.YourAppName"
type="win32" />
<description>Your application description here</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="X86"
publicKeyToken="6595b64144ccf1df"
language="*" />
</dependentAssembly>
</dependency>
</assembly>

</pre>

Regards,

A. Focht