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# > november 2006 > threads for saturday november 11

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

Visual Studio on Vista
Posted by Frank Rizzo at 11/11/2006 11:43:41 PM
I've heard rumblings here and there that various versions of Visual Studio will not run on Vista. I can't find definitive explanation anywhere of which one will run and which one won't. I am mostly interested in vs2003 and vs2005. Is it mostly an issue of UAC or not running as an admin? ...more >>


C# MHTML Code
Posted by g_sharad NO[at]SPAM yahoo.com at 11/11/2006 10:52:57 PM
Hi all Being freelancer, I am not that comfortable with C# code I have made a prg which send mail on queue basis, I need the code for Mime format ie MHTML in c# pls help ...more >>

oForm.Close() vs this.Close() in a modal dialog.
Posted by dan.c.roth NO[at]SPAM gmail.com at 11/11/2006 7:34:36 PM
oForm.Close() vs this.Close() in a modal dialog. oFrom.Close() calls Form.Dispose() but this.Close() ,say in the click event of the Form, does not. I can think of the reason for this but is this documented and if so can someone give me the reference. And is this true for .net 1 and 2. Tha...more >>

Cross Thread Exception after reading Asynchronous Serial Port
Posted by Mo at 11/11/2006 7:33:13 PM
I am trying to set a text box value when data is received from the com port (barcode reader). I am getting the following error when I try to set the text box TXNumber after data is received Cross-thread operation not valid: Control 'TXNumber' accessed from a thread other than the thread it wa...more >>

Help With Creating Web Bar Graphs
Posted by robert.q.johnson NO[at]SPAM anheuser-busch.com at 11/11/2006 6:53:25 PM
Help. I am trying to create a web page in C# to display two rows of data with bar graphs (an image 1px). I get the max value of the row and use the following formula to size the height of the image, but the bar graphs are not sizing correctly. Can anyone provide me with a solution or any...more >>

Output Directory using Access 2003 DB
Posted by Soddy at 11/11/2006 4:12:01 PM
Hello! I'm playing with an Access 2003 (Converted Northwind & Split) DB. I 'copy & paste' the split Access DB into the 'Solution' of C#.NET and make the 'connection'. I then 'copy & Paste' the DB (from the original into the 'Output Directory' of the Project - Debug). I then went into the...more >>

Set style for button
Posted by rongchaua at 11/11/2006 3:36:01 PM
Hi all, I want to change the style of a button. But I don't know how to do it. For example, I have already a button OK on form. I want to add these styles to this button (WS_CHILD || WS_VISIBLE || WS_CLIPSIBLINGS || WS_TABSTOP || BS_FLAT). What should I do now? All help will be appreciate...more >>

Reusable event handler - identify sender
Posted by Me at 11/11/2006 3:22:44 PM
My form has a dynamically populated context menu, and each has the same event handler for the click event. The event need to write the text of the clicked menu item into a database, so I need to either pass that to the event handler, which I cannot figure out how to do, or access the proper...more >>



Child list for field owner-info cannot be created
Posted by normb at 11/11/2006 11:26:01 AM
My name is Norm, I changed something that caused this problem, and I do not what it was. I also do not know how to debug this problem! The line where the crash occures is marked by an *. The windows form will not display in the designer. Please help!! // // Animal // this.AutoScaleBas...more >>

C# using classes from C++ DLL
Posted by Rich at 11/11/2006 10:52:02 AM
Yes, I'm a noob with .NET looking for help. My goal is to eventually write a managed DLL in C++ that is a wrapper for an unmanaged C DLL, then use the managed DLL in C#, VB, etc. Initially, I am just trying to write a very simple managed DLL in C++ and use it from C#. In my C++ DLL I define ...more >>

C# (supply chain) simulation // data generation
Posted by AlexL at 11/11/2006 5:55:01 AM
Hi! I'm working on a BI project and have to generate sample data. My problem is that the data in the system depend on each other, supply chain. I already had a look at some data generators and simulation systems, but both are not really what I need. So my question, is there something, lik...more >>

possible to use Threadpool
Posted by Daniel at 11/11/2006 3:58:08 AM
Hi all I have written a app that gets emails from a DB and checks if it's a correct email (connects to the remote mailserver and checks the response). I would like to improve the performance with using multiple threads. can I use a threadpool for this? and how do I have to do this. For start...more >>

lock or invoke is better for updating control.
Posted by archana at 11/11/2006 3:03:12 AM
Hi all, I am having application wherein i am using asynchronous programming and using callback i am updating one label control. My question is can i use lock statment to lock control. If yes which one is better to prevent unpredictable update of label. Whether should i use lock statement or...more >>

Change VS2005 C# project to use mscorlib 1.1
Posted by docschnipp at 11/11/2006 2:26:01 AM
I have moved a project from VS2003 to VS2005 and now all references point to ..NET2.0 libs. How can I change this back to 1.1, but still use VS2005? I need this for compatibility reasons. thanks doc ...more >>

Compress a String
Posted by Adriano at 11/11/2006 2:08:38 AM
Can anyone recommend a simple way to compress/decomress a String in .NET = 1.1 ? I have a random string of 70 characters, the output from a DES3 = encryption, and I wish to reduce the lengh of it, thanks,...more >>

CLR behavior about accessing data during garbage collection working
Posted by Hyun-jik Bae at 11/11/2006 1:41:00 AM
I got a curiosity while using CLR. How can it be done that accessing object data by CLR application is safe even while garbage collector is working? Is the GC thread running in realtime priority for this for example? Please reply. Thanks in advance. Hyun-jik Bae ...more >>


DevelopmentNow Blog