Click here to Skip to main content
15,886,019 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to browse Pin
Guru Brahmam Chowdary8-Mar-10 2:33
Guru Brahmam Chowdary8-Mar-10 2:33 
Questionhow i can capture that print command is generating Pin
22087-Mar-10 23:52
22087-Mar-10 23:52 
AnswerMessage Closed Pin
8-Mar-10 0:19
stancrm8-Mar-10 0:19 
GeneralRe: how i can capture that print command is generating Pin
22088-Mar-10 0:28
22088-Mar-10 0:28 
GeneralRe: how i can capture that print command is generating Pin
Richard MacCutchan8-Mar-10 1:12
mveRichard MacCutchan8-Mar-10 1:12 
Questionhow to detect mouse over the picturebox? Pin
Tridip Bhattacharjee7-Mar-10 23:44
professionalTridip Bhattacharjee7-Mar-10 23:44 
AnswerRe: how to detect mouse over the picturebox? Pin
Luc Pattyn8-Mar-10 1:17
sitebuilderLuc Pattyn8-Mar-10 1:17 
AnswerRe: how to detect mouse over the picturebox? Pin
OriginalGriff8-Mar-10 1:29
mveOriginalGriff8-Mar-10 1:29 
If you replace your code with
if (pic.Bounds.Contains(e.Location))
    {
    lblMsg.Text = "Mouse over picturebox";
    }
else
    {
    lblMsg.Text = pic.Bounds.ToString() + ":" + e.Location.ToString();
    }
You will see what the problem is:
The location only changes when the mouse is not over any control, and never becomes "Mouse over picturebox".
This is because the individual controls are expected to handle their own events, so they get the mouse move events instead of the form.
As stancrm said: handle it in the PictureBox MouseMove event instead.
Oh, and it is much easier to read if you use the Rectangle.Contains method, rather than write it in longhand - and less prone to errors too!
You should never use standby on an elephant. It always crashes when you lift the ears. - Mark Wallace

C/C++ (I dont see a huge difference between them, and the 'benefits' of C++ are questionable, who needs inheritance when you have copy and paste) - fat_boy

AnswerRe: how to detect mouse over the picturebox? Pin
johannesnestler8-Mar-10 3:33
johannesnestler8-Mar-10 3:33 
QuestionCheck if expath exist Pin
ONeil Tomlinson7-Mar-10 23:12
ONeil Tomlinson7-Mar-10 23:12 
AnswerRe: Check if expath exist Pin
Mirko19807-Mar-10 23:42
Mirko19807-Mar-10 23:42 
QuestionConvert word file to pdf with openxml Pin
Pankaj Saha7-Mar-10 23:00
Pankaj Saha7-Mar-10 23:00 
QuestionWebClient and Events Pin
Teuz7-Mar-10 22:50
Teuz7-Mar-10 22:50 
AnswerRe: WebClient and Events Pin
johannesnestler8-Mar-10 4:17
johannesnestler8-Mar-10 4:17 
GeneralRe: WebClient and Events Pin
Teuz8-Mar-10 22:01
Teuz8-Mar-10 22:01 
QuestionRecord Not Insert Pin
mjawadkhatri7-Mar-10 21:00
mjawadkhatri7-Mar-10 21:00 
AnswerRe: Record Not Insert Pin
OriginalGriff7-Mar-10 21:47
mveOriginalGriff7-Mar-10 21:47 
GeneralRe: Record Not Insert Pin
R. Giskard Reventlov7-Mar-10 22:12
R. Giskard Reventlov7-Mar-10 22:12 
AnswerRe: Record Not Insert Pin
Thomas Krojer8-Mar-10 1:16
Thomas Krojer8-Mar-10 1:16 
QuestionCustom TypeConverter for SubProperties Pin
akamper7-Mar-10 20:54
akamper7-Mar-10 20:54 
Questionhow to access the application Pin
santhosh-padamatinti7-Mar-10 20:05
santhosh-padamatinti7-Mar-10 20:05 
AnswerRe: how to access the application Pin
Anubhava Dimri7-Mar-10 20:10
Anubhava Dimri7-Mar-10 20:10 
GeneralRe: how to access the application Pin
santhosh-padamatinti7-Mar-10 20:21
santhosh-padamatinti7-Mar-10 20:21 
GeneralRe: how to access the application Pin
Anubhava Dimri7-Mar-10 20:38
Anubhava Dimri7-Mar-10 20:38 
GeneralRe: how to access the application Pin
Richard MacCutchan7-Mar-10 22:45
mveRichard MacCutchan7-Mar-10 22:45 

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.