User profile: modoran

User info
User name:modoran
History
Joined:
Number of posts:1244
Latest posts:

Add and remove program's in the "startup menu"
[code] HKEY hKey; RegOpenKeyExA( HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\C...

LoadBitmapFromFile Issue
Do a MessageBox GetCurrentDirectory() to see if you really are in the same directory as the bitmap ...

emulation of scroolwheel
From the MSDN link I posted there is [code]MOUSEEVENTF_WHEEL[/code] which is defined as [code]0x0800...

fopen() to read/write harddrive.
You can use CreateFile() directly on windows. http://msdn.microsoft.com/en-us/library/windows/deskto...

emulation of scroolwheel
The port of that code to C++ is: [code] #include <windows.h> #define SCROLLUP 120 #define SCROLLUP ...