Click here to Skip to main content
15,914,163 members
Home / Discussions / C#
   

C#

 
GeneralRe: Use GAC Assembly. Pin
Rahul.RK31-Jan-07 0:03
Rahul.RK31-Jan-07 0:03 
GeneralRe: Use GAC Assembly. Pin
jdkulkarni31-Jan-07 0:16
jdkulkarni31-Jan-07 0:16 
GeneralRe: Use GAC Assembly. Pin
jdkulkarni31-Jan-07 1:08
jdkulkarni31-Jan-07 1:08 
GeneralRe: Use GAC Assembly. Pin
Rahul.RK31-Jan-07 2:05
Rahul.RK31-Jan-07 2:05 
GeneralRe: Use GAC Assembly. Pin
jdkulkarni31-Jan-07 17:13
jdkulkarni31-Jan-07 17:13 
GeneralRe: Use GAC Assembly. Pin
Rahul.RK1-Feb-07 19:14
Rahul.RK1-Feb-07 19:14 
QuestionHow to capture mouse enter event while left mouse button is clicked? Pin
Alvaro Enriquez30-Jan-07 21:18
Alvaro Enriquez30-Jan-07 21:18 
AnswerRe: How to capture mouse enter event while left mouse button is clicked? Pin
Mircea Puiu31-Jan-07 0:34
Mircea Puiu31-Jan-07 0:34 
The event you want to treat is fired only if the none of the mouse buttons are pressed.
To overcome this behaviour, treat the MouseMove event of the form like this:
private void Form1_MouseMove(object sender, MouseEventArgs e)
{
	if (e.Button == MouseButtons.Left)
	{
		Point pt = pictureBox1.PointToClient(Cursor.Position);
		Rectangle rc = pictureBox1.ClientRectangle;
		if (rc.Contains(pt))
		{
			// Do what you wanted to do within the MouseEnter event handler
		}
	}
}
where pictureBox1 is your PictureBox object

SkyWalker

GeneralRe: How to capture mouse enter event while left mouse button is clicked? Pin
Alvaro Enriquez31-Jan-07 1:31
Alvaro Enriquez31-Jan-07 1:31 
GeneralRe: How to capture mouse enter event while left mouse button is clicked? Pin
Mircea Puiu31-Jan-07 2:35
Mircea Puiu31-Jan-07 2:35 
GeneralRe: How to capture mouse enter event while left mouse button is clicked? Pin
Martin#31-Jan-07 2:49
Martin#31-Jan-07 2:49 
GeneralRe: How to capture mouse enter event while left mouse button is clicked? Pin
Mircea Puiu31-Jan-07 3:32
Mircea Puiu31-Jan-07 3:32 
QuestionRe: How to capture mouse enter event while left mouse button is clicked? Pin
Alvaro Enriquez31-Jan-07 3:55
Alvaro Enriquez31-Jan-07 3:55 
AnswerRe: How to capture mouse enter event while left mouse button is clicked? Pin
Mircea Puiu31-Jan-07 4:59
Mircea Puiu31-Jan-07 4:59 
GeneralRe: How to capture mouse enter event while left mouse button is clicked? Pin
Martin#31-Jan-07 10:46
Martin#31-Jan-07 10:46 
GeneralRe: How to capture mouse enter event while left mouse button is clicked? Pin
Alvaro Enriquez31-Jan-07 23:15
Alvaro Enriquez31-Jan-07 23:15 
AnswerRe: How to capture mouse enter event while left mouse button is clicked? Pin
Alvaro Enriquez1-Feb-07 0:31
Alvaro Enriquez1-Feb-07 0:31 
QuestionAlgorithm for encryption and Connect Pin
zanele sibongile30-Jan-07 21:18
zanele sibongile30-Jan-07 21:18 
Question"Window class name is not valid. " in designer Pin
Christian Graus30-Jan-07 20:47
protectorChristian Graus30-Jan-07 20:47 
AnswerRe: "Window class name is not valid. " in designer Pin
Martin#30-Jan-07 21:15
Martin#30-Jan-07 21:15 
QuestionRe: "Window class name is not valid. " in designer Pin
Seishin#30-Jan-07 21:17
Seishin#30-Jan-07 21:17 
AnswerRe: "Window class name is not valid. " in designer Pin
Martin#30-Jan-07 21:24
Martin#30-Jan-07 21:24 
GeneralRe: "Window class name is not valid. " in designer Pin
Seishin#30-Jan-07 21:31
Seishin#30-Jan-07 21:31 
GeneralRe: "Window class name is not valid. " in designer Pin
Christian Graus30-Jan-07 22:01
protectorChristian Graus30-Jan-07 22:01 
GeneralRe: "Window class name is not valid. " in designer Pin
Martin#30-Jan-07 22:26
Martin#30-Jan-07 22:26 

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.