| Thread | Last Post | Replies |
|
| Strange application behavior | 31 Mar 2004 15:44 GMT | 3 |
Folks - I am observing some weird behavior in our application during shutdown, let me see if I can explain this clearly. Lets say I open 2 instances - A and B - of the application on my machine.
|
| .NET applications not portable ? | 29 Mar 2004 13:49 GMT | 6 |
I've seen the following being explained about .NET applications in a C# Microsoft Course : "An assembly executable (exe) contains a small amount of unmanaged code, known as the stub, which is used to load the .NET CLR and start execution of
|
| Cannot run VB .Net application | 29 Mar 2004 12:01 GMT | 4 |
I am having a problem with my VB .Net application. It runs fine on my machine on which I developed it on. When I run it on another person's machine, I get the following error Application popup: ServiceDeskAdmin.exe - Common Language Runtime Debugging Services : Application has ...
|
| Thread safety of reference affectation & security issue | 29 Mar 2004 07:24 GMT | 4 |
I would like to know if the here below 'MyClass' is threadsafe. In other word, is reference affectation an "atomic operation" for the CLR ? class MyClass {
|
| .NET Remoting | 26 Mar 2004 11:47 GMT | 3 |
We have an architecure in which we are having one Component server and other Web Server which has components installed. I want to use .NET remoting in that scenario, Please suggest me any solution which has been worked out by anyone out there.
|
| DataAdapter.Update problem | 26 Mar 2004 06:30 GMT | 3 |
I have a DataAdapter that connects to this table. Table1 Field1 unique int Identity Field2 int
|
| Resource File Trouble: mscorlib.resources couldn't be found! Large parts of the BCL won't work! | 25 Mar 2004 22:07 GMT | 2 |
Has anyone ever run into a problem using resource files that results in the following error message: mscorlib.resources couldn't be found! Large parts of the BCL won't work! I added an additional resource file to my project and load the resource into
|
| mscorlib pulic key length | 25 Mar 2004 21:39 GMT | 2 |
This post is more to do with my curiosity than anything. Does anyone know why the mscorlib public key is so short? It is only 16 bytes long, and on top of that only has 1 byte that is non-zero.
|
| Weird behaviour : GC & Multithreading ... | 25 Mar 2004 21:36 GMT | 4 |
Look at the following code : I instanciate a class which creates a new Thread in its .ctor. Then i set the instance of this class to null and let the GC run - but GC only cleans this instance up if I explicitly Start() and
|
| URGENT: Hosting CLR from Citrix | 25 Mar 2004 19:38 GMT | 1 |
We have a Delphi application that hosts .NET 1.0. Some customers run it from a Citrix server just fine, while others get error number 2147024894 when calling ICorRuntimeHost->Start We are binding to the runtime with default values, and get back a valid
|
| Adding Type Initializers Whilst Profiling | 25 Mar 2004 17:36 GMT | 15 |
I am writing some code that uses the Profiling API. I want to know if adding (or modifying if present) a Type Initializer (.cctor) is a safe thing to do whilst profiling? I intend to add it during the "AssemblyLoadFinished" profiler
|
| Program wont run on another computer... | 24 Mar 2004 14:46 GMT | 4 |
I have made a program that works fine on my computer. When I try to run it on another computer I get the error message Title: "MYPROGRAM.EXE -Common Language Runtime Debugging Services Message: Application has generated an exception that could not be handled Process id=0x550 (1360), ...
|
| Weird assembly key problem | 24 Mar 2004 13:15 GMT | 6 |
I have an application that uses a simple utility DLL. The DLL has a key specified in AssemblyInfo file: [assembly: AssemblyKeyFile(@"..\..\Utils.snk")] Everything works fine on a development machine. Now when I try to install
|
| Growing Working Set Size on GUI App | 23 Mar 2004 10:19 GMT | 2 |
I know there have been a lot of posts in relation to GC, working set, trimming working sets, minimizing forms, etc. I've read every one I can find, but have not found a solution to my problem. The closest I ever found was the thread here recently "GC does not release memory... ...
|
| ICorProfiler Question - Force class loading | 22 Mar 2004 21:45 GMT | 6 |
I know that some calls into the COM profiler API can cause the CLR to call back into your COM object as it loads in additional classes. I was wondering if I could force this to happen for classes I want. For example, I need to know certain facts about a method call (such as if it
|