Параметры для SendMessage чтобы выделить элемент номер ... в ListBox'е - VB

Узнай цену своей работы

Формулировка задачи:

Подскажите параметры для SendMessage чтобы выделить элемент номер ... в ListBox'е. Нахожу его тем же SendMessage, но такого не встречал... Где вообще можно прочитать о константах для сообщений?

Решение задачи: «Параметры для SendMessage чтобы выделить элемент номер ... в ListBox'е»

textual
Листинг программы
  1. 'General Messages
  2. Const LB_ERR = -1
  3. Const LB_SETTOPINDEX = &H197  'insure that a particular item is visible
  4. Const LB_GETCOUNT = &H18B     'retrieve the number of items in a list box
  5. Const LB_GETSEL = &H187       'retrieve the selection state of an item
  6. Const LB_ADDSTRING = &H180    'add a string and re-sort a sorted listbox
  7. Const LB_INSERTSTRING = &H181 'add a string but do not re-sort a sorted listbox
  8. Const LB_DELETESTRING = &H182 'delete a single string
  9. Const LB_FINDSTRING = &H18F   'find the first string containing the string specified
  10. Const LB_FINDSTRINGEXACT = &H1A2 'find the first string that matches the string specified
  11. Const LB_SETTABSTOPS = &H192  'set the tab-stop positions
  12. Const LB_RESETCONTENT = &H184 'remove all items
  13.  
  14. 'Multi-Select Listboxes
  15. Const LB_SETSEL = &H185       'select a string
  16. Const LB_GETSELCOUNT = &H190  'retrieve the total number of selected items
  17.  
  18. 'Single Selection Listboxes
  19. Const LB_SELECTSTRING = &H18C 'find the first string containing the string specified
  20. Const LB_GETCURSEL = &H188    'retrieve the index of the currently selected item
  21. Const LB_SETCURSEL = &H186    'select a string and scroll it into view

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

5   голосов , оценка 3.8 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы