| Thread | Last Post | Replies |
|
| AppDomain.CreateInstanceAndUnwrap of shared (GAC) assemblies | 14 Oct 2004 14:27 GMT | 2 |
I am trying to load a shared assembly in it's own application domain. I created a simple Windows Application with 1 button that executes the code below. It is trying to load a very simple assembly 'ClassLibrary1' that is located in the GAC.
|
| Compatibility Issues with .NET Framework | 14 Oct 2004 14:24 GMT | 1 |
Hello: My Problem is simple. I develop vb.net applications using VisualStudio 2003, and now there's a strange problem. I wrote a backup application for a friend of mine, using SharpZipLib to create ZIP-Files. Now I installed the latest dot-Net Framework
|
| Initialization order for static fields | 14 Oct 2004 12:22 GMT | 4 |
Does .NET provide any guarantees as to the order in which static fields are initialized? E.g. Sample 1 below appears to work as expected because _myObject is initialized before InitializeSomeType() is called. Sample 2 throws a NullReferenceException because _myObject is not yet ...
|
| Is there a delcaration between Private and Friend | 14 Oct 2004 10:49 GMT | 2 |
Is there a delcaration between Private and Friend In one form I declared private iParentID0 as integer I couldn't access it from another form.
|
| Rotating a Picturebox | 14 Oct 2004 10:39 GMT | 1 |
I am trying to rotate a picturebox control. I have done some experimenting with rotating the image inside the picturebox, but I am trying to get the affect of grabbing the corner of the picturebox and moving the mouse to change the angle. I am sure I can implement the code to ...
|
| Strange BUG in teh Framework? | 14 Oct 2004 09:17 GMT | 34 |
when doing the simple following computation, the value put into the variable numMinusOne is NOT the same as what the computation is showed to be in the Watch window!! here is the code:
|
| threadpooling problem? | 14 Oct 2004 09:10 GMT | 5 |
I am programming a asyncronous server with .NET using ThreadPool.. Basicly Client connected to server using TCP sockets When I test the program until 25 client server can respond all clients.but after 25. client connected server cant respond other clients!where is the
|
| Object deserialization issue | 14 Oct 2004 08:09 GMT | 2 |
I have a class marked as [Serializable]. This class contains private members that I don't need to serialize, as such I've tagged their declaration as [NonSerialized]. Most of these members are initialized in the constructor of my class.
|
| Access violation loading .NET executables simultaneously | 14 Oct 2004 04:59 GMT | 12 |
Hi - we are MSDN Enterprise subscribers. Our no-spam email address is: munter@computershare.com We have a production server (Win 2K SP4, .NET FW 1.1) with a service that schedules jobs, each of which involves running a .NET executable with command
|
| Debug.WriteLine does not wrok in framework 2.0 | 14 Oct 2004 03:15 GMT | 4 |
Debug.WriteLine does not wrok in framework 2.0 I wrote codes in C# 2005. It does not output anything in the output window. Is there any way to let it work?
|
| Regex Woes | 13 Oct 2004 20:57 GMT | 2 |
I'm attempting to check a string and see if it has any other characters besides numeric. Using the following pattern "[^0-9]*", I figured it would find a successfull non-numeric character if it was matched against a string and it does just fine. My question/problem is that when I ...
|
| ngen.exe | 13 Oct 2004 19:58 GMT | 1 |
Where is kept native code at use of the utility ngen.exe? P.S. Sorry of my english
|
| Book recommendation? | 13 Oct 2004 19:13 GMT | 3 |
Has anyone read the book Microsoft .NET Remoting by Williams, Naftel, & McClean (Microsoft Press)? There are mixed reviews on Amazon. I'd like to know what you think. If you've also read Microsoft .NET Distributed Applications: Integrating XML Web Services and .NET Remoting by ...
|
| Missing Assembly Reference / ListIem in a Windows App | 13 Oct 2004 18:01 GMT | 1 |
I'm trying to work through an MSDN example, this is the link.. http://msdn.microsoft.com/library/default.asp?url=/msdnmag/issues/01/02/winforms /toc.asp It is a Windows App but VisualStudio (2003) objects to 'ListItem', If I create a Web App, I can use the ListItem object, which ...
|
| How to create a PDF file from VB.NET | 13 Oct 2004 17:04 GMT | 1 |
I have to create a Password Protected PDF file.
|