Re: MouseMove event not firing
- From: "Peter Proost" <pproost@xxxxxxxxxxxxxxxxxx>
- Date: Fri, 24 Mar 2006 13:23:19 +0100
Glad I could help you, but that's what we're here for, to help each other
:-)
Greetz, Peter
--
Programming today is a race between software engineers striving to build
bigger and better idiot-proof programs, and the Universe trying to produce
bigger and better idiots. So far, the Universe is winning. (Rich Cook)
"TyBreaker" <tybreakerNO@xxxxxxxxxxxxxxx> schreef in bericht
news:Oh1dgmyTGHA.424@xxxxxxxxxxxxxxxxxxxxxxx
Peter Proost wrote:
Hi tybreaker,
shouldn't Me.MouseMove be PictureBox1.MouseMove
Private Sub PictureBox1_MouseMove(ByVal sender As Object, ByVal e As
MouseEventArgs) Handles Me.MouseMove
End
End Sub
should be
Private Sub PictureBox1_MouseMove(ByVal sender As Object, ByVal e As
MouseEventArgs) Handles PictureBox1.MouseMove
End
End Sub
hth Greetz Peter
Wow, thank you. My ignorance of the language is obvious! I'm not sure
how I mucked that up - the routine declarations get inserted
automatically but I must have done something to stuff it up at some point.
--
______ ___ __
/_ __/_ __/ _ )_______ ___ _/ /_____ ____
/ / / // / _ / __/ -_) _ `/ '_/ -_) __/
/_/ \_, /____/_/ \__/\_,_/_/\_\\__/_/
/___/
There are 10 types of people in this world; those who understand the
binary numbering system and those who don't.
There's no place like 127.0.0.1.
ASCII a silly question, get a silly ANSI.
.
- References:
- MouseMove event not firing
- From: TyBreaker
- Re: MouseMove event not firing
- From: Peter Proost
- Re: MouseMove event not firing
- From: TyBreaker
- MouseMove event not firing
- Prev by Date: Re: Creating a 1 GB Byte Array (System.OutOfMemoryException)
- Next by Date: Re: Starting a console application from parameters
- Previous by thread: Re: MouseMove event not firing
- Next by thread: A good jpeg decoder (class or component)
- Index(es):
Relevant Pages
|