Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
all groups > c# > december 2007 > threads for sunday december 23

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

string.GetHashCode() and HashTable calls GetHashCode() Differ?
Posted by Ashish Khandelwal at 12/23/2007 11:39:40 PM
-----See below code, string str = "blair"; string strValue = "ABC"; string str1 = "brainlessness"; string strValue1 = "XYZ"; int hash = str.GetHashCode() ; // Returns 175803953 int hash1 = str1.GetHashCode(); // Returns 175803953 Hashtable ht = new Hashtable(); ht.Add(hash ,strValue); ht.Ad...more >>


Fast Index a File System?
Posted by james at 12/23/2007 11:17:35 PM
Hi Everybody, I am trying to build a tree of my entire file system. The tree includes attributes like file size and last modified. My current implementation is multi threaded using the threadpool, but it takes around 10 minutes to complete. I don't understand why it would take so long beca...more >>

How to search collection
Posted by abcd at 12/23/2007 10:24:01 PM
I have a generic list of objects. Each object contains multiple objects and one of the object has some properties. Now I need to filter the list based on those properties. Whats the best way for me. I tried foreach loop but I am unable to write the filter criteria. All the proeperties I need t...more >>

Remote debugger service
Posted by Smokey Grindel at 12/23/2007 8:59:12 PM
Does anyone know if I run the Visual Studio Remote Debugger service on my development server will it slow down the system? Never used the service before... use to just launch the remote debugging app to do it in the past.. thanks! ...more >>

artificial inteligence
Posted by Andy B at 12/23/2007 5:03:30 PM
I want to make a uno game where you can have multiple players including the computer if the human player/s want it to. How would you make the support for computer to play and actually play the right cards if it has any? ...more >>

webbrowser with tabcontrol
Posted by RobcPettit@yahoo.co.uk at 12/23/2007 2:32:32 PM
Hi, Ive added a tabcontrol to form1 and a webbrowser to tabpage, but I cant see my page. Im using this in form load. webBrowser1.Navigate("http://www.oddschecker.com/bet-basket"); Ive checked the address, and Ive tried it with webbrowser in a form and it works. Its firing private void webBrowse...more >>

VS 9 "Error Lookup" ?
Posted by Polaris at 12/23/2007 9:40:33 AM
Hi: Where is the "Error Lookup" in Visual Studio 2008? Thanks in advance! Polaris...more >>

HELP! How I can exchange data between two forms
Posted by Macias at 12/23/2007 9:03:02 AM
Hi, Please tell me how I can exchange data between two forms. My main form is Form1, and I display a new form something like this: private void Settings_Click(object sender, EventArgs e) { using (Form Setings_form = new settings()) { Set...more >>



thread question
Posted by Analizer1 at 12/23/2007 12:49:48 AM
c#2, vs2005 hello i have say 5 threads running there running a instance of the same class so there is 5 executetasks sample example //this is a method of 1 thread there are 5 of these running in there own thread public void executetask() { while (_ServiceRunning) { try ...more >>


DevelopmentNow Blog