Click here to Skip to main content
15,921,643 members
Home / Discussions / C#
   

C#

 
GeneralReports... Ahhhh Pin
OMalleyW26-Oct-04 8:23
OMalleyW26-Oct-04 8:23 
GeneralRe: Reports... Ahhhh Pin
Alex Korchemniy26-Oct-04 12:00
Alex Korchemniy26-Oct-04 12:00 
GeneralRe: Reports... Ahhhh Pin
Nick Parker26-Oct-04 13:33
protectorNick Parker26-Oct-04 13:33 
GeneralRe: Reports... Ahhhh Pin
Michael P Butler27-Oct-04 2:46
Michael P Butler27-Oct-04 2:46 
GeneralMsn Messenger Programming Pin
Adnan Siddiqi26-Oct-04 7:20
Adnan Siddiqi26-Oct-04 7:20 
GeneralRe: Msn Messenger Programming Pin
Nick Parker26-Oct-04 7:39
protectorNick Parker26-Oct-04 7:39 
GeneralRe: Msn Messenger Programming Pin
Adnan Siddiqi26-Oct-04 8:46
Adnan Siddiqi26-Oct-04 8:46 
Generalmouse hover / mouse leave Pin
ee9903526-Oct-04 6:25
ee9903526-Oct-04 6:25 
Hi there!

I have two functions with one variable of type bool.
The mouse leave function do the following...

private void OnLeaveClip(object sender, System.EventArgs e)
{
picXMLmovie = false;

if(PBOrigem != null)
pictureBoxXML.Image = PBOrigem.Image;
}

And the mouse hover has this cycle

for(int i = 1; i <= jogadaslist.LastIndex(); i++)
{
if(picXMLmovie)
{
posinit = jogadaslist.GetTagAtPosition(i).start;
posend = jogadaslist.GetTagAtPosition(i).end;

for(int j = posinit; j <= posend; j++)
{
if(picXMLmovie)
{
pictureBoxXML.Image = analvideo.GetFrame(aviStream, j);
Refresh();
}
else
break;
}
}
else
break;
}


The problem is when I do the Leave Event, the cycle that is occouring in the Mouvehover event don´t STOP.
How can I do to STOP it, is it possible?!!

Thanks you very much
GeneralRe: mouse hover / mouse leave Pin
Heath Stewart26-Oct-04 6:54
protectorHeath Stewart26-Oct-04 6:54 
GeneralRe: mouse hover / mouse leave Pin
ee9903526-Oct-04 7:10
ee9903526-Oct-04 7:10 
GeneralRe: mouse hover / mouse leave Pin
Heath Stewart26-Oct-04 10:19
protectorHeath Stewart26-Oct-04 10:19 
GeneralRe: mouse hover / mouse leave Pin
ee9903527-Oct-04 7:45
ee9903527-Oct-04 7:45 
GeneralRe: mouse hover / mouse leave Pin
Heath Stewart27-Oct-04 14:08
protectorHeath Stewart27-Oct-04 14:08 
QuestionRAS API Wrapped in C#??? Pin
mrr26-Oct-04 5:57
mrr26-Oct-04 5:57 
AnswerRe: RAS API Wrapped in C#??? Pin
Heath Stewart26-Oct-04 7:03
protectorHeath Stewart26-Oct-04 7:03 
AnswerRe: RAS API Wrapped in C#??? Pin
Alex Korchemniy26-Oct-04 11:57
Alex Korchemniy26-Oct-04 11:57 
GeneralXmlElement.SetAttribute not working as expected Pin
Colin Angus Mackay26-Oct-04 5:10
Colin Angus Mackay26-Oct-04 5:10 
GeneralRe: XmlElement.SetAttribute not working as expected Pin
Heath Stewart26-Oct-04 7:00
protectorHeath Stewart26-Oct-04 7:00 
QuestionC++ header to .NET? Pin
hagay_ar26-Oct-04 4:44
hagay_ar26-Oct-04 4:44 
AnswerRe: C++ header to .NET? Pin
Heath Stewart26-Oct-04 6:23
protectorHeath Stewart26-Oct-04 6:23 
GeneralC# with some code in MFC Pin
ee9903526-Oct-04 4:40
ee9903526-Oct-04 4:40 
GeneralRe: C# with some code in MFC Pin
Judah Gabriel Himango26-Oct-04 5:20
sponsorJudah Gabriel Himango26-Oct-04 5:20 
GeneralRe: C# with some code in MFC Pin
Heath Stewart26-Oct-04 6:30
protectorHeath Stewart26-Oct-04 6:30 
GeneralSleep function in C# Pin
Ariadne26-Oct-04 4:16
Ariadne26-Oct-04 4:16 
GeneralRe: Sleep function in C# Pin
Judah Gabriel Himango26-Oct-04 4:24
sponsorJudah Gabriel Himango26-Oct-04 4:24 

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.