Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. EtienneDufresne

    How to detect and process multiple keys pressed at once?

    I added a timer to my form and inputed the following code in it and now everything works the way I want it too !!!! //If 'D' is held down. if((GetKeyState(0x44) & 0x0080) == 0x0080) { Particule1->RotCCW(); }...
  2. EtienneDufresne

    How to detect and process multiple keys pressed at once?

    Thank you tsh73 that seems to be what I was looking for. I looked in the online help of Borland Builder 6 and I got lots of info on this function. I'll give it a shot sometime this week and I'll let you know if it works. Thank you very much for your help!!! Etienne
  3. EtienneDufresne

    How to detect and process multiple keys pressed at once?

    Hi, I'm working on a personal project using Borland C++ Builder 6. This project consists of a plain form on which I draw a circle with a direction line and I make it move using the keyboard. I currently have some keys mapped to move the circle. I use the event called OnKeyDown on the main form...

Part and Inventory Search

Back
Top