Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~1K People Reached

4 Posted Topics

Member Avatar for chsarp_vijay

You can't access UI controls from another thread in the normal way. You need to use control.Invoke to access the control, this will work its way to the thread that created the control and work correctly. You can use code like this: [code] if (control.InvokeRequired) control.Invoke(SomeMethod); else control.SomeNormalProperty = someValue; …

Member Avatar for macu
0
985
Member Avatar for thegrovesy

There's a few ways you could approach this issue. One option would be to have a lightweight album class that has e.g. a thumbnail of the album cover, an artist and title and a track count. You then create a collection of these and display them to the user in …

Member Avatar for macu
0
118
Member Avatar for macu

For the purpose of long running tasks in an ASP.NET application I've written some test code that I plan to use to fire off long tasks in another thread so that the web request can return. This is my first real world usage of multi-threading so I'm interested in any …

0
69
Member Avatar for macu

I have a web app (asp.net) for which there are a number of processes that could potentially be long running. For arguments sake let's say these could be 1hour+. I don't want these processes to tie up IIS when they're running. I'm interested in what would be happening in IIS …

0
49

The End.