Вниз
Скачать: 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 вся ветка

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



Память: 0.45 MB
Время: 0.025 c
2-1141028538
nap<>
2006-02-27 11:22
2006.03.19
Indy 10


2-1141328178
Golik
2006-03-02 22:36
2006.03.19
Как определить число записей в таблице ? поможите!


2-1141106280
Кукушечка
2006-02-28 08:58
2006.03.19
FTP с помощью Indy


15-1141075073
Grief
2006-02-28 00:17
2006.03.19
Оригинально!


3-1138284327
Polevi
2006-01-26 17:05
2006.03.19
SQL запросы к Excel, это забавно




   Наверх