Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
procedure TSell.ApplicationEvents1Message(var Msg: tagMSG;
  var Handled: Boolean);
begin
  if (Msg.Message=WM_KEYDOWN)and(Msg.wParam=VK_CONTROL+VK_HOME)then
     begin
 end;
share|improve this question
1  
What do you mean "work"? What happens, and what did you expect to happen instead? – Rob Kennedy Jun 28 '11 at 5:23

2 Answers

to check the status of the VK_CONTROL virtual key, you must use the GetKeyState function.

try this sample

procedure TSell.ApplicationEvents1Message(var Msg: tagMSG;
  var Handled: Boolean);
begin
  if (Msg.Message=WM_KEYDOWN) then
   if  (GetKeyState(VK_CONTROL) < 0) and (Msg.wParam=VK_HOME) then
    //do your stuff
end;
share|improve this answer
thank you verymuch my dearfriend – Saeed Robatjazi Jun 28 '11 at 4:23
2  
@Saeed: Welcome to StackOverflow. If @RRUZ's answer was the solution for your problem, please consider accepting it (using the checkmark on the left). – Marjan Venema Jun 28 '11 at 6:17
Note the difference between GetAsyncKeyState (you call this when you want to have the CURRENT state (Async)) or the state at the time the VK_HOME key was pressed (normal: GetKeyState). GetAsyncKeyState info: msdn.microsoft.com/en-us/library/ms646293(VS.85).aspx – Jeroen Wiert Pluimers Jun 28 '11 at 12:47

VK_CONTROL + VK_HOME = 17 + 36 = 53 = Ord('5'). You're checking whether the user has pressed 5 along the top row of the keyboard. (Isn't that what you wanted? Your question didn't say.)

You can't just add the virtual-key codes of two independent keys to discover whether they're both being pressed simultaneously. Ctrl and Home are two different keys, and each one generates its own wm_KeyDown and wm_KeyUp messages. (But don't try to detect the pressing of both those keys in sequence. It will get far more complicated than you want. Detect when Home is pressed, and then use GetKeyState, like Rruz's answer demonstrates, to detect whether Ctrl was already down at the time you received the current keyboard message.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.