Click here to Skip to main content
15,905,233 members
Home / Discussions / C#
   

C#

 
AnswerRe: Animated GIF Pin
The Man from U.N.C.L.E.20-Mar-10 5:04
The Man from U.N.C.L.E.20-Mar-10 5:04 
GeneralRe: Animated GIF Pin
Joseph M. Ziemianski20-Mar-10 5:10
Joseph M. Ziemianski20-Mar-10 5:10 
Questionpopulate a specefic elemnt with attribute as column or tag [modified] Pin
Jassim Rahma20-Mar-10 4:23
Jassim Rahma20-Mar-10 4:23 
AnswerFormatting Pin
Not Active20-Mar-10 4:39
mentorNot Active20-Mar-10 4:39 
GeneralRe: Formatting Pin
Jassim Rahma20-Mar-10 4:42
Jassim Rahma20-Mar-10 4:42 
GeneralRe: Formatting Pin
Not Active20-Mar-10 6:54
mentorNot Active20-Mar-10 6:54 
AnswerRe: populate a specefic elemnt with attribute as column or tag Pin
Rod Kemp21-Mar-10 13:52
Rod Kemp21-Mar-10 13:52 
Questionproblem reading child by attribute Pin
Jassim Rahma20-Mar-10 4:02
Jassim Rahma20-Mar-10 4:02 
AnswerRe: problem reading child by attribute Pin
Not Active20-Mar-10 4:08
mentorNot Active20-Mar-10 4:08 
GeneralRe: problem reading child by attribute Pin
Jassim Rahma20-Mar-10 4:14
Jassim Rahma20-Mar-10 4:14 
GeneralRe: problem reading child by attribute Pin
Jassim Rahma20-Mar-10 4:16
Jassim Rahma20-Mar-10 4:16 
GeneralRe: problem reading child by attribute Pin
Not Active20-Mar-10 4:28
mentorNot Active20-Mar-10 4:28 
GeneralRe: problem reading child by attribute Pin
Jassim Rahma20-Mar-10 4:33
Jassim Rahma20-Mar-10 4:33 
GeneralRe: problem reading child by attribute Pin
Not Active20-Mar-10 4:37
mentorNot Active20-Mar-10 4:37 
GeneralRe: problem reading child by attribute Pin
Jassim Rahma20-Mar-10 4:40
Jassim Rahma20-Mar-10 4:40 
GeneralRe: problem reading child by attribute Pin
Not Active20-Mar-10 6:50
mentorNot Active20-Mar-10 6:50 
AnswerRe: problem reading child by attribute Pin
Rod Kemp20-Mar-10 19:46
Rod Kemp20-Mar-10 19:46 
QuestionHttpWebRequest exception handling Pin
Evgeni5719-Mar-10 19:35
Evgeni5719-Mar-10 19:35 
AnswerRe: HttpWebRequest exception handling Pin
OriginalGriff19-Mar-10 22:50
mveOriginalGriff19-Mar-10 22:50 
GeneralRe: HttpWebRequest exception handling Pin
Luc Pattyn20-Mar-10 3:10
sitebuilderLuc Pattyn20-Mar-10 3:10 
Questionmean Pin
v_neil8719-Mar-10 18:52
v_neil8719-Mar-10 18:52 
what the meaning of this code?

class MouseInvoker
{
#region Declaration
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
public static extern void mouse_event(long dwFlags, long dx, long dy, long cButtons, long dwExtraInfo);

private const int MOUSEEVENTF_LEFTDOWN = 0x02;
private const int MOUSEEVENTF_LEFTUP = 0x04;
private const int MOUSEEVENTF_RIGHTDOWN = 0x08;
private const int MOUSEEVENTF_RIGHTUP = 0x10;
#endregion

#region Move Cursor
public static void move(int X, int Y)
{
Cursor.Position = new Point(X, Y);
}
#endregion

#region Left Click
public static void leftClick(int X, int Y, int count)
{
for (int c = 0; c < count; c++)
{
mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, X, Y, 0, 0);
System.Threading.Thread.Sleep(100);
}
}
#endregion

#region Right Click
public static void rightClick(int X, int Y, int count)
{
for (int c = 0; c < count; c++)
{
mouse_event(MOUSEEVENTF_RIGHTDOWN | MOUSEEVENTF_RIGHTUP, X, Y, 0, 0);
System.Threading.Thread.Sleep(100);
}
}
#endregion
}
AnswerRe: mean Pin
Rod Kemp19-Mar-10 19:35
Rod Kemp19-Mar-10 19:35 
AnswerRe: mean Pin
v_neil8719-Mar-10 19:43
v_neil8719-Mar-10 19:43 
AnswerRe: mean Pin
Not Active19-Mar-10 19:53
mentorNot Active19-Mar-10 19:53 
QuestionGetting a value from a constructor Pin
av725419-Mar-10 7:22
av725419-Mar-10 7:22 

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.