Click here to Skip to main content
15,888,401 members
Home / Discussions / C#
   

C#

 
SuggestionRe: TCP error code 10013: An attempt was made to access a socket in a way forbidden by its access permissions 17.21.11.17:8080 Pin
Richard MacCutchan15-Aug-13 4:37
mveRichard MacCutchan15-Aug-13 4:37 
QuestionMulti-Threading PinPopular
bh_15-Aug-13 2:54
bh_15-Aug-13 2:54 
AnswerRe: Multi-Threading Pin
Garth J Lancaster15-Aug-13 3:26
professionalGarth J Lancaster15-Aug-13 3:26 
AnswerRe: Multi-Threading Pin
Ravi Bhavnani15-Aug-13 5:02
professionalRavi Bhavnani15-Aug-13 5:02 
GeneralRe: Multi-Threading Pin
bh_15-Aug-13 21:17
bh_15-Aug-13 21:17 
GeneralRe: Multi-Threading Pin
Ravi Bhavnani16-Aug-13 5:36
professionalRavi Bhavnani16-Aug-13 5:36 
GeneralRe: Multi-Threading Pin
bh_16-Aug-13 5:41
bh_16-Aug-13 5:41 
AnswerRe: Multi-Threading Pin
Forbiddenx16-Aug-13 8:13
Forbiddenx16-Aug-13 8:13 
Background workers will solve this issue for you.
They are real easy to use.

You just have some limits on how you interact with them..
But, by default your UI will run in the same thread and it will freeze if you have some other code that fired off from the ui with no threading.. and that is the problem you a experiencing.

You can use a background worker and fire off the thread and the Dowork sub will then run in the background and will not freeze the ui. I would suggest you read up a little on background workers but they can help a ton with UI freezing issues.
=)

AnswerRe: Multi-Threading Pin
Septimus Hedgehog16-Aug-13 9:38
Septimus Hedgehog16-Aug-13 9:38 
QuestionASP.NET C# Custom Control with Postback. Pin
Forbiddenx14-Aug-13 3:29
Forbiddenx14-Aug-13 3:29 
AnswerRe: ASP.NET C# Custom Control with Postback. Pin
OriginalGriff14-Aug-13 3:41
mveOriginalGriff14-Aug-13 3:41 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Richard MacCutchan14-Aug-13 3:43
mveRichard MacCutchan14-Aug-13 3:43 
SuggestionRe: ASP.NET C# Custom Control with Postback. Pin
Richard MacCutchan14-Aug-13 3:42
mveRichard MacCutchan14-Aug-13 3:42 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Forbiddenx14-Aug-13 3:51
Forbiddenx14-Aug-13 3:51 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Richard MacCutchan14-Aug-13 4:29
mveRichard MacCutchan14-Aug-13 4:29 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Chris Maunder14-Aug-13 4:40
cofounderChris Maunder14-Aug-13 4:40 
AnswerRe: ASP.NET C# Custom Control with Postback. Pin
Richard Deeming14-Aug-13 3:47
mveRichard Deeming14-Aug-13 3:47 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Forbiddenx14-Aug-13 3:57
Forbiddenx14-Aug-13 3:57 
AnswerRe: ASP.NET C# Custom Control with Postback. Pin
Richard Deeming14-Aug-13 4:01
mveRichard Deeming14-Aug-13 4:01 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Forbiddenx14-Aug-13 5:18
Forbiddenx14-Aug-13 5:18 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Forbiddenx14-Aug-13 7:35
Forbiddenx14-Aug-13 7:35 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Richard Deeming14-Aug-13 7:55
mveRichard Deeming14-Aug-13 7:55 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Forbiddenx14-Aug-13 8:03
Forbiddenx14-Aug-13 8:03 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Richard Deeming14-Aug-13 8:14
mveRichard Deeming14-Aug-13 8:14 
GeneralRe: ASP.NET C# Custom Control with Postback. Pin
Forbiddenx16-Aug-13 7:59
Forbiddenx16-Aug-13 7: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.