http://bugs.winehq.org/show_bug.cgi?id=26355 ocean04(a)suomi24.fi changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Webbrowser links don't work |Webbrowser WM_LBUTTONDOWN | |message don't work --- Comment #4 from ocean04(a)suomi24.fi 2011-06-08 10:00:24 CDT --- Application just never get WM_LBUTTONDOWN message. Example showing this, http://netikka.net/dev/browser2.exe Click link -> Wine: WM_LBUTTONUP Windows: WM_LBUTTONDOWN WM_LBUTTONUP procedure TForm1.FormCreate(Sender: TObject); begin Application.OnMessage := MsgHandler; end; procedure Tform1.MsgHandler(var Msg: TMsg; var Handled: Boolean); begin if (msg.message=WM_LBUTTONDOWN) then memo1.lines.add('Message: WM_LBUTTONDOWN'); if (msg.message=WM_LBUTTONUP) then memo1.lines.add('Message: WM_LBUTTONUP'); Handled:=false; end; -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.