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

C#

 
GeneralRe: WebService not returning Color Pin
Luc Pattyn25-Sep-10 17:44
sitebuilderLuc Pattyn25-Sep-10 17:44 
GeneralRe: WebService not returning Color Pin
PIEBALDconsult25-Sep-10 17:52
mvePIEBALDconsult25-Sep-10 17:52 
GeneralRe: WebService not returning Color Pin
Luc Pattyn25-Sep-10 18:01
sitebuilderLuc Pattyn25-Sep-10 18:01 
GeneralRe: WebService not returning Color Pin
PIEBALDconsult25-Sep-10 18:04
mvePIEBALDconsult25-Sep-10 18:04 
GeneralRe: WebService not returning Color Pin
Luc Pattyn25-Sep-10 18:10
sitebuilderLuc Pattyn25-Sep-10 18:10 
GeneralRe: WebService not returning Color [modified] Pin
PIEBALDconsult25-Sep-10 18:44
mvePIEBALDconsult25-Sep-10 18:44 
AnswerRe: WebService not returning Color Pin
AspDotNetDev25-Sep-10 21:35
protectorAspDotNetDev25-Sep-10 21:35 
GeneralRe: WebService not returning Color Pin
PIEBALDconsult26-Sep-10 5:01
mvePIEBALDconsult26-Sep-10 5:01 
AnswerRe: WebService not returning Color Pin
PIEBALDconsult26-Sep-10 7:31
mvePIEBALDconsult26-Sep-10 7:31 
GeneralRe: WebService not returning Color Pin
Luc Pattyn26-Sep-10 7:47
sitebuilderLuc Pattyn26-Sep-10 7:47 
GeneralRe: WebService not returning Color Pin
PIEBALDconsult26-Sep-10 9:37
mvePIEBALDconsult26-Sep-10 9:37 
GeneralRe: WebService not returning Color Pin
Luc Pattyn26-Sep-10 9:48
sitebuilderLuc Pattyn26-Sep-10 9:48 
GeneralRe: WebService not returning Color Pin
PIEBALDconsult26-Sep-10 10:10
mvePIEBALDconsult26-Sep-10 10:10 
GeneralRe: WebService not returning Color Pin
Luc Pattyn26-Sep-10 10:18
sitebuilderLuc Pattyn26-Sep-10 10:18 
GeneralRe: WebService not returning Color Pin
PIEBALDconsult26-Sep-10 12:41
mvePIEBALDconsult26-Sep-10 12:41 
AnswerRe: WebService not returning Color Pin
PIEBALDconsult27-Sep-10 16:26
mvePIEBALDconsult27-Sep-10 16:26 
GeneralRe: WebService not returning Color Pin
Luc Pattyn28-Sep-10 2:35
sitebuilderLuc Pattyn28-Sep-10 2:35 
Questionvisual studio addin - recalc dependencies before a build Pin
Jim Crafton24-Sep-10 9:21
Jim Crafton24-Sep-10 9:21 
QuestionRe: visual studio addin - recalc dependencies before a build Pin
AspDotNetDev24-Sep-10 11:04
protectorAspDotNetDev24-Sep-10 11:04 
Questionconnecting acces with udl file Pin
Erdinc2724-Sep-10 3:47
Erdinc2724-Sep-10 3:47 
AnswerRe: connecting acces with udl file Pin
PIEBALDconsult24-Sep-10 11:34
mvePIEBALDconsult24-Sep-10 11:34 
Questioncreating a pause? Pin
stephen.darling24-Sep-10 2:52
stephen.darling24-Sep-10 2:52 
AnswerRe: creating a pause? Pin
Manfred Rudolf Bihy24-Sep-10 3:04
professionalManfred Rudolf Bihy24-Sep-10 3:04 
GeneralRe: creating a pause? Pin
stephen.darling24-Sep-10 3:12
stephen.darling24-Sep-10 3:12 
GeneralRe: creating a pause? Pin
Manfred Rudolf Bihy24-Sep-10 3:25
professionalManfred Rudolf Bihy24-Sep-10 3:25 
I'll try to explain it in more detail.
A forms application has a thread to handle all the events
that are happening when the user enters input or clicks
something with the mouse. When an event handler is attached
to a forms object and it does a Thread.Sleep(xxxx) events
can no longer be handled and the application seems to freeze
for time specified in the Thread.Sleep call.

One thing you might try if you're not yet comfortable with creating
your own Thread is using a timer on your form. When the text is entered
the timer is set and activated. In the event handler of the timer the text
will finally be written to the textbox. Since all this is happending on
the GUI thread you don't even have to worry about that invoke bit I mentioned
in my previous response.

Better? Wink | ;-)

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.