Вниз
Скачать: CL | DM;

Как получить элемент ListBox a???   Найти похожие ветки 

 
Cosmic ©   (2002-11-24 21:58) [0]

Как получить текст (в смысле значение) выделенного элемента ListBox"a при его выделении? ListBox создан при пом. CreateWindow. В обработке сообщения пишу так:


var
FoldersListBuffer: array [1..255] of Char;
Folders: integer; // handle listbox"a
...
wm_command :
begin
if (lParam = Folders) then
begin
Selection := SendMessage(Folders,LB_GETCURSEL,0,0);
SendMessage(Folders,LB_GETTEXT,Selection,Integer(@FoldersListBuffer));
MessageBoxA(0,PChar(@FoldersListBuffer),"www",0);
end;
...


Выдает два пустых MessageBox"a. Что я делаю неправильно?


 
MBo ©   (2002-11-24 22:18) [1]

procedure TForm1.LB1Click(Sender: TObject);
var
Buffer: array [0..255] of Char;
Selection:Integer;
begin
Selection := SendMessage(LB1.Handle,LB_GETCURSEL,0,0);
SendMessage(LB1.Handle,LB_GETTEXT,Selection,Integer(@Buffer));
MessageBox(0,Buffer,"www",0);
end;


 
apay ©   (2002-11-25 00:12) [2]

(из хелпа!)
An LB_GETTEXTLEN message can be sent before the LB_GETTEXT message to retrieve the length, in characters, of the string.
Return Values
The return value is the length of the string, in characters, excluding the terminating null character. If index does not specify a valid index, the return value is LB_ERR.
Remarks
If you create the list box with an owner-drawn style but without the LBS_HASSTRINGS style, the buffer pointed to by the lpszBuffer parameter will receive the 32-bit value associated with the item (the item data).

если пишешь на WinAPI, внимательней с созданием окошек.

2 MBo © (24.11.02 22:18)
если юзать VCL, зачем вся эта бадья?



 
MBo ©   (2002-11-25 00:18) [3]

>apay
>если юзать VCL, зачем вся эта бадья?
Он неправильно выводил Buffer в MessageBox, поэтому я тестовый пример сделал



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.013 c
14-37328
Ее звали Мечтой
2002-12-22 22:48
2003.01.13
Какой Кошмар...


14-37274
hatchy
2002-12-25 15:10
2003.01.13
Незнаю какую тему писать.......


1-37047
Pat
2003-01-02 18:03
2003.01.13
Запуск ДОС-приложения


4-37433
Cosmic
2002-11-24 15:29
2003.01.13
Длина текста в Edit


4-37447
SemFLY
2002-11-23 22:32
2003.01.13
Ловушка WH_Keyboard…




   Наверх