Click here to Skip to main content
15,899,935 members
Home / Discussions / C#
   

C#

 
GeneralRe: Need various algo asked during interview for dotnet C# Pin
OriginalGriff26-Feb-15 2:37
mveOriginalGriff26-Feb-15 2:37 
GeneralRe: Need various algo asked during interview for dotnet C# Pin
jschell26-Feb-15 10:05
jschell26-Feb-15 10:05 
Questionprint the largest sum along with the sequence of numbers Pin
Member 1018671625-Feb-15 4:36
Member 1018671625-Feb-15 4:36 
SuggestionRe: print the largest sum along with the sequence of numbers PinPopular
Richard Deeming25-Feb-15 4:43
mveRichard Deeming25-Feb-15 4:43 
AnswerRe: print the largest sum along with the sequence of numbers Pin
Pete O'Hanlon25-Feb-15 6:00
mvePete O'Hanlon25-Feb-15 6:00 
GeneralRe: print the largest sum along with the sequence of numbers Pin
manchanx25-Feb-15 6:22
professionalmanchanx25-Feb-15 6:22 
SuggestionRe: print the largest sum along with the sequence of numbers Pin
Matt T Heffron25-Feb-15 7:55
professionalMatt T Heffron25-Feb-15 7:55 
GeneralRe: print the largest sum along with the sequence of numbers Pin
Pete O'Hanlon25-Feb-15 8:38
mvePete O'Hanlon25-Feb-15 8:38 
AnswerRe: print the largest sum along with the sequence of numbers Pin
OriginalGriff25-Feb-15 6:04
mveOriginalGriff25-Feb-15 6:04 
SuggestionRe: print the largest sum along with the sequence of numbers Pin
Rob Philpott26-Feb-15 2:25
Rob Philpott26-Feb-15 2:25 
QuestionDataGridView Pin
Member 1147904025-Feb-15 2:08
Member 1147904025-Feb-15 2:08 
AnswerRe: DataGridView Pin
manchanx25-Feb-15 2:16
professionalmanchanx25-Feb-15 2:16 
AnswerRe: DataGridView Pin
Pete O'Hanlon25-Feb-15 3:35
mvePete O'Hanlon25-Feb-15 3:35 
AnswerRe: DataGridView Pin
Keith Barrow25-Feb-15 3:37
professionalKeith Barrow25-Feb-15 3:37 
Questionmouse simulation code c# Pin
Omarkkk24-Feb-15 21:55
Omarkkk24-Feb-15 21:55 
AnswerRe: mouse simulation code c# Pin
OriginalGriff24-Feb-15 22:07
mveOriginalGriff24-Feb-15 22:07 
GeneralRe: mouse simulation code c# Pin
Omarkkk24-Feb-15 22:11
Omarkkk24-Feb-15 22:11 
GeneralRe: mouse simulation code c# Pin
OriginalGriff24-Feb-15 22:13
mveOriginalGriff24-Feb-15 22:13 
GeneralRe: mouse simulation code c# Pin
Omarkkk24-Feb-15 22:16
Omarkkk24-Feb-15 22:16 
GeneralRe: mouse simulation code c# Pin
Omarkkk24-Feb-15 22:18
Omarkkk24-Feb-15 22:18 
GeneralRe: mouse simulation code c# Pin
OriginalGriff24-Feb-15 22:44
mveOriginalGriff24-Feb-15 22:44 
GeneralRe: mouse simulation code c# Pin
Omarkkk26-Feb-15 0:52
Omarkkk26-Feb-15 0:52 
GeneralRe: mouse simulation code c# Pin
OriginalGriff26-Feb-15 1:05
mveOriginalGriff26-Feb-15 1:05 
The chances are that you can't do it quite like that: the way windows handles messages is probably why - they get queued, not executed immediately, so it's very unlikely that
Left down
Move mouse
left up
will be executed in that sequence.
It's possible (I haven't tried) that this would work:
C#
mouse_event(MOUSEEVENTF_LEFTDOWN, Cursor.Position.X, Cursor.Position.Y, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, Cursor.Position.X + 100, Cursor.Position.Y + 100, 0, 0);
It probably should.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: mouse simulation code c# Pin
Omarkkk26-Feb-15 1:23
Omarkkk26-Feb-15 1:23 
GeneralRe: mouse simulation code c# Pin
OriginalGriff26-Feb-15 1:59
mveOriginalGriff26-Feb-15 1:59 

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.