Click here to Skip to main content
15,890,282 members
Home / Discussions / C#
   

C#

 
AnswerRe: Datagridview row display Pin
Office Lineman9-Jun-06 7:18
Office Lineman9-Jun-06 7:18 
GeneralRe: Datagridview row display Pin
Mairaaj Khan9-Jun-06 21:01
professionalMairaaj Khan9-Jun-06 21:01 
GeneralRe: Datagridview row display Pin
printscreen123459-Jun-06 21:18
printscreen123459-Jun-06 21:18 
QuestionRemote capture SharePoint? Pin
Lane Yu8-Jun-06 17:16
Lane Yu8-Jun-06 17:16 
QuestionHow to run App from stream ? Pin
hdv2128-Jun-06 12:48
hdv2128-Jun-06 12:48 
AnswerRe: How to run App from stream ? Pin
Stephan Samuel8-Jun-06 12:56
Stephan Samuel8-Jun-06 12:56 
Questionhow to perform mouse click on forms applications? Pin
smr858-Jun-06 12:33
smr858-Jun-06 12:33 
AnswerRe: how to perform mouse click on forms applications? Pin
OrlandoCurioso8-Jun-06 16:05
OrlandoCurioso8-Jun-06 16:05 
I have used this InterOp snippet:

private const uint MOUSEEVENTF_LEFTDOWN = 0x0002;
private const uint MOUSEEVENTF_LEFTUP = 0x0004;

[DllImport("user32.dll")]
private static extern void mouse_event(
uint dwFlags, // motion and click options
uint dx, // horizontal position or change
uint dy, // vertical position or change
uint dwData, // wheel movement
IntPtr dwExtraInfo // application-defined information
);

private static void SendClick(Point location)
{
Cursor.Position = location;
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, IntPtr.Zero);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, IntPtr.Zero);
}


GeneralRe: how to perform mouse click on forms applications? Pin
smr858-Jun-06 21:05
smr858-Jun-06 21:05 
AnswerRe: how to perform mouse click on forms applications? Pin
rah_sin8-Jun-06 21:03
professionalrah_sin8-Jun-06 21:03 
GeneralRe: how to perform mouse click on forms applications? Pin
smr858-Jun-06 21:12
smr858-Jun-06 21:12 
GeneralRe: how to perform mouse click on forms applications? Pin
rah_sin8-Jun-06 21:21
professionalrah_sin8-Jun-06 21:21 
AnswerRe: how to perform mouse click on forms applications? Pin
suguimoto8-Jun-06 21:10
suguimoto8-Jun-06 21:10 
GeneralRe: how to perform mouse click on forms applications? Pin
smr858-Jun-06 21:25
smr858-Jun-06 21:25 
QuestionDrawing Frameworks for C#? Pin
tansey48-Jun-06 12:12
tansey48-Jun-06 12:12 
AnswerRe: Drawing Frameworks for C#? Pin
stancrm8-Jun-06 20:03
stancrm8-Jun-06 20:03 
QuestionRetrieving connection string from app.config Pin
IMC20068-Jun-06 12:03
IMC20068-Jun-06 12:03 
AnswerRe: Retrieving connection string from app.config Pin
Colin Angus Mackay8-Jun-06 12:28
Colin Angus Mackay8-Jun-06 12:28 
QuestionWhy do the GNU/Linux users recommend C#? Pin
X.Cyclop8-Jun-06 11:38
X.Cyclop8-Jun-06 11:38 
AnswerRe: Why do the GNU/Linux users recommend C#? Pin
Colin Angus Mackay8-Jun-06 12:20
Colin Angus Mackay8-Jun-06 12:20 
GeneralRe: Why do the GNU/Linux users recommend C#? Pin
X.Cyclop8-Jun-06 12:27
X.Cyclop8-Jun-06 12:27 
GeneralRe: Why do the GNU/Linux users recommend C#? Pin
Colin Angus Mackay8-Jun-06 12:33
Colin Angus Mackay8-Jun-06 12:33 
QuestionDatabind xml to a treeview Pin
eggie58-Jun-06 10:58
eggie58-Jun-06 10:58 
AnswerRe: Databind xml to a treeview Pin
Koushik Biswas9-Jun-06 7:19
Koushik Biswas9-Jun-06 7:19 
QuestionC# speed vs unmanaged C++ Pin
sjdevo3gsr8-Jun-06 10:58
sjdevo3gsr8-Jun-06 10:58 

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.