Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2006.03.19;
Скачать: CL | DM;

Вниз

Не обновляется Msg.hwnd   Найти похожие ветки 

 
morik ©   (2005-12-23 23:44) [0]

procedure TForm1.FormCreate(Sender: TObject);
begin
 Application.OnMessage := AppMessage;
end;
---------------------
private
   procedure AppMessage(var Msg: TMsg; var Handled: Boolean);
-------------
procedure TForm1.AppMessage(var Msg: TMsg; var Handled: Boolean);
var
 i: integer;
begin
 If msg.message = WM_LBUTTONDOWN then
 for i:= 0 to Form1.ControlCount - 1 do begin
   if Form1.Components[i] is TWinControl then
     if TWinControl(Form1.Components[i]).Handle = msg.hwnd then
       ShowMessage(TWinControl(Form1.Components[i]).Name);
 end;
end;

На ShowMessage(TWinControl(Form1.Components[i]).Name);показует всегда имья контрола на котором первым кликнул.
Почему не обновляется msg.hwnd?


 
GanibalLector ©   (2005-12-24 01:09) [1]


if TWinControl(Form1.Components[i]).Handle = msg.hwnd then
     begin
       Handled:=True;
      ShowMessage(TWinControl(Form1.Components[i]).Name);
    end;



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

Текущий архив: 2006.03.19;
Скачать: CL | DM;

Наверх




Память: 0.46 MB
Время: 0.049 c
15-1140602894
Иг_Иг
2006-02-22 13:08
2006.03.19
форум Excel


2-1141062875
Sotlef
2006-02-27 20:54
2006.03.19
Method pointer в Object Pascal


2-1141197033
WChek
2006-03-01 10:10
2006.03.19
Работа с параметрами


2-1141641849
xroot
2006-03-06 13:44
2006.03.19
Hecooтвeтcтвиe типoв дaнныx в выpaжeнии ycлoвия oтбopa


2-1141215909
WestBronx
2006-03-01 15:25
2006.03.19
Сортировка в TListBox.