| Thread | Last Post | Replies |
|
| HTTP headers and .NET 1.1 SP1 | 27 Oct 2004 14:10 GMT | 1 |
After installing .NET 1.1 SP1, HttpWebRequest will throw an exception when connecting to servers that are using improperly formatted headers. Several developer blogs have posted a workaround that requires inserting the following
|
| code generation for a property of type DataSet | 27 Oct 2004 14:09 GMT | 1 |
I have a form which contains a property of type System.Data.DataSet. I assign a DataSet to this property at design-time the forms designer. When I now check the dataSet property in the property browser the values are there, but they are not serialized into the formcode.
|
| port visual C++ 6.0 application to visual studio.net | 27 Oct 2004 12:11 GMT | 2 |
I have written an application in visual C++ 6.0. Is it a lot of trouble to port that application to Visual Studio.Net. Can both 6.0 and .net reside simultaneously in the same computer?
|
| Significant Bug with MS Portal Starter Kit | 27 Oct 2004 11:41 GMT | 1 |
There seems to be a significant bug with the C# Visual Studio version of the Portal Starter Kit (http://www.asp.net/starterkits/downloadportal.aspx?tabindex=0&tabid=1). When adding new tabs you often get duplicate tabs added. Also, the change
|
| Determine which assembly references are not from the base framework... | 27 Oct 2004 11:18 GMT | 3 |
I'm looking for the best way to determine which assembly dependencies are not part of the base framework and which are third party libraries. My application stores add-on DLL's in a DB for transparent distribution to all clients. Obviously when loading DLLs into the DB, it is ...
|
| Why can IE return a web page but TcpClient cannot? | 27 Oct 2004 10:46 GMT | 1 |
I have come across a rather bizarre problem using the TcpClient to retrieve a web page. I use the TcpClient in conjunction with a StreamWriter to write a HTTP request to the web site. The web server returns either a 301, 302 or 404 code indicating that the page could
|
| GetCustomAttributes: MarshalAsAttribute | 27 Oct 2004 08:52 GMT | 1 |
I tried to retrieve CustomAttributes from a field in a class that has a MarshalAs attribute but I couldn't. Out of frustration I tried all possible combinations. GetCustomAttributes(true);
|
| Services running on a machine | 27 Oct 2004 07:50 GMT | 2 |
I am developing an application that monitors what services are running on a machine. Is there a class in .NET that is a wrapper around machine services(like how there is a
|
| Path Setting | 27 Oct 2004 06:31 GMT | 1 |
How do we set the path for working in command line enverinoment.Like to Run vbc.exe or sn.exe, normally it gives an error.So please tell me the path setting.
|
| Security Exception when I use IsolatedStorageFilePermissionAttribu | 27 Oct 2004 02:17 GMT | 4 |
I have a simple windows application that I wish to be able to run on machines that don't trust it. The application is simply a sort of calculator that needs to be able to export and import results to files of the user's choosing. The application should also be able to ...
|
| WaitHandle.WaitAll | 26 Oct 2004 22:03 GMT | 1 |
I do not understand the docs for WaitAll. Firstly, what is a "synchronization domain"? The third parameter to WaitAll is an "exitContext", which is supposed to indicate whether or not to exit the synchronization domain before the wait, and then reacquire it after the wait
|
| Problem with .NET sockets | 26 Oct 2004 20:31 GMT | 2 |
I am experiencing an intermittent problem while using .NET sockets. I have an application which opens several sockets -- and in the event that any of them fail, lose connection, or otherwise stop working, attempts to re-establish the connection. After a few days I receive an error ...
|
| Managed Reference Types | 26 Oct 2004 20:29 GMT | 1 |
I've been developing .net apps for some time now, but there are still some things that're unclear in regards to how .Net manages pointers internally. ArrayList lst = new ArrayList (); ...
|
| Windows message -> .NET method | 26 Oct 2004 19:36 GMT | 3 |
Microsoft has put out a document relating Win32 API calls to .NET methods (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/h tml/win32map.asp ) . An equally valuable document, esspecially from the component developer point of view, would map Windows ...
|
| Does calling Timer.Dispose() prevent the timer from firing ? | 26 Oct 2004 19:00 GMT | 2 |
I would imagine the answer is yes and thats how i have it in my code. Example - i start a timer waiting for user input. If the user input occurs before the timeout, i call Timer.Dispose on that timer to get rid of it and prevent
|