ok.Thanks,Harold.
KIDYA
Posts
-
Performance issue using Multi threading in Net 3.5 -
Performance issue using Multi threading in Net 3.5ThreadExcecute function is doing encryption of a files using third party dll. So depending upon file size it will vary the encryption time.But If I've run this in parallel for multiple files then definitely it suppose to take less time.
-
Performance issue using Multi threading in Net 3.5Thanks for reply ,that means performance is also based on processor speed/configuration, I'm sharing same dll for performing each task which are not sharing any same inputs,does this matters?
-
Performance issue using Multi threading in Net 3.5Hello All, I'm using Dot Net 3.5 for performing tasks in parallel using below code but It's not showing expected performance i.e. if serial task takes 1 min then using multitasking/parallel tasking it will finish within 1 min or much less time but it takes same time. Code Snippet:
// Initialize the reset events to keep track of completed threads
ManualResetEvent[] resetEvents = new ManualResetEvent[arrFileName.Count];// Launch each method in it's own thread for (int i = 0; i < arrFileName.Count; i++) { resetEvents\[i\] = new ManualResetEvent(false); ThreadPool.QueueUserWorkItem(new WaitCallback((object index) => { int actionIndex = (int)index; // Execute the method ThreadExcecute(arrFileName\[actionIndex\]); // Tell the calling thread that we're done resetEvents\[actionIndex\].Set(); }), i); } // Wait for all threads to execute WaitHandle.WaitAll(resetEvents);
Any suggestion?
-
unzip the .gzip filesHello All, I'm beginner for JavaScript, I need a script for unzip the .gzip files and gzip the any files.I created one application in HTML5 and want to merge above functionality. Can anyone help me out! Thanks
-
Set Image to ButtonI am not able to find Image property of Button. I searched on google too but i didn't get anything. I am working with WPF and C#.
-
Set Image to ButtonHello Experts, I am using System.Windows.Controls.Button and want to set image to button or background as a image.However i didn't find image property to button.I use following code but still not working.My main aim is setting up an image. Thanks.
-
Not able to find Event icon in Property window [modified]Hi Experts, I am new with VS2008 and not able to find Event icon in Property window or anybody can tell me how i can view all events of particular control. FYI..I am working with WPF. Thanks, Kidya
modified on Tuesday, August 30, 2011 3:31 AM
-
Want logic or code for this in cThank you.I got code for same on google!!
-
Want logic or code for this in cHello All, I am new with c!! Can anybody give me the code for following result Input:aababba Output:a2bab2a Its like encrypt given value. Thanks in advance.
-
binding data with gridviewThat autogenerate property coes into asp.net application but not in windows,i checked that one also!! Any other way?
-
binding data with gridviewya we can reorder it using select query command, Thanks!! But i have another query is grid result show desigtime columns as well as runtime columns too!! Than how to solve this problem?
-
binding data with gridviewHello Experts, I am designing columns in datagridview at design time and bind data at run time using dataset...But it shows in gridview my columns(designtime) and dataset column at a time. Waht to do with this? I dont want to change column header order!! It shows according to database column order!! Please help!!
-
How to change the application's trust level?go into website->ASP.NET configuration ,May that will help u!!
-
set dropdownbox value which affect on other dropdownsmartkidya@rediffmail.com Thanx!!
-
set dropdownbox value which affect on other dropdownHello sir!! I got little bit idea , i dont knw its true or wrong? its like i can use onchange event of dropdownbox and sql query.....for sql query i required table having fields country and states... Is it right way?
-
set dropdownbox value which affect on other dropdownHi Deepak, I done my design work but how will do this by coding,Do uhave any idia? For this i have to make table which contain field like country and state? suggest me proper way!!
-
set dropdownbox value which affect on other dropdownHello experts, I want to do is,i have 2 dropdownboxes having names like Country and states ,when i select country then state dropdown box must give respective country's states.Give me way or logic to do this.....
-
mail not recieved by smtp serverSir can u please tell me how to check smtp queue? i almost done all smtp settings that i googled.
-
mail not recieved by smtp serverExactly sir...when i used gmail server then it works well...but for localhost it gives error!!! Then how to tackle this problem?