| Thread | Last Post | Replies |
|
| pdb files for assemblies in GAC? | 29 Jan 2008 08:38 GMT | 3 |
Hi... I didn't see any pdb files actually in the gac directory hierarchy. Is there anything wrong with putting the pdb files in the gac directory? Thanks
|
| Error while updating data through dataset | 28 Jan 2008 20:19 GMT | 2 |
I've a requirement where in I need to read the data from a csv file and load the data into the sql database. The file has around 1 lakh records. I'm reading 300 records at a time from the file, loading into a dataset. From the dataset, I'm reading the rows sequentially,and ...
|
| optional PropertyNameIsNull in Databindings PropertyName Changed pattern | 28 Jan 2008 15:20 GMT | 2 |
browsing code with the .Net reflector, I found out, that there is an virtually undocumented feature in the PropertyName Changed pattern used, when creating a custom control that supports databinding: A boolean PropertyNameIsNull property, that - if available - will check
|
| HttpListener and HTTP.sys questions | 28 Jan 2008 14:38 GMT | 3 |
Hi... Don't know if this is the best group for this, but didn't see another jump out at me as a better choice... I'm just getting my feet wet with System.Net.HttpListener (actually trying
|
| Char datatype does some hocus pocus | 28 Jan 2008 14:27 GMT | 6 |
Dim B As Byte = 150 Dim C As Char C = Convert.ToChar(B) B = Asc(C)
|
| XmlTextReader and Memory | 28 Jan 2008 11:20 GMT | 2 |
Hi. I've developed an application for Windows Mobile using 3.5 version of CompactFramework. My application generally uses (into the heap) approximately 7kB. Then I decided to introduce a XML configuration feature, but now it needs
|
| Unhandled exception in class library | 28 Jan 2008 03:06 GMT | 15 |
I am creating one class library in .net. I need to save the unhandled exception in a text file. So how to catch the unhandled exception from class library. Unhandled exception means, i am having try.. Catch block in my
|
| Silverlight in the Managed Forums | 26 Jan 2008 11:34 GMT | 1 |
Can someone tell me the correct MSDN managed forum to ask SilverLight questions? After much searching, I can't seem to find one that is appropriate. Thank you
|
| How to debug:looks like infinite loop somewhere in the guts of .Ne | 26 Jan 2008 03:27 GMT | 2 |
I have a .Net app running on one of my servers. Last night it went in a state where it was no longer doing anything useful. Some debugging indicated that one of the threads is spinning somewhere in the .Net framework code. I do not have private symbols for the framework so I ...
|
| Remoting and DataTypes | 26 Jan 2008 03:12 GMT | 2 |
I'm dealing with remoting for the first time (.net 2.0). I can succesfully call methods that return basic data types (string, bool, etc) but I can't pass more complicated data types (System.DirectoryServices.DirectoryEntry is specifically what I want to have returned). Am I ...
|
| Bug in Double.MinValue? | 25 Jan 2008 09:30 GMT | 2 |
This line exectues with an exception: double d = double.Parse(double.MinValue.ToString()); The error message is "Value was either too large or too small for a Double". Is this an error in the framwork?
|
| Clickonce firefox 2008 | 25 Jan 2008 07:30 GMT | 1 |
In vs05 clickonce only worked with IE. Does clickonce work in xbrowsers now?
|
| What is the actual runtime version of .NET 3.5 framework? | 24 Jan 2008 19:02 GMT | 8 |
I am using release version of VS 2008 in projects targeting .NET 3.5, however I just noticed that System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion() returns old "2.0.50727" - indicating that the code runs under .NET 2.0.
|
| Winsock error 10004 on UDP Socket ReceiveFrom | 24 Jan 2008 18:44 GMT | 2 |
(.NET Framework 2.0 on Windows 2003 SP1) I'm getting lots of 10004 WSAEINTR errors when I try to do some UDP communication. From a packet capture I learned that my application is responding with an ICMP Port Unreachable after the remote responds to my
|
| fastest searchable datastructure? | 24 Jan 2008 18:33 GMT | 25 |
I need some type of array/list/... In which I can store objects together with a unique key. The most important thing is performance: I will need to do the whole time searches in the list of given keys. Which datastructure will be best suited for this? A Hashtable? The list may ...
|