Click here to Skip to main content
15,922,574 members
Home / Discussions / C#
   

C#

 
GeneralRe: Pin
CiNN17-Feb-06 21:35
CiNN17-Feb-06 21:35 
GeneralRe: Pin
Lawx0118-Feb-06 0:46
Lawx0118-Feb-06 0:46 
Questioncannot connect to server(web service for pocket PC) Pin
Khaled Mahmoud17-Feb-06 10:58
Khaled Mahmoud17-Feb-06 10:58 
QuestionCant add a Web Reference Pin
DocH0liday17-Feb-06 10:50
DocH0liday17-Feb-06 10:50 
QuestionEquilizer Problem Pin
snouto17-Feb-06 7:30
snouto17-Feb-06 7:30 
QuestionC# to UML Pin
hg270517-Feb-06 7:15
hg270517-Feb-06 7:15 
AnswerRe: C# to UML Pin
Insincere Dave17-Feb-06 7:57
Insincere Dave17-Feb-06 7:57 
QuestionDetermining Upload Speeds In C# Pin
mcmcom17-Feb-06 6:46
mcmcom17-Feb-06 6:46 
AnswerRe: Determining Upload Speeds In C# Pin
Guffa17-Feb-06 10:02
Guffa17-Feb-06 10:02 
Questionload 3d object into form Pin
de_Oracle17-Feb-06 6:07
de_Oracle17-Feb-06 6:07 
AnswerRe: load 3d object into form Pin
Judah Gabriel Himango17-Feb-06 10:20
sponsorJudah Gabriel Himango17-Feb-06 10:20 
Question2 Simple quastions Pin
ytubis17-Feb-06 6:04
ytubis17-Feb-06 6:04 
AnswerRe: 2 Simple quastions Pin
Dave Kreskowiak17-Feb-06 10:20
mveDave Kreskowiak17-Feb-06 10:20 
Questionhow to use progressbar for long operation ? Pin
hdv21217-Feb-06 5:14
hdv21217-Feb-06 5:14 
AnswerRe: how to use progressbar for long operation ? Pin
mcmcom17-Feb-06 9:38
mcmcom17-Feb-06 9:38 
QuestionOpen File Pin
tanishq151017-Feb-06 5:14
tanishq151017-Feb-06 5:14 
AnswerRe: Open File Pin
KaptinKrunch17-Feb-06 6:07
KaptinKrunch17-Feb-06 6:07 
AnswerRe: Open File Pin
Somanova42017-Feb-06 6:38
Somanova42017-Feb-06 6:38 
QuestionSystem.Transaction , please Pin
faviochilo17-Feb-06 4:55
faviochilo17-Feb-06 4:55 
AnswerRe: System.Transaction , please Pin
Judah Gabriel Himango17-Feb-06 10:22
sponsorJudah Gabriel Himango17-Feb-06 10:22 
GeneralRe: System.Transaction , please Pin
faviochilo18-Feb-06 14:09
faviochilo18-Feb-06 14:09 
QuestionIP Address to System.Byte Pin
Ariston Darmayuda17-Feb-06 4:52
Ariston Darmayuda17-Feb-06 4:52 
AnswerRe: IP Address to System.Byte Pin
Judah Gabriel Himango17-Feb-06 10:23
sponsorJudah Gabriel Himango17-Feb-06 10:23 
AnswerRe: IP Address to System.Byte Pin
Guffa17-Feb-06 12:22
Guffa17-Feb-06 12:22 
QuestionThread.Sleep Executing at Wrong Time Pin
redfish3417-Feb-06 4:35
redfish3417-Feb-06 4:35 
I thought i knew how to use Thread.Sleep until i made my own "SendKeys" class using the Win32 APIs. Below is my test code. What happens when it executes is that the Thread.Sleep delay occurs at the beginning followed by the 2 SendKeys statement. Clearly this is wrong. The intent is to execute the first SendKeys statement... pause... then execute the second SendKeys statement.

// focus textbox
this.txtTest.Focus();
// send key presses
KeysAuto keysAuto = new KeysAuto();
keysAuto.SendKeys("This is a test.{ENTER}Second Line.{ENTER}");
Thread.Sleep(1000);
keysAuto.SendKeys("This is a test #2.{ENTER}Second Line.{ENTER}");

I have been unsuccessful finding information about this oddness on the internet. Anyone had this problem and can shed some light on it for me?


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.