Click here to Skip to main content
16,006,845 members
Home / Discussions / C#
   

C#

 
GeneralRe: Convert vb code to c# Pin
karthick.n.mca27-Oct-07 2:23
karthick.n.mca27-Oct-07 2:23 
AnswerRe: Convert vb code to c# Pin
Paul Conrad27-Oct-07 12:19
professionalPaul Conrad27-Oct-07 12:19 
Question*** Problem in Accesing Webservice through Pakcet PC appli**** Pin
D.Madhav26-Oct-07 21:22
D.Madhav26-Oct-07 21:22 
QuestionEnding an Asynchronous call Pin
zafersavas26-Oct-07 21:04
zafersavas26-Oct-07 21:04 
AnswerRe: Ending an Asynchronous call Pin
TJoe27-Oct-07 13:44
TJoe27-Oct-07 13:44 
QuestionSending httpRequest from windows application and receiving httpResponse Pin
D i x y26-Oct-07 19:20
D i x y26-Oct-07 19:20 
AnswerRe: Sending httpRequest from windows application and receiving httpResponse Pin
N a v a n e e t h26-Oct-07 21:32
N a v a n e e t h26-Oct-07 21:32 
QuestionBetter way for Detacting Mouse Movement Pin
Brad Wick26-Oct-07 18:20
Brad Wick26-Oct-07 18:20 
I am checking to see when a user moves their mouse but the problem is sometimes the mouse does not move and it thinks that it did. I think the mouse maybe really did move just one pixel so I want to ignore that mouse movement. Basically I am think that the mouse could move up, down, left or right 5 pixels from the original starting place and the system should think the mouse did not move. Can someone help me fix up my code?

private void Form1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
{
// If mouseCoords is empty don't close the screen saver
if(!mouseCoords.IsEmpty)
{
// If the mouse actually moved
if(mouseCoords != new Point(e.X, e.Y))
{
// Close
this.Close();
}
}
// Set the new point where the mouse is
mouseCoords = new Point(e.X, e.Y);
}
AnswerRe: Better way for Detacting Mouse Movement Pin
mav.northwind26-Oct-07 22:28
mav.northwind26-Oct-07 22:28 
GeneralRe: Better way for Detacting Mouse Movement Pin
Brad Wick27-Oct-07 4:31
Brad Wick27-Oct-07 4:31 
GeneralRe: Better way for Detacting Mouse Movement Pin
mav.northwind27-Oct-07 21:42
mav.northwind27-Oct-07 21:42 
QuestionTo restrict start Menu Pin
tahir_makhdoom26-Oct-07 17:24
tahir_makhdoom26-Oct-07 17:24 
AnswerRe: To restrict start Menu Pin
Arindam Tewary27-Oct-07 0:42
professionalArindam Tewary27-Oct-07 0:42 
GeneralRe: To restrict start Menu Pin
tahir_makhdoom27-Oct-07 0:59
tahir_makhdoom27-Oct-07 0:59 
QuestionZedGraph Pin
james_dixon_200826-Oct-07 14:58
james_dixon_200826-Oct-07 14:58 
AnswerRe: ZedGraph Pin
Paul Conrad26-Oct-07 17:39
professionalPaul Conrad26-Oct-07 17:39 
AnswerRe: ZedGraph Pin
zafersavas26-Oct-07 21:23
zafersavas26-Oct-07 21:23 
QuestionNot look me, Sorry Just Testing Pin
ahmet.ureten26-Oct-07 14:18
ahmet.ureten26-Oct-07 14:18 
AnswerRe: Not look me, Sorry Just Testing Pin
Dave Kreskowiak26-Oct-07 14:36
mveDave Kreskowiak26-Oct-07 14:36 
GeneralRe: Not look me, Sorry Just Testing Pin
ahmet.ureten26-Oct-07 15:05
ahmet.ureten26-Oct-07 15:05 
GeneralRe: Not look me, Sorry Just Testing Pin
Dave Kreskowiak26-Oct-07 18:10
mveDave Kreskowiak26-Oct-07 18:10 
GeneralRe: Not look me, Sorry Just Testing Pin
dataminers27-Oct-07 2:18
dataminers27-Oct-07 2:18 
AnswerRe: Not look me, Sorry Just Testing Pin
Paul Conrad27-Oct-07 12:20
professionalPaul Conrad27-Oct-07 12:20 
QuestionProblem in crystal report Pin
Shuaib wasif khan26-Oct-07 13:09
Shuaib wasif khan26-Oct-07 13:09 
AnswerRe: Problem in crystal report Pin
Paul Conrad27-Oct-07 12:21
professionalPaul Conrad27-Oct-07 12:21 

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.