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