Click here to Skip to main content
16,017,638 members
Home / Discussions / C#
   

C#

 
QuestionHiding Form after loading another Pin
Banjo Ayorinde25-Jul-07 0:09
Banjo Ayorinde25-Jul-07 0:09 
QuestionCreating a web based report in win app Pin
Banjo Ayorinde25-Jul-07 0:02
Banjo Ayorinde25-Jul-07 0:02 
Questionhoe to pass parameter in crystal report dynamically? Pin
help as an alias25-Jul-07 0:00
help as an alias25-Jul-07 0:00 
AnswerRe: hoe to pass parameter in crystal report dynamically? Pin
Nouman Bhatti25-Jul-07 2:54
Nouman Bhatti25-Jul-07 2:54 
GeneralRe: hoe to pass parameter in crystal report dynamically? Pin
help as an alias25-Jul-07 3:00
help as an alias25-Jul-07 3:00 
Questionmouse event Pin
cyn824-Jul-07 23:56
cyn824-Jul-07 23:56 
AnswerRe: mouse event Pin
Eduard Keilholz25-Jul-07 0:22
Eduard Keilholz25-Jul-07 0:22 
AnswerRe: mouse event Pin
Martin#25-Jul-07 0:29
Martin#25-Jul-07 0:29 
Hello,

The trick is to handle the MouseUp from the form as well, and check if the Cursor is in the Panel range.
Point pt = yourPanel.PointToClient(Cursor.Position);
Rectangle rc = yourPanel.ClientRectangle;
if (rc.Contains(pt))
{	
    //It's in the panels range
}


Hope it helps!

All the best,

Martin

QuestionC# Screensaver Pin
Identity Undisclosed24-Jul-07 23:52
Identity Undisclosed24-Jul-07 23:52 
AnswerRe: C# Screensaver Pin
Martin#24-Jul-07 23:57
Martin#24-Jul-07 23:57 
QuestionColor GroupBox Pin
mjelten24-Jul-07 21:32
mjelten24-Jul-07 21:32 
AnswerRe: Color GroupBox Pin
Jon Hulatt24-Jul-07 23:03
Jon Hulatt24-Jul-07 23:03 
GeneralRe: Color GroupBox Pin
mjelten24-Jul-07 23:12
mjelten24-Jul-07 23:12 
AnswerRe: Color GroupBox Pin
Martin#24-Jul-07 23:18
Martin#24-Jul-07 23:18 
GeneralRe: Color GroupBox Pin
Jon Hulatt24-Jul-07 23:29
Jon Hulatt24-Jul-07 23:29 
GeneralRe: Color GroupBox Pin
mjelten24-Jul-07 23:56
mjelten24-Jul-07 23:56 
GeneralRe: Color GroupBox Pin
Jon Hulatt25-Jul-07 0:33
Jon Hulatt25-Jul-07 0:33 
GeneralRe: Color GroupBox Pin
mjelten25-Jul-07 1:12
mjelten25-Jul-07 1:12 
QuestionHow to set Window title from different thread? Pin
AghaKhan24-Jul-07 21:25
AghaKhan24-Jul-07 21:25 
AnswerRe: How to set Window title from different thread? Pin
il_masacratore24-Jul-07 21:36
il_masacratore24-Jul-07 21:36 
GeneralRe: How to set Window title from different thread? Pin
AghaKhan24-Jul-07 22:12
AghaKhan24-Jul-07 22:12 
GeneralRe: How to set Window title from different thread? Pin
blakey40425-Jul-07 2:37
blakey40425-Jul-07 2:37 
QuestionAppDomain.Unload() problem Pin
cellardoor071624-Jul-07 21:06
cellardoor071624-Jul-07 21:06 
AnswerRe: AppDomain.Unload() problem Pin
Luc Pattyn24-Jul-07 22:20
sitebuilderLuc Pattyn24-Jul-07 22:20 
QuestionCan't We pass Parameterized Method to a thread?? Pin
Ron.S24-Jul-07 20:47
Ron.S24-Jul-07 20:47 

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.