Groups | Blog | Home


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 clr > october 2003 > threads for october 15 - 21, 2003

Filter by week: 1 2 3 4 5

Compilation error
Posted by Ben at 10/21/2003 9:40:16 PM
I'm using the dos command to compile our app web forms dll via the following batch file : set InDir=c:\test\ set OutDir=c:\inetpub\wwwroot\test\bin\ set InFile1=%InDir%Default.aspx.cs set InFile2=%InDir%Login.aspx.cs set OutFile=%OutDir%\test.webform.dll set assemblies=System.dll,S...more >>


How to add an assembly reference using CodeDOM?
Posted by Mountain Bikn' Guy at 10/21/2003 4:49:16 PM
This code (adapted from the examples in the docs) doesn't make complete sense to me. I have it working, but I'm wondering why I need to declare an assembly reference in 2 places. TIA. Dave CodeCompileUnit compileUnit = new CodeCompileUnit(); CodeNamespace myNamespace = new CodeNamespace("MyNa...more >>

Memory problem
Posted by Sergey Ivasenko at 10/21/2003 1:04:29 PM
I have a Win form application, that receives large (more than 100 000 records) datasets using ADO.NET I open a form and execute data select. The form obtains about 140 000 records pretty quickly. I reopen the query for this form several times. Each time I reopen the query, it takes more and mo...more >>

StringBuilder and PCHAR[]
Posted by Schley Andrew Kutz at 10/21/2003 12:14:16 PM
I am iterating through 454 rows of a table and with each row I use the ID field to form a URI for a contact in a public folder on my exchange server. My memory keeps growing though. I think it is because I reconstruct my URI each time. I have done this 2 ways and I want to know something. Ho...more >>

Out Of Memory Exceptions
Posted by decrypted at 10/20/2003 1:54:01 PM
Hey All, been getting alot of CLR exceptions and out of memory exceptions on certain machines. We have an old-school programmer on the team who still just can't get OOP and as a result we have some LARGE code files and routines. The .net framework documentation states... "The common language...more >>

The shock of the week -- how could I be running the old version of the framework?
Posted by Mountain Bikn' Guy at 10/19/2003 5:21:42 PM
I just called: System.Environment.Version.ToString() and RuntimeEnvironment.GetSystemVersion() as a little experiment. Both report that I'm running 1.0.3705.288. However, my IDE is VS.NET 2003 and I never installed VS.NET 2002 on this machine. I don't recall if something else has ever force...more >>

.Net Profiler
Posted by Franco Gustavo at 10/18/2003 2:56:46 PM
Hi, All What's is the best .net profiler for Debug an application. I have to buy one but I don't know which one!! I tried some of them like Borland and AQTime. My big problem is, my application is a big application, and many times I have many EventHandlers associated to an object, then this...more >>

Execution of a dotnet binary in a different machine
Posted by report_1979 NO[at]SPAM yahoo.com at 10/16/2003 2:16:14 PM
hi, I have an application which sends a dotnet binay file from client to server. Is it possible to execute the dotnet binary in the server(I have CLR here) In java if we have the class file we can execute it in any machine. Is it possible to do the same with dotnet.Is the dll file enough t...more >>



Has anyone seen a delegate lose track of its target?
Posted by Greg Walrath at 10/16/2003 2:06:09 PM
I have written code the subscibe to a delegate that is called at a specific interval. Initially, everything is fine, and the delegate works. However, after some (seemingly random) amount of time, the delegate appears to get disconnected. I have trace statements around the delegate call, each...more >>

Profiling Method Arguments; CORDBG_E_IL_VAR_NOT_AVAILABLE
Posted by Wolfinger Reinhard at 10/16/2003 10:29:46 AM
My CLR Profiler watches Function Entry and Exit with COR_PRF_MONITOR_ENTERLEAVE and logs Method Arguments with ICorDebugILFrame::GetArgument API. What works: * in, out, ref Arguments on FunctionEntry (for void functions) Doesn`t work: * Any arguments for non-void functions * Any arg...more >>

Mutiple CPU problem in Threads.Count
Posted by Shashank Welankar at 10/15/2003 7:36:28 PM
Hi, "System.Diagnostics.Process.GetCurrentProcess().Thread.Count" This does not work on the machine with mutiple CPU? Any hints from MS guys? Shashank ...more >>

Sign application to run in intranet
Posted by Roland Dick at 10/15/2003 5:33:03 PM
Hi all, I've got an application written in C# which reads from the registry. Being started from a network file share, the app crashes. I found out that you can "Full Trust" the Intranet Zone, which makes the application running fine; however, since there are a lot of clients working with it...more >>

Re-Repost: How do we define the JIT debugger in registry???
Posted by José Joye at 10/15/2003 3:03:32 PM
I'm trying to define on my production machine the JIT debugger to catch a bug that only appear there.... :-(( I googled and had a look to MSDN (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/ht ml/cpconenablingjit-attachdebugging.asp). I'm still more than confused!...more >>

How to get one type's array type!
Posted by xiaorun huang at 10/15/2003 12:33:42 PM
with Reflection API, I want to define a array of some type. if the type is defined in else assembly, I can get the array type by call Type.GetType( "TypeName[]" ). but with a type i am defining in same dynamic module, and i cannot create type before define the array type. then how should i to get...more >>


DevelopmentNow Blog