Visual Basic, .NET, ASP, VBScript
 

   
   
     

Форум - VBA

Страница: 1 |

 

  Вопрос: как послать сообщение WM_KEYDOWN Добавлено: 08.10.04 12:05  

Автор вопроса:  herod | Web-сайт: www.herod.boom.ru | ICQ: 157616263 
подскажите как можно сымитировать нажатие клавиши так, чтобы выбраный элемент управления получил сообщение кейдаун

я пробовал просто вызывать обработчик нажатия какого либо элемента управления, но не прокатило, видимо параметры не те подсовываю

я делал так:

Private Sub ListBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)

  ListBox2_KeyDown ( KeyCode, Shift)

End Sub

Ответить

  Ответы Всего ответов: 1  

Номер ответа: 1
Автор ответа:
 sne



Разработчик Offline Client

ICQ: 233286456 

Вопросов: 34
Ответов: 5445
 Web-сайт: hw.t-k.ru
 Профиль | | #1
Добавлено: 08.10.04 12:19
Call SendMessage(ListBox1.hWnd, WM_KEYDOWN, wParam, ByVal lParam)

Где
wParam
  Specifies the virtual-key code of the nonsystem key.

lParam
  Specifies the repeat count, scan code, extended-key flag, context code, previous key-state flag, and transition-state flag, as shown in the following table. Value Description

  0–15 Specifies the repeat count for the current message. The value is the number of times the keystroke is autorepeated as a result of the user holding down the key. If the keystroke is held long enough, multiple messages are sent. However, the repeat count is not cumulative.
  16–23 Specifies the scan code. The value depends on the original equipment manufacturer (OEM).
  24 Specifies whether the key is an extended key, such as the right-hand ALT and CTRL keys that appear on an enhanced 101- or 102-key keyboard. The value is 1 if it is an extended key; otherwise, it is 0.
  25–28 Reserved; do not use.
  29 Specifies the context code. The value is always 0 for a WM_KEYDOWN message.
  30 Specifies the previous key state. The value is 1 if the key is down before the message is sent, or it is zero if the key is up.
  31 Specifies the transition state. The value is always zero for a WM_KEYDOWN message.

Ответить

Страница: 1 |

Поиск по форуму



© Copyright 2002-2011 VBNet.RU | Пишите нам