| Thread | Last Post | Replies |
|
| Enumerating threads | 31 Mar 2005 12:07 GMT | 1 |
Is there a way to enumerate Thread objects in the current application? You can enumerate ProcessThread objects, but you can't get a thread's Name property through those. This compiles, but it crashes with an InvalidCastException in the "For"
|
| Foreground threads and garbage collection | 31 Mar 2005 10:21 GMT | 11 |
In the following code, the finalizers for Class1 and Worker are not called unless I change the thread to a background one or explicitly call GC.Collect() or . Could someone please explain why? Thanks
|
| how to get attribute initialization data through reflection? | 30 Mar 2005 20:47 GMT | 4 |
In language, we apply an attribute to a type or member by specifying a constructor (of that attribute type) and passing appropriate arguments. With reflection, we can get the attribute instances through "MemberInfo.GetCustomAttributes()". But this way, we can only get the
|
| Date Ranges on relative "dates" | 29 Mar 2005 23:37 GMT | 2 |
I'm trying to determine if a date falls within a range. For instance.. given a range of "Mon 8AM to 5PM".. does "Mon 10AM" fall in that range? I'm writing my own parser for the dates (date.Parse("Mon 8AM") only works if now() is a Monday.. or whatever day given in Parse())
|
| Waiting for multiple threads to finish | 29 Mar 2005 08:29 GMT | 4 |
being a VB.NET fan: 1) what is the best way to wait for multiple threads to finish (ie. wait for the last one to finish)? My main thread starts several threads at once and is allowed to continue when they are all done.
|
| Cheating with ILDASM/ILASM | 29 Mar 2005 01:55 GMT | 4 |
I have found that it is possible to do the following: 1. Disassemble a strong named assembly held in the GAC. 2. Make some changes (if desired). 3. Reassemble it and replace it in the underlying GAC folder (e.g.
|
| fatal error C1190: managed targeted code requires '#using <mscorlib.dll>' and '/clr' option | 28 Mar 2005 22:40 GMT | 2 |
I'm developing a utility using Visual C++.NET standard 2003. When I try to compile a sample code, I got the below error Fatal Error C1190:Managed Target Code Requires '#using <mscorlib.dll>' and '/clr' Option.
|
| System.Net.Sockets.SocketException : Access a Socket | 28 Mar 2005 20:59 GMT | 3 |
I have some proplem about Program Pinging. I develope program windows form pinging using microsoft.net framework It can to run under user administrator. But if I login to be user domain it can't using function pinging and appear error below System.Net.Sockets.SocketException: An ...
|
| signing an assembly | 28 Mar 2005 20:45 GMT | 2 |
Hi I need some clarification on signing. what does it mean--signing an assembly? where is ti used? How is it used?
|
| Problem reading image stored as text from SQL server. | 28 Mar 2005 20:35 GMT | 1 |
I have been attempting to load an image or draw a line on a vb.net picture box from data stored in a SQL text field. I have a vb6 program that does this but I have been unable to convert the code to .NET. If anyone has been able to do this or knows how I can do this it would be ...
|
| GAC, Fusion.dll and Access Denied | 25 Mar 2005 03:48 GMT | 5 |
We have a series of COM+ applications written in vb.net. Each consists of a component which is contained in a strong-named DLL hosted in the GAC. I am trying to write a "simple" software distribution application which
|
| Gc in .net | 23 Mar 2005 15:04 GMT | 2 |
What is the name of the Gc alogorithm used by .net? What is the difference between Finalize() and Destructor()?
|
| Debugging at the IL level | 23 Mar 2005 05:10 GMT | 1 |
Is it possible to build a C# program in the Vs2003 IDE and debug it at the IL level. By that I mean step thru the IL code that Ildasm would generate if it was run against the program's Exe output? Thanks.
|
| Windows App deployment problem | 22 Mar 2005 23:45 GMT | 2 |
I have a Windows Application that utilises the Visio Drawing Control. I have written this app in VB.NET. When i dropped the control onto a form the file AxInterop.VisOcx.dll was created. When i try to deploy this app to a machine which has the .NET Framework redistributable ...
|
| Interesting read | 22 Mar 2005 22:22 GMT | 2 |
All - I came across this last week. http://www.ddj.com/documents/s=9211/ddj050201dnn/ I wonder if anyone else had read this article and what your thoughts might be.
|