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 >>
Don't see what you're looking for? Search DevelopmentNow.com.
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 >>
|