Add and remove program's in the "startup menu"[code] HKEY hKey; RegOpenKeyExA( HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\C...
LoadBitmapFromFile IssueDo a MessageBox GetCurrentDirectory() to see if you really are in the same directory as the bitmap ...
emulation of scroolwheelFrom 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 scroolwheelThe port of that code to C++ is: [code] #include <windows.h> #define SCROLLUP 120 #define SCROLLUP ...