Click here to Skip to main content
15,889,808 members
Home / Discussions / C#
   

C#

 
AnswerRe: Speed Up Try Catch Pin
SeMartens16-Oct-08 4:49
SeMartens16-Oct-08 4:49 
AnswerRe: Speed Up Try Catch Pin
Paul Conrad16-Oct-08 9:24
professionalPaul Conrad16-Oct-08 9:24 
QuestionMSI Setup - custom action rollback Pin
Mogyi16-Oct-08 3:24
Mogyi16-Oct-08 3:24 
AnswerRe: MSI Setup - custom action rollback Pin
HemJoshi16-Oct-08 3:47
HemJoshi16-Oct-08 3:47 
GeneralRe: MSI Setup - custom action rollback Pin
Mogyi16-Oct-08 4:10
Mogyi16-Oct-08 4:10 
QuestionWhat is best way? Pin
Majid_grok16-Oct-08 2:45
Majid_grok16-Oct-08 2:45 
RantRe: What is best way? Pin
Nagy Vilmos16-Oct-08 3:06
professionalNagy Vilmos16-Oct-08 3:06 
Questiongot problem with sequence of event execution Pin
Krazy Programmer16-Oct-08 2:37
Krazy Programmer16-Oct-08 2:37 
Hi
What i want to do ?

I am displaying a picture in picture box
When user drags the picture then it has to appear in the another picture box

What i Did ..

private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
{
isdragged = true;
}

private void pictureBox2_MouseEnter(object sender, EventArgs e)
{
if (isdragged == true)
{
pictureBox2.ImageLocation = picpath;
isdragged = false;
}

}

isdragged is a boolean variable ....
picpath is a string i have stored the image location

After clicking on the picturebox1 and dragging it to the picture box 2 .. private void pictureBox2_MouseEnter event is not raising
I mean to say no effect when mouse enters into the picturebox2

I know i have done a mistake somewhere

Please tell me what i must do to solve this

(* Dont tell me to read a basic book .. i have read it twice ...*)

Joking


Thanks and Regards

If You win You need not Explain............
But If You Loose You Should not be there to Explain......

AnswerRe: got problem with sequence of event execution Pin
Guffa16-Oct-08 3:17
Guffa16-Oct-08 3:17 
GeneralRe: got problem with sequence of event execution Pin
Krazy Programmer16-Oct-08 19:44
Krazy Programmer16-Oct-08 19:44 
GeneralRe: got problem with sequence of event execution Pin
Guffa17-Oct-08 13:38
Guffa17-Oct-08 13:38 
GeneralRe: got problem with sequence of event execution Pin
nelsonpaixao16-Oct-08 12:36
nelsonpaixao16-Oct-08 12:36 
GeneralRe: got problem with sequence of event execution Pin
Krazy Programmer16-Oct-08 19:44
Krazy Programmer16-Oct-08 19:44 
QuestionThreads and WinForms Pin
Programm3r16-Oct-08 1:45
Programm3r16-Oct-08 1:45 
AnswerRe: Threads and WinForms Pin
Alan N16-Oct-08 1:59
Alan N16-Oct-08 1:59 
GeneralRe: Threads and WinForms Pin
Programm3r16-Oct-08 2:03
Programm3r16-Oct-08 2:03 
QuestionRe: Threads and WinForms Pin
Programm3r16-Oct-08 2:13
Programm3r16-Oct-08 2:13 
AnswerRe: Threads and WinForms Pin
Giorgi Dalakishvili16-Oct-08 2:30
mentorGiorgi Dalakishvili16-Oct-08 2:30 
GeneralRe: Threads and WinForms Pin
Programm3r16-Oct-08 2:49
Programm3r16-Oct-08 2:49 
QuestionRe: Threads and WinForms Pin
Programm3r16-Oct-08 3:05
Programm3r16-Oct-08 3:05 
AnswerRe: Threads and WinForms Pin
Giorgi Dalakishvili16-Oct-08 3:19
mentorGiorgi Dalakishvili16-Oct-08 3:19 
GeneralRe: Threads and WinForms Pin
Programm3r16-Oct-08 3:25
Programm3r16-Oct-08 3:25 
GeneralRe: Threads and WinForms Pin
Giorgi Dalakishvili16-Oct-08 3:31
mentorGiorgi Dalakishvili16-Oct-08 3:31 
GeneralRe: Threads and WinForms Pin
Programm3r16-Oct-08 3:39
Programm3r16-Oct-08 3:39 
GeneralRe: Threads and WinForms Pin
Giorgi Dalakishvili16-Oct-08 5:44
mentorGiorgi Dalakishvili16-Oct-08 5:44 

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.