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
Favorite Tags
Member Avatar for chsarp_vijay

Hi friends, I have written following program in Csharp windows application. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Threading; namespace Practice4 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void START_Click(object sender, EventArgs e) { Thread …

Member Avatar for macu
0
957
Member Avatar for thegrovesy

Hi all, I am in the process of creating a music library, and want to keep the different layers of implementation separate. My current plan, and understanding has my application divided up like this: 1. GUI Layer, talking to... 2. Music object (and implementation) Layer, talking to... 3. Data Storage …

Member Avatar for macu
0
108
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
65
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
37