Click here to Skip to main content
15,892,575 members
Home / Discussions / C#
   

C#

 
GeneralRe: Catching a message Pin
Mike Dimmick12-Mar-04 2:16
Mike Dimmick12-Mar-04 2:16 
GeneralRe: Catching a message Pin
Wraith212-Mar-04 2:27
Wraith212-Mar-04 2:27 
GeneralRe: Catching a message Pin
Heath Stewart12-Mar-04 3:41
protectorHeath Stewart12-Mar-04 3:41 
GeneralEventhandler + parallelport input Pin
NicklasRing11-Mar-04 23:01
NicklasRing11-Mar-04 23:01 
GeneralRe: Eventhandler + parallelport input Pin
John Fisher12-Mar-04 2:17
John Fisher12-Mar-04 2:17 
GeneralNeed Help with Transparency! Pin
Agent 8611-Mar-04 17:36
Agent 8611-Mar-04 17:36 
QuestionHow to know if there is a child control under a certain point ? Pin
Andres Coder11-Mar-04 17:06
Andres Coder11-Mar-04 17:06 
AnswerRe: How to know if there is a child control under a certain point ? Pin
OmegaSupreme12-Mar-04 2:06
OmegaSupreme12-Mar-04 2:06 
Use the forms GetChildAtPoint method.

<br />
<br />
public void DoMouse(object s, MouseEventArgs e)<br />
{<br />
ContainsChildControlAtPoint(new Point(e.X, e.Y)); <br />
}<br />
<br />
public bool ContainsChildControlAtPoint(Point point) <br />
{<br />
if (this.GetChildAtPoint(point)== null)<br />
return false;<br />
else<br />
return true;<br />
}<br />



The smaller the mind the greater the conceit.
Aesop
AnswerRe: How to know if there is a child control under a certain point ? Pin
John Fisher12-Mar-04 2:08
John Fisher12-Mar-04 2:08 
Generalc# opengl *.obj Pin
pertiu11-Mar-04 7:07
pertiu11-Mar-04 7:07 
GeneralRe: c# opengl *.obj Pin
Judah Gabriel Himango11-Mar-04 16:39
sponsorJudah Gabriel Himango11-Mar-04 16:39 
GeneralRe: c# opengl *.obj Pin
Heath Stewart12-Mar-04 3:32
protectorHeath Stewart12-Mar-04 3:32 
GeneralOOP - Multiple Inheritance Pin
MrEyes11-Mar-04 7:07
MrEyes11-Mar-04 7:07 
GeneralRe: OOP - Multiple Inheritance Pin
John Fisher11-Mar-04 16:24
John Fisher11-Mar-04 16:24 
GeneralRe: OOP - Multiple Inheritance Pin
Michael Flanakin17-Mar-04 19:52
Michael Flanakin17-Mar-04 19:52 
Question Determine which users have a file locked? Pin
Member 59390311-Mar-04 6:54
Member 59390311-Mar-04 6:54 
AnswerRe: Determine which users have a file locked? Pin
Heath Stewart12-Mar-04 3:26
protectorHeath Stewart12-Mar-04 3:26 
GeneralRe: Determine which users have a file locked? Pin
Member 59390312-Mar-04 3:34
Member 59390312-Mar-04 3:34 
QuestionRe: Determine which users have a file locked? Pin
Martin#18-Jun-07 0:16
Martin#18-Jun-07 0:16 
Generalthis.ServiceName Pin
CraigSch11-Mar-04 6:42
CraigSch11-Mar-04 6:42 
GeneralRe: this.ServiceName Pin
John Fisher11-Mar-04 16:32
John Fisher11-Mar-04 16:32 
GeneralBindtoObject translation Issues Pin
Tristan Rhodes11-Mar-04 5:39
Tristan Rhodes11-Mar-04 5:39 
General- Solved. - ref GUID? Pin
Tristan Rhodes12-Mar-04 1:02
Tristan Rhodes12-Mar-04 1:02 
GeneralRe: - Solved. - ref GUID? Pin
Mike Dimmick12-Mar-04 2:25
Mike Dimmick12-Mar-04 2:25 
GeneralRe: - Solved. - ref GUID? Pin
Tristan Rhodes12-Mar-04 3:20
Tristan Rhodes12-Mar-04 3:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.