Articles   Members Online: 3
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to block mouse clicks to a specific window Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
19-Dec-03
Category
Win API
Language
Delphi 3.x
Views
125
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			 Author: Peter Below

I need to create an invisible window over a webbrowser component so that I can stop 
mouse clicks.

Answer:

There are much better ways to block mouse clicks to a specific window. You can use 
a handler for the Application.OnMessage event, for example:

1   procedure TMainform.FormCreate(Sender: TObject);
2   begin
3     Application.OnMessage := AppOnMessage;
4   end;
5   
6   procedure TMainform.AppOnMessage(var Msg: TMsg; var Handled: Boolean);
7   begin
8     case Msg.message of
9       WM_MOUSEFIRST..WM_MOUSELAST, WM_MOUSEWHEEL:
10        if Msg.hwnd = Webbrowser1.HWND then
11          Handled := True;
12    end;
13  end;



			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC