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
May 2008
June 2008
all groups > dotnet framework > july 2006 > threads for july 29 - 31, 2006

Filter by week: 1 2 3 4 5

css issue
Posted by Ginny at 7/31/2006 11:40:16 PM
hi, i have a web application. there is a css file applied to it. when i load the page for the first time, css is applied properly but after the postabck, css does not apply at all. it is strange. the application is working fine on all computers excpet my laptop. something wrong with my browser, ...more >>


DataGridViewComboBoxColumn Data Binding Fun
Posted by zaffle NO[at]SPAM gmail.com at 7/31/2006 10:51:26 PM
Ok, lets see if I can phrase my question so that it makes sense to me, and maybe even anyone else who reads this..... I'll use the standard "Widget" explaination to explain what I'm trying to do. I have a DataGridView... thats a good start. The DataGridView.DataSource is a BindingList<Widge...more >>

Preventing ThreadAbortException.
Posted by Ken Varn at 7/31/2006 4:17:25 PM
Is there any method that I can guarantee execution of a code path within a thread without a Thread.Abort call interrupting it? I am concerned that a file write that is done using two calls will not complete if the thread is aborted before the second call gets a chance to complete. I thought a...more >>

Sending chr(255) to serial port
Posted by ... at 7/31/2006 12:49:40 PM
Hi I need to send a chr(255) to a serial port. When I send it, through comm.write (chr(255)) it sends a chr(63) ... in Hex, I write chr(&FF) and it actually sends chr(&3F) ... why does this happen, and how can I send it right ? I'm using vb.net 2005 express with framework 2.0 Thanks for ...more >>

CultureInfo.NumericFormat and System.Convert
Posted by dorminey NO[at]SPAM gmail.com at 7/31/2006 12:44:31 PM
I am having a problem where a few machines at my company are failing on the following line of code: double dbl = System.Convert.ToDouble("0"); I have traced it to the fact that for the thread's current culture ("en-US") the NumberFormat.PositiveSign is in fact set to "0" instead of "+". ...more >>

Books for building Frameworks
Posted by Stefan Schelling at 7/31/2006 12:32:33 PM
Hi NG. Can you tell me some books which deals with building my own Application Framework? I've already the book from Xin Chen. Are there some more? Thanks in advance Stefan ...more >>

.NET 2.0
Posted by GMiller at 7/31/2006 11:29:42 AM
I am using Visual Studio 2003 and I just updated from .NET 1.1 to 2.0. I have installed the 2.0 framework and the 2.0 SDK. However when I go into Visual Studio under help->about it still shows the .NET version as 1.1. Am I missing a step somewhere? Thank you, ...more >>

add assembly="Microsoft.Office.Interop.Owc problem
Posted by B NO[at]SPAM DJJ at 7/31/2006 10:48:01 AM
Howdy All, Any assistance would be appreciated - even a sound beating if so deserved... When I try to run an ASP.NET application on my Development server (w2k3, IIS6, 1.1 Framework) I get the following error in the Parser for the machine.config file (line 258): Description: An error o...more >>



Unhandled Exception in Windows Service
Posted by The Man From SQL at 7/31/2006 9:31:02 AM
Hello, I need to know if the AppDomain.UnhandledException event can be handled using a Windows Service. I've create a Windows Service that uses the Exception Handling Applilcation Block and there are certain exceptoions that I want bubbled up as unhandled exceptions so in the Main method ...more >>

Where is the parameter argument collection?
Posted by mcskf at 7/31/2006 8:01:02 AM
Hi! I have hundreds of functions. I would like to make a debug possibility. The first task is to list the parameter collection with a cycle. Where is the function parameter argument collection? thx. mcskf...more >>

communicate between two exe applications
Posted by Napo at 7/31/2006 2:40:02 AM
Hi, There are are two app,named App1 and App2. When run App1, it will run App2 automatically. On the other hand, when terminate App1, App2 will aslo be terminated. I think App1 and App2 in a different domain, how to communicate them? I don't want to use process.kill() method to f...more >>

How do you tell if the .Net Framework 2.0 is installed?
Posted by BBM at 7/30/2006 12:04:02 PM
On Windows Server 2003, how do you tell if the .Net Framework version 2.0 is installed? Thanks. BBM...more >>

aspnet user
Posted by mrsh at 7/29/2006 10:22:40 PM
as we know The .NET Framework runs all ASP.NET processes under the local ASPNET account. is there anyw ay that I can change the user and instead of a local user use a Domain user ? thnx Mahmoudreza ...more >>

DataGridView Help
Posted by Taoge at 7/29/2006 10:16:27 PM
DataGridView bind to DataSet which read data from a XML file, when I edit the cell value and save back, it's ok; but when change the cell value programmaticlly, the value can not save back to XML file. Help , please! ...more >>

How to track Form.WindowState changes?
Posted by Lloyd Dupont at 7/29/2006 9:30:24 PM
Apparently there are no event associated with a change of the form's WindowState property. How do I know when my windows has been miniaturized? ...more >>

Testing for invalid characters when creating a directory?
Posted by Dave at 7/29/2006 3:25:12 PM
Is there an easy way to test a directory name for invalid characters before trying to create that directory? I know how to get a character array of invalid characters (Path.GetInvalidPathChars) but do I have to go to all of the trouble of writing of my validation method or is there something ...more >>

Enterprise Library 2.0 installation problem
Posted by RLoski at 7/29/2006 12:26:02 PM
I have tried to install the Enterprise Library 2.0 on my machine with VS 2005 Standard. I get the first welcome screen, hit next and get a "Fatal Error" "Installation ended prematurely because of an error." I cannot find any information on this. ...more >>

Intra-thread lock
Posted by cj_junktrap NO[at]SPAM mail.com at 7/29/2006 10:52:46 AM
Hi Is there something like an intra-thread lock? I'm trying to prevent re-entrant code, and the lock statement will only prevent one thread from entering the critical section while another thread is in it - since my code is triggered by a gui event, it's not impossible that it could be calle...more >>

Convert asynchronous to synchronous
Posted by cj_junktrap NO[at]SPAM mail.com at 7/29/2006 10:47:56 AM
Hi I have a method which I want to present as a synchronous call - you pass in your parameters, and the result as a return value. But within that method, I need to spin off a thread, wait for it to finish doing some stuff, and return a value to the calling method. The problem is that my met...more >>

Could not create Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral,
Posted by alanwo NO[at]SPAM gmail.com at 7/29/2006 2:31:04 AM
Hi Expert, I am the fan of VB My.Application.Log. When I create a new project, it works but after some times My.Application.Log.WriteEntry nno longer work. Exception is enclosed: Could not create Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, ...more >>


DevelopmentNow Blog