Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - death-droid

Pages: 1
1
General ENIGMA / Writting Enigma's IDE in C#
« on: October 24, 2008, 06:38:18 pm »
Just wondering should we or should we not.
The disadvantage would be we may not be able to load gmk's etc.

I've just recently downloaded Visual C# Express

2
Tips, Tutorials, Examples / C++ code for numlock
« on: August 10, 2008, 12:56:00 am »
cpp{
int  ReqdNumLockState = 0x0008;


if( (GetKeyState( VK_NUMLOCK ) & 0x0008) != ReqdNumLockState )
{
  //Ponemos el NumLock a ON, para que se pueda escribir con el numpad directamente.
  keybd_event( VK_NUMLOCK, 0x45, KEYEVENTF_EXTENDEDKEY | 0, 0 );
  keybd_event( VK_NUMLOCK, 0x45, KEYEVENTF_EXTENDEDKEY |   KEYEVENTF_KEYUP, 0 );
 }
}


There you go all just in case you needed it XD

Pages: 1