| Thread | Last Post | Replies |
|
| Deserialization, SerializationBinder and Insufficient State | 10 Dec 2005 07:02 GMT | 1 |
I need some help dealing with deserializing objects using BinaryFormatter when the assembly version changes. Nothing about the structure of the class being deserialized has changed; just the version of the assembly that defines it. My understanding is that, by default, ...
|
| vs2005 - 'The event Click is read-only and cannot be changed' - What? | 09 Dec 2005 23:00 GMT | 8 |
What does this error mean? "The event click is read-only and cannot be changed" This is a design-time error. It is displayed instead of the form. Here is the full text
|
| GetConstructors method and Private constructors | 09 Dec 2005 22:13 GMT | 1 |
I am using reflection to read an assembly and I have a class that has only a private constructor. However when I use the following method. Type.GetConstructors(BindFlags.NonPublic); It does not pick up the private constructor. Instead it reads that
|
| Disconnected dataset -- can't delete row??? | 09 Dec 2005 22:00 GMT | 13 |
The following code snipped is intended to delete a row from a typed dataset. The name of the dataset instance is "dbMats", which contains a table called "CastingAlloys". Instead of deleting the row it is actually moving the row to be the first item in the dataset's ...
|
| disable javascript in System.Windows.Forms.WebBrowser | 09 Dec 2005 19:24 GMT | 1 |
Does anyone know how to disable javascript using a System.Windows.Forms.WebBrowser? Specifically, when I "Navigate" to a webpage, I don't want the browser control to run the java script contained in that webpage, which in my case
|
| using Serialport in visual basic | 09 Dec 2005 18:19 GMT | 3 |
Where can I find a complete example of reading from com port using the new 2.0 framwork? Thanks ;) Nico
|
| keyboard hook | 09 Dec 2005 17:39 GMT | 3 |
how it is possible to make keyboard hook in .net1.1 without using API Thanks
|
| hi | 09 Dec 2005 17:34 GMT | 2 |
what is the reason of placing "@" before assigning string to a variable for example tt.Text=@"test";
|
| javascript to validate .net radiobutton list | 09 Dec 2005 17:23 GMT | 3 |
I have a radiobutton list and I need to use javascript to test the values. If value is 'A' or 'B' or 'C' then alert the user with message and uncheck a checkbox. My problem is getting the values of the radiobutton
|
| WebException caused by Net.WebClient | 09 Dec 2005 17:07 GMT | 6 |
I got a problem with a nearly undocumented (maybe-)bug in the WebClient class. Anyways the problem is as follows: When I try to work with the simple WebClient.DownloadFile(URL) function everything works fine as long as I download static
|
| Memory leak with socket BeginReceive? | 09 Dec 2005 16:51 GMT | 3 |
We are getting a memory leak with code that's using async sockets. Private Bytes perf counter keeps increasing as well as Bytes In All Heaps. CLRProfiler shows a lot of old asyncresult objects (180 seconds old) in the Gen 2 heap.
|
| analyse <configSections> section in app.exe.config | 09 Dec 2005 16:42 GMT | 2 |
Hi, is there a class in .NET to read sections (maybe groups as well) defined in the <configsections> itself ? One way is to open the file with XMLReader, but there ought to be a more
|
| Variable formula creation in vb.net | 09 Dec 2005 16:41 GMT | 3 |
I've got a requirement to create formulas for calculations. The problem is that the formulas can be changed by the user. I plan on putting the formulas on SQL Server and each varable/operator as a record. Then I can just replace the variable with the number and calculate the ...
|
| How to: Work with System.Net.ChunkedReadStream? | 09 Dec 2005 15:28 GMT | 2 |
I have a WebResponse object and its GetResponseStream() returnes a System.Net.ChunkedReadStream. This stream is readeable (CanRead = true) but i cann't readByte() - exception occured: "The chunk length was not valid." but response is not
|
| NullReferenceException in Unknown Module | 09 Dec 2005 14:31 GMT | 2 |
I've written a VB.NET class library which encapsulates various Win32 hooks, such as WH_GETMESSAGE, WH_CALLWNDPROC, and WH_CALLWNDPROCRET. The hooks appear to be set properly, and I get a few callbacks from them, but not long afterwards I get a "System.NullReference Exception in ...
|